![]() 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-offline-shipping/Test/Unit/Model/Carrier/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\OfflineShipping\Test\Unit\Model\Carrier; use Magento\Catalog\Model\Product; use Magento\Framework\App\Config\ScopeConfigInterface; use Magento\Framework\TestFramework\Unit\Helper\ObjectManager; use Magento\OfflineShipping\Model\Carrier\Flatrate; use Magento\OfflineShipping\Model\Carrier\Flatrate\ItemPriceCalculator; use Magento\Quote\Model\Quote\Address\RateRequest; use Magento\Quote\Model\Quote\Address\RateResult\ErrorFactory; use Magento\Quote\Model\Quote\Address\RateResult\Method; use Magento\Quote\Model\Quote\Address\RateResult\MethodFactory; use Magento\Sales\Model\Order\Item; use Magento\Shipping\Model\Carrier\AbstractCarrier; use Magento\Shipping\Model\Rate\Result; use Magento\Shipping\Model\Rate\ResultFactory; use Magento\Store\Model\ScopeInterface; use PHPUnit\Framework\Constraint\Callback; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; use Psr\Log\LoggerInterface; /** * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class FlatrateTest extends TestCase { /** * @var Flatrate */ private $model; /** * @var ScopeConfigInterface|MockObject */ private $scopeConfigMock; /** * @var ErrorFactory|MockObject */ private $errorFactoryMock; /** * @var LoggerInterface|MockObject */ private $loggerMock; /** * @var ResultFactory|MockObject */ private $resultFactoryMock; /** * @var MethodFactory|MockObject */ private $methodFactoryMock; /** * @var ItemPriceCalculator|MockObject */ private $priceCalculatorMock; /** * @var ObjectManager */ private $helper; protected function setUp(): void { $this->scopeConfigMock = $this->getMockBuilder(ScopeConfigInterface::class) ->disableOriginalConstructor() ->setMethods(['create', 'isSetFlag', 'getValue']) ->getMockForAbstractClass(); $this->errorFactoryMock = $this ->getMockBuilder(ErrorFactory::class) ->disableOriginalConstructor() ->getMock(); $this->loggerMock = $this->getMockBuilder(LoggerInterface::class) ->disableOriginalConstructor() ->getMockForAbstractClass(); $this->resultFactoryMock = $this->getMockBuilder(ResultFactory::class) ->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $this->methodFactoryMock = $this ->getMockBuilder(MethodFactory::class) ->disableOriginalConstructor() ->setMethods(['create']) ->getMock(); $this->priceCalculatorMock = $this ->getMockBuilder(ItemPriceCalculator::class) ->disableOriginalConstructor() ->setMethods(['getShippingPricePerOrder']) ->getMock(); $this->helper = new ObjectManager($this); $this->model = $this->helper->getObject( Flatrate::class, [ 'scopeConfig' => $this->scopeConfigMock, 'rateErrorFactory' => $this->errorFactoryMock, 'logger' => $this->loggerMock, 'rateResultFactory' => $this->resultFactoryMock, 'rateMethodFactory' => $this->methodFactoryMock, 'itemPriceCalculator' => $this->priceCalculatorMock ] ); } /** * @param bool $freeshipping * @dataProvider collectRatesWithGlobalFreeShippingDataProvider * @return void */ public function testCollectRatesWithGlobalFreeShipping($freeshipping) { $this->markTestSkipped('Test needs refactoring.'); $expectedPrice = 5; $request = $this->getMockBuilder(RateRequest::class) ->disableOriginalConstructor() ->setMethods(['getAllItems', 'getPackageQty', 'getFreeShipping']) ->getMock(); $item = $this->getMockBuilder(Item::class) ->disableOriginalConstructor() ->setMethods( [ 'getProduct', 'getParentItem', 'getHasChildren', 'isShipSeparately', 'getChildren', 'getQty', 'getFreeShipping' ] ) ->getMock(); $product = $this->getMockBuilder(Product::class) ->disableOriginalConstructor() ->setMethods(['isVirtual']) ->getMock(); $this->scopeConfigMock->expects($this->any())->method('isSetFlag')->willReturn(true); $this->scopeConfigMock->expects($this->any())->method('getValue')->willReturnMap([ ['carriers/flatrate/active', ScopeInterface::SCOPE_STORE, null, true], ['carriers/flatrate/price', ScopeInterface::SCOPE_STORE, null, 5], ['carriers/flatrate/type', ScopeInterface::SCOPE_STORE, null, 'O'], ['carriers/flatrate/handling_fee', ScopeInterface::SCOPE_STORE, null, 0], [ 'carriers/flatrate/handling_type', ScopeInterface::SCOPE_STORE, null, AbstractCarrier::HANDLING_TYPE_FIXED ], [ 'carriers/flatrate/handling_action', ScopeInterface::SCOPE_STORE, null, AbstractCarrier::HANDLING_ACTION_PERORDER ], ]); $this->priceCalculatorMock ->expects($this->once()) ->method('getShippingPricePerOrder') ->willReturn($expectedPrice); $method = $this->getMockBuilder(Method::class) ->disableOriginalConstructor() ->setMethods(['setCarrier', 'setCarrierTitle', 'setMethod', 'setMethodTitle', 'setPrice', 'setCost']) ->getMock(); $this->methodFactoryMock->expects($this->once())->method('create')->willReturn($method); $result = $this->getMockBuilder(Result::class) ->disableOriginalConstructor() ->setMethods(['append']) ->getMock(); $this->resultFactoryMock->expects($this->once())->method('create')->willReturn($result); $product->expects($this->any())->method('isVirtual')->willReturn(false); $item->expects($this->any())->method('getProduct')->willReturn($product); $item->expects($this->any())->method('getFreeShipping')->willReturn(1); $item->expects($this->any())->method('getQty')->willReturn(1); $request->expects($this->any())->method('getAllItems')->willReturn([$item]); $request->expects($this->any())->method('getPackageQty')->willReturn(1); $request->expects($this->never())->method('getFreeShipping')->willReturn($freeshipping); $returnPrice = null; $method->expects($this->once())->method('setPrice')->with($this->captureArg($returnPrice)); $returnCost = null; $method->expects($this->once())->method('setCost')->with($this->captureArg($returnCost)); $returnMethod = null; $result->expects($this->once())->method('append')->with($this->captureArg($returnMethod)); $returnResult = $this->model->collectRates($request); $this->assertEquals($expectedPrice, $returnPrice); $this->assertEquals($expectedPrice, $returnCost); $this->assertEquals($method, $returnMethod); $this->assertEquals($result, $returnResult); } /** * Captures the argument and saves it in the given variable * * @param $captureVar * @return Callback */ private function captureArg(&$captureVar) { return $this->callback(function ($argToMock) use (&$captureVar) { $captureVar = $argToMock; return true; }); } /** * @return array */ public function collectRatesWithGlobalFreeShippingDataProvider() { return [ ['freeshipping' => true], ['freeshipping' => false] ]; } }