123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Rule\Test\Unit\Model\Condition;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager as ObjectManagerHelper;
- class CombineTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Rule\Model\Condition\Combine | \PHPUnit_Framework_MockObject_MockObject
- */
- private $combine;
- /**
- * @var \Magento\Rule\Model\ConditionFactory | \PHPUnit_Framework_MockObject_MockObject
- */
- private $conditionFactoryMock;
- /**
- * @var \Psr\Log\LoggerInterface | \PHPUnit_Framework_MockObject_MockObject
- */
- private $loggerMock;
- /**
- * @var \Magento\SalesRule\Model\Rule\Condition\Product | \PHPUnit_Framework_MockObject_MockObject
- */
- private $conditionObjectMock;
- /**
- * Sets up the Mocks.
- * This method is called before a test is executed.
- */
- protected function setUp()
- {
- $this->conditionFactoryMock = $this->getMockBuilder(\Magento\Rule\Model\ConditionFactory::class)
- ->disableOriginalConstructor()
- ->setMethods([])
- ->getMock();
- $this->loggerMock = $this->getMockBuilder(\Psr\Log\LoggerInterface::class)
- ->disableOriginalConstructor()
- ->setMethods([])
- ->getMock();
- $this->conditionObjectMock = $this->getMockBuilder(\Magento\SalesRule\Model\Rule\Condition\Product::class)
- ->disableOriginalConstructor()
- ->setMethods([])
- ->getMock();
- $this->combine = (new ObjectManagerHelper($this))->getObject(
- \Magento\Rule\Model\Condition\Combine::class,
- [
- "conditionFactory" => $this->conditionFactoryMock,
- "logger" => $this->loggerMock,
- ]
- );
- }
- /**
- *
- * @covers \Magento\Rule\Model\Condition\AbstractCondition::getValueName
- *
- * @dataProvider optionValuesData
- *
- * @param string|array $value
- * @param string $expectingData
- */
- public function testGetValueName($value, $expectingData)
- {
- $this->combine
- ->setValueOption(['option_key' => 'option_value'])
- ->setValue($value);
- $this->assertEquals($expectingData, $this->combine->getValueName());
- }
- /**
- * @return array
- */
- public function optionValuesData()
- {
- return [
- ['option_key', 'option_value'],
- ['option_value', 'option_value'],
- [['option_key'], 'option_value'],
- ['', '...'],
- ];
- }
- public function testLoadArray()
- {
- $array['conditions'] = [
- [
- 'type' => 'test',
- 'attribute' => '',
- 'operator' => '',
- 'value' => '',
- ],
- ];
- $this->conditionObjectMock->expects($this->once())
- ->method('loadArray')
- ->with($array['conditions'][0], 'conditions');
- $this->conditionFactoryMock->expects($this->once())
- ->method('create')
- ->with($array['conditions'][0]['type'])
- ->willReturn($this->conditionObjectMock);
- $this->loggerMock->expects($this->never())
- ->method('critical');
- $result = $this->combine->loadArray($array);
- $this->assertInstanceOf(\Magento\Rule\Model\Condition\Combine::class, $result);
- }
- public function testLoadArrayLoggerCatchException()
- {
- $array['conditions'] = [
- [
- 'type' => '',
- 'attribute' => '',
- 'operator' => '',
- 'value' => '',
- ],
- ];
- $this->conditionObjectMock->expects($this->never())
- ->method('loadArray');
- $this->conditionFactoryMock->expects($this->once())
- ->method('create')
- ->with($array['conditions'][0]['type'])
- ->willThrowException(new \Exception('everything is fine, it is test'));
- $this->loggerMock->expects($this->once())
- ->method('critical')
- ->with();
- $result = $this->combine->loadArray($array);
- $this->assertInstanceOf(\Magento\Rule\Model\Condition\Combine::class, $result);
- }
- }
|