135 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/**
 | 
						|
 * Copyright © Magento, Inc. All rights reserved.
 | 
						|
 * See COPYING.txt for license details.
 | 
						|
 */
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
namespace Magento\TestModuleOverrideConfig\MagentoConfigFixture;
 | 
						|
 | 
						|
use Magento\Framework\App\Config\ScopeConfigInterface;
 | 
						|
use Magento\Store\Model\ScopeInterface;
 | 
						|
use Magento\TestModuleOverrideConfig\AbstractOverridesTest;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class check that fixtures can be replaced using override config
 | 
						|
 *
 | 
						|
 * @magentoAppIsolation enabled
 | 
						|
 */
 | 
						|
class ReplaceFixtureTest extends AbstractOverridesTest
 | 
						|
{
 | 
						|
    /** @var ScopeConfigInterface */
 | 
						|
    private $config;
 | 
						|
 | 
						|
    /**
 | 
						|
     * @inheritdoc
 | 
						|
     */
 | 
						|
    protected function setUp(): void
 | 
						|
    {
 | 
						|
        parent::setUp();
 | 
						|
 | 
						|
        $this->config = $this->objectManager->get(ScopeConfigInterface::class);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Checks that fixture can be replaced in global node
 | 
						|
     *
 | 
						|
     * @magentoConfigFixture current_store test_section/test_group/field_5 new_value
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testGloballyReplaceFixture(): void
 | 
						|
    {
 | 
						|
        $value = $this->config->getValue('test_section/test_group/field_5', ScopeInterface::SCOPE_STORES);
 | 
						|
        $this->assertEquals('5th field globally replaced value', $value);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Checks that fixture can be replaced in test class node
 | 
						|
     *
 | 
						|
     * @magentoConfigFixture current_store test_section/test_group/field_1 new_value
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testReplaceFixtureForClass(): void
 | 
						|
    {
 | 
						|
        $value = $this->config->getValue('test_section/test_group/field_1', ScopeInterface::SCOPE_STORES);
 | 
						|
        $this->assertEquals('Overridden fixture for class', $value);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Checks that fixture can be replaced in method and data set nodes
 | 
						|
     *
 | 
						|
     * @magentoConfigFixture current_store test_section/test_group/field_1 new_value
 | 
						|
     *
 | 
						|
     * @dataProvider testDataProvider
 | 
						|
     *
 | 
						|
     * @param string $expectedConfigValue
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testReplaceFixtureForMethod(string $expectedConfigValue): void
 | 
						|
    {
 | 
						|
        $value = $this->config->getValue('test_section/test_group/field_1', ScopeInterface::SCOPE_STORES);
 | 
						|
        $this->assertEquals($expectedConfigValue, $value);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function testDataProvider(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'first_data_set' => [
 | 
						|
                'expected_config_value' => 'Overridden fixture for method',
 | 
						|
            ],
 | 
						|
            'second_data_set' => [
 | 
						|
                'expected_config_value' => 'Overridden fixture for data set',
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Checks that website scope fixture can be replaced
 | 
						|
     *
 | 
						|
     * @magentoConfigFixture current_website test_section/test_group/field_1 new_value
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testReplaceWebsiteScopedFixture(): void
 | 
						|
    {
 | 
						|
        $value = $this->config->getValue('test_section/test_group/field_1', ScopeInterface::SCOPE_WEBSITES);
 | 
						|
        $this->assertEquals('Overridden value for website scope', $value);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Checks that replace config from last loaded file will be applied
 | 
						|
     *
 | 
						|
     * @magentoConfigFixture current_store test_section/test_group/field_1 new_value
 | 
						|
     *
 | 
						|
     * @dataProvider configValuesProvider
 | 
						|
     *
 | 
						|
     * @param string $expectedConfigValue
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function testReplaceFixtureViaThirdModule(string $expectedConfigValue): void
 | 
						|
    {
 | 
						|
        $value = $this->config->getValue('test_section/test_group/field_1', ScopeInterface::SCOPE_STORES);
 | 
						|
        $this->assertEquals($expectedConfigValue, $value);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * @return array
 | 
						|
     */
 | 
						|
    public function configValuesProvider(): array
 | 
						|
    {
 | 
						|
        return [
 | 
						|
            'first_data_set' => [
 | 
						|
                'expected_config_value' => 'Overridden fixture for method from third module',
 | 
						|
            ],
 | 
						|
            'second_data_set' => [
 | 
						|
                'expected_config_value' => 'Overridden fixture for data set from third module',
 | 
						|
            ],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
}
 |