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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Backend\Test\Unit\Model\Menu;
/**
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
*/
class ItemTest extends \PHPUnit\Framework\TestCase
{
/**
* @var \Magento\Backend\Model\Menu\Item
*/
protected $_model;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_aclMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_menuFactoryMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_urlModelMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_scopeConfigMock;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_moduleManager;
/**
* @var \PHPUnit_Framework_MockObject_MockObject
*/
protected $_moduleListMock;
/** @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager */
private $objectManager;
/**
* @var array
*/
protected $_params = [
'id' => 'item',
'title' => 'Item Title',
'action' => '/system/config',
'resource' => 'Magento_Config::config',
'dependsOnModule' => 'Magento_Backend',
'dependsOnConfig' => 'system/config/isEnabled',
'toolTip' => 'Item tooltip',
];
protected function setUp()
{
$this->_aclMock = $this->createMock(\Magento\Framework\AuthorizationInterface::class);
$this->_scopeConfigMock = $this->createMock(\Magento\Framework\App\Config\ScopeConfigInterface::class);
$this->_menuFactoryMock = $this->createPartialMock(\Magento\Backend\Model\MenuFactory::class, ['create']);
$this->_urlModelMock = $this->createMock(\Magento\Backend\Model\Url::class);
$this->_moduleManager = $this->createMock(\Magento\Framework\Module\Manager::class);
$validatorMock = $this->createMock(\Magento\Backend\Model\Menu\Item\Validator::class);
$validatorMock->expects($this->any())->method('validate');
$this->_moduleListMock = $this->createMock(\Magento\Framework\Module\ModuleListInterface::class);
$this->objectManager = new \Magento\Framework\TestFramework\Unit\Helper\ObjectManager($this);
$this->_model = $this->objectManager->getObject(
\Magento\Backend\Model\Menu\Item::class,
[
'validator' => $validatorMock,
'authorization' => $this->_aclMock,
'scopeConfig' => $this->_scopeConfigMock,
'menuFactory' => $this->_menuFactoryMock,
'urlModel' => $this->_urlModelMock,
'moduleList' => $this->_moduleListMock,
'moduleManager' => $this->_moduleManager,
'data' => $this->_params
]
);
}
public function testGetUrlWithEmptyActionReturnsHashSign()
{
$this->_params['action'] = '';
$item = $this->objectManager->getObject(
\Magento\Backend\Model\Menu\Item::class,
['menuFactory' => $this->_menuFactoryMock, 'data' => $this->_params]
);
$this->assertEquals('#', $item->getUrl());
}
public function testGetUrlWithValidActionReturnsUrl()
{
$this->_urlModelMock->expects(
$this->once()
)->method(
'getUrl'
)->with(
$this->equalTo('/system/config')
)->will(
$this->returnValue('Url')
);
$this->assertEquals('Url', $this->_model->getUrl());
}
public function testHasClickCallbackReturnsFalseIfItemHasAction()
{
$this->assertFalse($this->_model->hasClickCallback());
}
public function testHasClickCallbackReturnsTrueIfItemHasNoAction()
{
$this->_params['action'] = '';
$item = $this->objectManager->getObject(
\Magento\Backend\Model\Menu\Item::class,
['menuFactory' => $this->_menuFactoryMock, 'data' => $this->_params]
);
$this->assertTrue($item->hasClickCallback());
}
public function testGetClickCallbackReturnsStoppingJsIfItemDoesntHaveAction()
{
$this->_params['action'] = '';
$item = $this->objectManager->getObject(
\Magento\Backend\Model\Menu\Item::class,
['menuFactory' => $this->_menuFactoryMock, 'data' => $this->_params]
);
$this->assertEquals('return false;', $item->getClickCallback());
}
public function testGetClickCallbackReturnsEmptyStringIfItemHasAction()
{
$this->assertEquals('', $this->_model->getClickCallback());
}
public function testIsDisabledReturnsTrueIfModuleOutputIsDisabled()
{
$this->_moduleManager->expects($this->once())->method('isOutputEnabled')->will($this->returnValue(false));
$this->assertTrue($this->_model->isDisabled());
}
public function testIsDisabledReturnsTrueIfModuleDependenciesFail()
{
$this->_moduleManager->expects($this->once())->method('isOutputEnabled')->will($this->returnValue(true));
$this->_moduleListMock->expects($this->once())->method('has')->will($this->returnValue(true));
$this->assertTrue($this->_model->isDisabled());
}
public function testIsDisabledReturnsTrueIfConfigDependenciesFail()
{
$this->_moduleManager->expects($this->once())->method('isOutputEnabled')->will($this->returnValue(true));
$this->_moduleListMock->expects($this->once())->method('has')->will($this->returnValue(true));
$this->assertTrue($this->_model->isDisabled());
}
public function testIsDisabledReturnsFalseIfNoDependenciesFail()
{
$this->_moduleManager->expects($this->once())->method('isOutputEnabled')->will($this->returnValue(true));
$this->_moduleListMock->expects($this->once())->method('has')->will($this->returnValue(true));
$this->_scopeConfigMock->expects($this->once())->method('isSetFlag')->will($this->returnValue(true));
$this->assertFalse($this->_model->isDisabled());
}
public function testIsAllowedReturnsTrueIfResourceIsAvailable()
{
$this->_aclMock->expects(
$this->once()
)->method(
'isAllowed'
)->with(
'Magento_Config::config'
)->will(
$this->returnValue(true)
);
$this->assertTrue($this->_model->isAllowed());
}
public function testIsAllowedReturnsFalseIfResourceIsNotAvailable()
{
$this->_aclMock->expects(
$this->once()
)->method(
'isAllowed'
)->with(
'Magento_Config::config'
)->will(
$this->throwException(new \Magento\Framework\Exception\LocalizedException(__('Error')))
);
$this->assertFalse($this->_model->isAllowed());
}
public function testGetChildrenCreatesSubmenuOnFirstCall()
{
$menuMock = $this->createMock(\Magento\Backend\Model\Menu::class);
$this->_menuFactoryMock->expects($this->once())->method('create')->will($this->returnValue($menuMock));
$this->_model->getChildren();
$this->_model->getChildren();
}
/**
* @param array $data
* @param array $expected
* @dataProvider toArrayDataProvider
*/
public function testToArray(array $data, array $expected)
{
$menuMock = $this->createMock(\Magento\Backend\Model\Menu::class);
$this->_menuFactoryMock->method('create')->will($this->returnValue($menuMock));
$menuMock->method('toArray')
->willReturn($data['sub_menu']);
$model = $this->objectManager->getObject(
\Magento\Backend\Model\Menu\Item::class,
[
'authorization' => $this->_aclMock,
'scopeConfig' => $this->_scopeConfigMock,
'menuFactory' => $this->_menuFactoryMock,
'urlModel' => $this->_urlModelMock,
'moduleList' => $this->_moduleListMock,
'moduleManager' => $this->_moduleManager,
'data' => $data
]
);
$this->assertEquals($expected, $model->toArray());
}
/**
* @return array
*/
public function toArrayDataProvider()
{
return include __DIR__ . '/../_files/menu_item_data.php';
}
/**
* @param array $constructorData
* @param array $populateFromData
* @param array $expected
* @dataProvider populateFromArrayDataProvider
*/
public function testPopulateFromArray(
array $constructorData,
array $populateFromData,
array $expected
) {
$menuMock = $this->createMock(\Magento\Backend\Model\Menu::class);
$this->_menuFactoryMock->method('create')->willReturn($menuMock);
$menuMock->method('toArray')
->willReturn(['submenuArray']);
$model = $this->objectManager->getObject(
\Magento\Backend\Model\Menu\Item::class,
[
'authorization' => $this->_aclMock,
'scopeConfig' => $this->_scopeConfigMock,
'menuFactory' => $this->_menuFactoryMock,
'urlModel' => $this->_urlModelMock,
'moduleList' => $this->_moduleListMock,
'moduleManager' => $this->_moduleManager,
'data' => $constructorData
]
);
$model->populateFromArray($populateFromData);
$this->assertEquals($expected, $model->toArray());
}
/**
* @return array
*/
public function populateFromArrayDataProvider()
{
return include __DIR__ . '/../_files/menu_item_constructor_data.php';
}
}