1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?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);
}
}