| Current Path : /home/rtorresani/www/vendor/magento/module-downloadable/Test/Unit/Pricing/Price/ |
| Current File : //home/rtorresani/www/vendor/magento/module-downloadable/Test/Unit/Pricing/Price/LinkPriceTest.php |
<?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);
}
}