![]() 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/old/vendor/magento/module-tax/Test/Unit/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Tax\Test\Unit\Model; use Magento\Framework\Api\FilterBuilder; use Magento\Framework\Api\SearchCriteria; use Magento\Framework\Api\SearchCriteriaBuilder; use Magento\Framework\Api\SortOrderBuilder; use Magento\Framework\Data\Collection\EntityFactory; use Magento\Tax\Api\Data\TaxRateSearchResultsInterface; use Magento\Tax\Api\TaxRuleRepositoryInterface; use Magento\Tax\Model\Calculation\Rule; use Magento\Tax\Model\TaxRuleCollection; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class TaxRuleCollectionTest extends TestCase { /** * @var TaxRuleCollection */ protected $model; /** * @var TaxRuleRepositoryInterface|MockObject */ protected $ruleServiceMock; /** * @var EntityFactory|MockObject */ protected $entityFactoryMock; /** * @var FilterBuilder|MockObject */ protected $filterBuilderMock; /** * @var SearchCriteriaBuilder|MockObject */ protected $searchCriteriaBuilderMock; /** * @var SortOrderBuilder|MockObject */ protected $sortOrderBuilderMock; /** * @var SearchCriteria|MockObject */ protected $searchCriteriaMock; /** * @var TaxRateSearchResultsInterface|MockObject */ protected $searchResultsMock; /** * @var Rule|MockObject */ protected $taxRuleMock; protected function setUp(): void { $this->entityFactoryMock = $this->createMock(EntityFactory::class); $this->filterBuilderMock = $this->createMock(FilterBuilder::class); $this->searchCriteriaBuilderMock = $this->createMock(SearchCriteriaBuilder::class); $this->sortOrderBuilderMock = $this->createMock(SortOrderBuilder::class); $this->ruleServiceMock = $this->getMockForAbstractClass(TaxRuleRepositoryInterface::class); $this->searchCriteriaMock = $this->createMock(SearchCriteria::class); $this->searchResultsMock = $this->getMockForAbstractClass(TaxRateSearchResultsInterface::class); $this->taxRuleMock = $this->getMockBuilder(Rule::class) ->disableOriginalConstructor() ->setMethods([ 'getId', 'getCode', 'getPriority', 'getPosition', 'getCalculateSubtotal', 'getCustomerTaxClassIds', 'getProductTaxClassIds', 'getTaxRateIds', 'getTaxRatesCodes' ]) ->getMock(); $this->searchCriteriaBuilderMock->expects($this->any()) ->method('create') ->willReturn($this->searchCriteriaMock); $this->model = new TaxRuleCollection( $this->entityFactoryMock, $this->filterBuilderMock, $this->searchCriteriaBuilderMock, $this->sortOrderBuilderMock, $this->ruleServiceMock ); } public function testLoadData() { $this->ruleServiceMock->expects($this->once()) ->method('getList') ->with($this->searchCriteriaMock) ->willReturn($this->searchResultsMock); $this->searchResultsMock->expects($this->once())->method('getTotalCount')->willReturn(568); $this->searchResultsMock->expects($this->once())->method('getItems')->willReturn([$this->taxRuleMock]); $this->taxRuleMock->expects($this->once())->method('getId')->willReturn(33); $this->taxRuleMock->expects($this->once())->method('getCode')->willReturn(44); $this->taxRuleMock->expects($this->once())->method('getPriority')->willReturn('some priority'); $this->taxRuleMock->expects($this->once())->method('getPosition')->willReturn('position'); $this->taxRuleMock->expects($this->once())->method('getCalculateSubtotal')->willReturn(null); $this->taxRuleMock->expects($this->once())->method('getCustomerTaxClassIds')->willReturn('Post Code'); $this->taxRuleMock->expects($this->once())->method('getProductTaxClassIds')->willReturn([12]); $this->taxRuleMock->expects($this->once())->method('getTaxRateIds')->willReturn([66]); $this->taxRuleMock->expects($this->once())->method('getTaxRatesCodes')->willReturn(['some_code']); $this->model->loadData(); } }