![]() 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-downloadable/Test/Unit/Pricing/Price/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Downloadable\Test\Unit\Pricing\Price; use Magento\Catalog\Model\Product; use Magento\Downloadable\Model\ResourceModel\Link as LinkResourceModel; use Magento\Downloadable\Pricing\Price\LinkPrice; use Magento\Framework\Pricing\Adjustment\Calculator; use Magento\Framework\Pricing\Amount\Base; use Magento\Framework\Pricing\PriceCurrencyInterface; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class LinkPriceTest extends TestCase { /** * @var LinkPrice */ protected $linkPrice; /** * @var Base|MockObject */ protected $amountMock; /** * @var Product|MockObject */ protected $saleableItemMock; /** * @var Calculator|MockObject */ protected $calculatorMock; /** * @var LinkResourceModel|MockObject */ protected $linkMock; /** * @var PriceCurrencyInterface|MockObject */ protected $priceCurrencyMock; protected function setUp(): void { $this->saleableItemMock = $this->createMock(Product::class); $this->amountMock = $this->createMock(Base::class); $this->calculatorMock = $this->createMock(Calculator::class); $this->linkMock = $this->getMockBuilder(\Magento\Downloadable\Model\Link::class)->addMethods(['getProduct']) ->onlyMethods(['getPrice', '__wakeup']) ->disableOriginalConstructor() ->getMock(); $this->priceCurrencyMock = $this->getMockForAbstractClass(PriceCurrencyInterface::class); $this->linkPrice = new LinkPrice( $this->saleableItemMock, 1, $this->calculatorMock, $this->priceCurrencyMock ); } public function testGetLinkAmount() { $amount = 100; $convertedAmount = 50; $this->linkMock->expects($this->once()) ->method('getPrice') ->willReturn($amount); $this->linkMock->expects($this->once()) ->method('getProduct') ->willReturn($this->saleableItemMock); $this->priceCurrencyMock->expects($this->once()) ->method('convertAndRound') ->with($amount) ->willReturn($convertedAmount); $this->calculatorMock->expects($this->once()) ->method('getAmount') ->with($convertedAmount, $this->saleableItemMock) ->willReturn($convertedAmount); $result = $this->linkPrice->getLinkAmount($this->linkMock); $this->assertEquals($convertedAmount, $result); } }