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
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Ui\Test\Unit\Component\MassAction\Columns;
use Magento\Ui\Component\MassAction\Columns\Column;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
use Magento\Framework\View\Element\UiComponent\ContextInterface;
/**
* Class ColumnTest
*/
class ColumnTest extends \PHPUnit\Framework\TestCase
{
/**
* @var ContextInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $contextMock;
/**
* @var Column
*/
protected $column;
/**
* @var ObjectManager
*/
protected $objectManager;
/**
* Set up
*/
protected function setUp()
{
$this->objectManager = new ObjectManager($this);
$this->contextMock = $this->getMockForAbstractClass(
\Magento\Framework\View\Element\UiComponent\ContextInterface::class,
[],
'',
false,
true,
true,
[]
);
$this->column = $this->objectManager->getObject(
\Magento\Ui\Component\MassAction\Columns\Column::class,
[
'context' => $this->contextMock,
'data' => [
'js_config' => [
'extends' => 'test_config_extends'
]
]
]
);
}
/**
* Run test getComponentName method
*
* @return void
*/
public function testGetComponentName()
{
$this->contextMock->expects($this->never())->method('getProcessor');
$this->assertTrue($this->column->getComponentName() === Column::NAME);
}
/**
* Run test prepareItems method
*
* @return void
*/
public function testPrepareItems()
{
$testItems = ['item1','item2', 'item3'];
$this->assertEquals($testItems, $this->column->prepareItems($testItems));
}
/**
* Run test prepare method
*
* @return void
*/
public function testPrepare()
{
$processor = $this->getMockBuilder(\Magento\Framework\View\Element\UiComponent\Processor::class)
->disableOriginalConstructor()
->getMock();
$this->contextMock->expects($this->atLeastOnce())->method('getProcessor')->willReturn($processor);
$this->column = $this->objectManager->getObject(
\Magento\Ui\Component\MassAction\Columns\Column::class,
[
'context' => $this->contextMock,
'data' => [
'js_config' => []
]
]
);
$this->contextMock->expects($this->once())
->method('getNamespace')
->willReturn('test_namespace');
$this->contextMock->expects($this->once())
->method('addComponentDefinition')
->with($this->column->getComponentName(), ['extends' => 'test_namespace']);
$this->column->prepare();
}
/**
* Run test prepare method
*
* @return void
*/
public function testPrepareExtendsFromConfig()
{
$processor = $this->getMockBuilder(\Magento\Framework\View\Element\UiComponent\Processor::class)
->disableOriginalConstructor()
->getMock();
$this->contextMock->expects($this->atLeastOnce())->method('getProcessor')->willReturn($processor);
$this->contextMock->expects($this->never())
->method('getNamespace');
$this->contextMock->expects($this->once())
->method('addComponentDefinition')
->with($this->column->getComponentName(), ['extends' => 'test_config_extends']);
$this->column->prepare();
}
}