![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartforge.co/setup/src/Magento/Setup/Test/Unit/Fixtures/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Setup\Test\Unit\Fixtures; use Magento\Framework\App\Config\Storage\Writer as ConfigWriter; use Magento\Setup\Fixtures\FixtureModel; use Magento\Setup\Fixtures\TaxRulesFixture; use Magento\Tax\Api\Data\TaxRateInterfaceFactory; use Magento\Tax\Api\Data\TaxRuleInterfaceFactory; use Magento\Tax\Api\TaxRateRepositoryInterface; use Magento\Tax\Api\TaxRuleRepositoryInterface; use Magento\Tax\Model\ResourceModel\Calculation\Rate\CollectionFactory; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; /** * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class TaxRulesFixtureTest extends TestCase { /** * @var MockObject|FixtureModel */ private $fixtureModelMock; /** * @var TaxRulesFixture */ private $model; /** * @var ConfigWriter */ private $configWriterMock; /** * @var TaxRateInterfaceFactory */ private $taxRateRepositoryMock; /** * @var */ private $taxRateFactoryMock; /** * @var CollectionFactory */ private $taxRateCollectionFactoryMock; /** * @var TaxRuleInterfaceFactory */ private $taxRuleFactoryMock; /** * @var TaxRuleRepositoryInterface */ private $taxRuleRepositoryMock; public function testExecute() { $this->fixtureModelMock = $this->getMockBuilder(FixtureModel::class) ->disableOriginalConstructor() ->getMock(); $this->taxRateFactoryMock = $this->getMockBuilder(TaxRateInterfaceFactory::class) ->disableOriginalConstructor() ->getMock(); $this->taxRateRepositoryMock = $this->getMockBuilder(TaxRateRepositoryInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->configWriterMock = $this->getMockBuilder(ConfigWriter::class) ->disableOriginalConstructor() ->getMock(); $this->taxRuleFactoryMock = $this->getMockBuilder(TaxRuleInterfaceFactory::class) ->disableOriginalConstructor() ->getMock(); $this->taxRuleRepositoryMock = $this->getMockBuilder(TaxRuleRepositoryInterface::class) ->disableOriginalConstructor() ->setMethods(['save', 'get', 'delete', 'deleteById', 'getList']) ->getMockForAbstractClass(); $this->fixtureModelMock ->expects($this->exactly(2)) ->method('getValue') ->willReturnMap([ ['tax_mode', 'VAT'], ['tax_rules', 2] ]); $this->taxRateCollectionFactoryMock = $this->getMockBuilder(CollectionFactory::class) ->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $taxRateCollectionMock = $this->getMockBuilder(Collection::class) ->disableOriginalConstructor() ->setMethods(['getAllIds']) ->getMock(); $this->taxRateCollectionFactoryMock->expects($this->once()) ->method('create') ->willReturn($taxRateCollectionMock); $taxRateCollectionMock->expects($this->once()) ->method('getAllIds') ->willReturn([1]); $this->model = new TaxRulesFixture( $this->fixtureModelMock, $this->taxRuleRepositoryMock, $this->taxRuleFactoryMock, $this->taxRateCollectionFactoryMock, $this->taxRateFactoryMock, $this->taxRateRepositoryMock, $this->configWriterMock ); $this->model->execute(); } }