Viewing File: /home/maglabs/it/app/code/Magento/Wishlist/Test/Unit/Pricing/ConfiguredPrice/DownloadableTest.php
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\Wishlist\Test\Unit\Pricing\ConfiguredPrice;
use Magento\Catalog\Pricing\Price\BasePrice;
use Magento\Downloadable\Model\Link;
use Magento\Downloadable\Model\Product\Type;
use Magento\Framework\Pricing\Adjustment\CalculatorInterface;
use Magento\Framework\Pricing\Price\PriceInterface;
use Magento\Framework\Pricing\PriceCurrencyInterface;
use Magento\Framework\Pricing\PriceInfoInterface;
use Magento\Framework\Pricing\SaleableInterface;
use Magento\Wishlist\Model\Item\Option;
use Magento\Wishlist\Pricing\ConfiguredPrice\Downloadable;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
class DownloadableTest extends TestCase
{
/**
* @var SaleableInterface|MockObject
*/
private $saleableItem;
/**
* @var CalculatorInterface|MockObject
*/
private $calculator;
/**
* @var PriceCurrencyInterface|MockObject
*/
private $priceCurrency;
/**
* @var Downloadable
*/
private $model;
/**
* @var PriceInfoInterface|MockObject
*/
private $priceInfoMock;
protected function setUp(): void
{
$this->priceInfoMock = $this->getMockBuilder(PriceInfoInterface::class)
->getMockForAbstractClass();
$this->saleableItem = $this->getMockBuilder(SaleableInterface::class)
->setMethods([
'getPriceInfo',
'getLinksPurchasedSeparately',
'getCustomOption',
'getTypeInstance',
])
->getMockForAbstractClass();
$this->saleableItem->expects($this->once())
->method('getPriceInfo')
->willReturn($this->priceInfoMock);
$this->calculator = $this->getMockBuilder(CalculatorInterface::class)
->getMockForAbstractClass();
$this->priceCurrency = $this->getMockBuilder(PriceCurrencyInterface::class)
->getMockForAbstractClass();
$this->model = new Downloadable(
$this->saleableItem,
null,
$this->calculator,
$this->priceCurrency
);
}
public function testGetValue()
{
$priceValue = 10;
$wishlistItemOptionMock = $this->getMockBuilder(Option::class)
->disableOriginalConstructor()
->getMock();
$wishlistItemOptionMock->expects($this->once())
->method('getValue')
->willReturn('1,2');
$linkMock = $this->getMockBuilder(Link::class)
->disableOriginalConstructor()
->getMock();
$linkMock->expects($this->once())
->method('getPrice')
->willReturn(10);
$productTypeMock = $this->getMockBuilder(Type::class)
->disableOriginalConstructor()
->getMock();
$productTypeMock->expects($this->once())
->method('getLinks')
->with($this->saleableItem)
->willReturn([1 => $linkMock]);
$priceMock = $this->getMockBuilder(PriceInterface::class)
->getMockForAbstractClass();
$priceMock->expects($this->once())
->method('getValue')
->willReturn($priceValue);
$this->priceInfoMock->expects($this->once())
->method('getPrice')
->with(BasePrice::PRICE_CODE)
->willReturn($priceMock);
$this->saleableItem->expects($this->once())
->method('getLinksPurchasedSeparately')
->willReturn(true);
$this->saleableItem->expects($this->once())
->method('getCustomOption')
->with('downloadable_link_ids')
->willReturn($wishlistItemOptionMock);
$this->saleableItem->expects($this->once())
->method('getTypeInstance')
->willReturn($productTypeMock);
$this->assertEquals(20, $this->model->getValue());
}
public function testGetValueNoLinksPurchasedSeparately()
{
$priceValue = 10;
$priceMock = $this->getMockBuilder(PriceInterface::class)
->getMockForAbstractClass();
$priceMock->expects($this->once())
->method('getValue')
->willReturn($priceValue);
$this->priceInfoMock->expects($this->once())
->method('getPrice')
->with(BasePrice::PRICE_CODE)
->willReturn($priceMock);
$this->saleableItem->expects($this->once())
->method('getLinksPurchasedSeparately')
->willReturn(false);
$this->assertEquals($priceValue, $this->model->getValue());
}
public function testGetValueNoOptions()
{
$priceValue = 10;
$priceMock = $this->getMockBuilder(PriceInterface::class)
->getMockForAbstractClass();
$priceMock->expects($this->once())
->method('getValue')
->willReturn($priceValue);
$this->priceInfoMock->expects($this->once())
->method('getPrice')
->with(BasePrice::PRICE_CODE)
->willReturn($priceMock);
$wishlistItemOptionMock = $this->getMockBuilder(Option::class)
->disableOriginalConstructor()
->getMock();
$wishlistItemOptionMock->expects($this->once())
->method('getValue')
->willReturn(null);
$productTypeMock = $this->getMockBuilder(Type::class)
->disableOriginalConstructor()
->getMock();
$productTypeMock->expects($this->once())
->method('getLinks')
->with($this->saleableItem)
->willReturn([]);
$this->saleableItem->expects($this->once())
->method('getLinksPurchasedSeparately')
->willReturn(true);
$this->saleableItem->expects($this->once())
->method('getCustomOption')
->with('downloadable_link_ids')
->willReturn($wishlistItemOptionMock);
$this->saleableItem->expects($this->once())
->method('getTypeInstance')
->willReturn($productTypeMock);
$this->assertEquals($priceValue, $this->model->getValue());
}
public function testGetValueWithNoCustomOption()
{
$priceMock = $this->getMockBuilder(PriceInterface::class)
->getMockForAbstractClass();
$priceMock->expects($this->once())
->method('getValue')
->willReturn(0);
$this->priceInfoMock->expects($this->once())
->method('getPrice')
->with(BasePrice::PRICE_CODE)
->willReturn($priceMock);
$this->saleableItem->expects($this->once())
->method('getLinksPurchasedSeparately')
->willReturn(true);
$this->saleableItem->expects($this->once())
->method('getCustomOption')
->with('downloadable_link_ids')
->willReturn(null);
$this->assertEquals(0, $this->model->getValue());
}
}
Back to Directory
File Manager