Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ protected function _getCurrencyList()
/**
* Retrieve filter value
*
* @param null $index
* @param string|null $index
* @return array|null
*/
public function getValue($index = null)
Expand Down Expand Up @@ -194,11 +194,11 @@ public function getCondition()
$rate = $this->_getRate($displayCurrency, $this->_getColumnCurrencyCode());

if (isset($value['from'])) {
$value['from'] *= $rate;
$value['from'] = (float) $value['from'] * $rate;
}

if (isset($value['to'])) {
$value['to'] *= $rate;
$value['to'] = (float) $value['to'] * $rate;
}

$this->prepareRates($displayCurrency);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);

namespace Magento\Backend\Test\Unit\Block\Widget\Grid\Column\Filter;

use Magento\Backend\Block\Context;
use Magento\Backend\Block\Widget\Grid\Column;
use Magento\Backend\Block\Widget\Grid\Column\Filter\Price;
use Magento\Framework\App\RequestInterface;
use Magento\Framework\DB\Helper;
use Magento\Directory\Model\Currency;
use Magento\Directory\Model\Currency\DefaultLocator;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;

class PriceTest extends TestCase
{
/** @var RequestInterface|MockObject */
private $requestMock;

/** @var Context|MockObject */
private $context;

/** @var Helper|MockObject */
private $helper;

/** @var Currency|MockObject */
private $currency;

/** @var DefaultLocator|MockObject */
private $currencyLocator;

/** @var Column|MockObject */
private $columnMock;

/** @var Price */
private $blockPrice;

protected function setUp(): void
{
$this->requestMock = $this->getMockForAbstractClass(RequestInterface::class);

$this->context = $this->createMock(Context::class);
$this->context->expects($this->any())->method('getRequest')->willReturn($this->requestMock);

$this->helper = $this->createMock(Helper::class);

$this->currency = $this->getMockBuilder(Currency::class)
->disableOriginalConstructor()
->setMethods(['getAnyRate'])
->getMock();

$this->currencyLocator = $this->createMock(DefaultLocator::class);

$this->columnMock = $this->getMockBuilder(Column::class)
->disableOriginalConstructor()
->setMethods(['getCurrencyCode'])
->getMock();

$helper = new ObjectManager($this);

$this->blockPrice = $helper->getObject(Price::class, [
'context' => $this->context,
'resourceHelper' => $this->helper,
'currencyModel' => $this->currency,
'currencyLocator' => $this->currencyLocator
]);
$this->blockPrice->setColumn($this->columnMock);
}

public function testGetCondition()
{
$this->currencyLocator->expects(
$this->any()
)->method(
'getDefaultCurrency'
)->with(
$this->requestMock
)->willReturn(
'defaultCurrency'
);

$this->currency->expects($this->at(0))
->method('getAnyRate')
->with('defaultCurrency')
->willReturn(1.0);

$testValue = [
'value' => [
'from' => '1234a',
]
];

$this->blockPrice->addData($testValue);
$this->assertEquals(['from' => 1234], $this->blockPrice->getCondition());
}
}