78 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Magento\Sales\Model\Order;
 | 
						|
 | 
						|
use Magento\TestFramework\Helper\Bootstrap;
 | 
						|
use Magento\TestFramework\ObjectManager;
 | 
						|
 | 
						|
/**
 | 
						|
 * Test class for \Magento\Sales\Model\Order\Config
 | 
						|
 */
 | 
						|
class ConfigTest extends \PHPUnit\Framework\TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var ObjectManager
 | 
						|
     */
 | 
						|
    private $objectManager;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @var Config
 | 
						|
     */
 | 
						|
    private $orderConfig;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        $this->objectManager = Bootstrap::getObjectManager();
 | 
						|
        $this->orderConfig = $this->objectManager->create(Config::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Correct display of the list of "Order States" after assigning
 | 
						|
     * the state "complete" to a custom order status.
 | 
						|
     *
 | 
						|
     * @magentoDataFixture Magento/Sales/_files/order_status_assign_state_complete.php
 | 
						|
     */
 | 
						|
    public function testCorrectCompleteStatusInStatesList()
 | 
						|
    {
 | 
						|
        $allStates = $this->orderConfig->getStates();
 | 
						|
        /** @var Status $completeStatus */
 | 
						|
        $completeStatus = $this->objectManager->create(Status::class)
 | 
						|
            ->load(\Magento\Sales\Model\Order::STATE_COMPLETE);
 | 
						|
        $completeState = $allStates[$completeStatus->getStatus()];
 | 
						|
 | 
						|
        $this->assertEquals($completeStatus->getLabel(), $completeState->getText());
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Test Mask Status For Area
 | 
						|
     *
 | 
						|
     * @param string $code
 | 
						|
     * @param string $expected
 | 
						|
     * @dataProvider dataProviderForTestMaskStatusForArea
 | 
						|
     */
 | 
						|
    public function testMaskStatusForArea(string $code, string $expected)
 | 
						|
    {
 | 
						|
        $result = $this->orderConfig->getStatusFrontendLabel($code);
 | 
						|
        $this->assertEquals($expected, $result);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function dataProviderForTestMaskStatusForArea()
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            ['fraud', 'Suspected Fraud'],
 | 
						|
            ['processing', 'Processing'],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |