1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 |
5
|
|
|
* @copyright Aimeos (aimeos.org), 2017 |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
|
9
|
|
|
namespace Aimeos\Controller\Frontend\Product\Decorator; |
10
|
|
|
|
11
|
|
|
|
12
|
|
|
class BaseTest extends \PHPUnit_Framework_TestCase |
13
|
|
|
{ |
14
|
|
|
private $context; |
15
|
|
|
private $object; |
16
|
|
|
private $stub; |
17
|
|
|
|
18
|
|
|
|
19
|
|
|
protected function setUp() |
20
|
|
|
{ |
21
|
|
|
$this->context = \TestHelperFrontend::getContext(); |
22
|
|
|
|
23
|
|
|
$this->stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Product\Standard' ) |
24
|
|
|
->disableOriginalConstructor() |
25
|
|
|
->getMock(); |
26
|
|
|
|
27
|
|
|
$this->object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Product\Decorator\Base' ) |
28
|
|
|
->setConstructorArgs( [$this->stub, $this->context] ) |
29
|
|
|
->getMockForAbstractClass(); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
|
33
|
|
|
protected function tearDown() |
34
|
|
|
{ |
35
|
|
|
unset( $this->context, $this->object, $this->stub ); |
36
|
|
|
} |
37
|
|
|
|
38
|
|
|
|
39
|
|
|
public function testConstructException() |
40
|
|
|
{ |
41
|
|
|
$stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Iface' )->getMock(); |
42
|
|
|
|
43
|
|
|
$this->setExpectedException( '\Aimeos\Controller\Frontend\Exception' ); |
44
|
|
|
|
45
|
|
|
$this->getMockBuilder( '\Aimeos\Controller\Frontend\Product\Decorator\Base' ) |
46
|
|
|
->setConstructorArgs( [$stub, $this->context] ) |
47
|
|
|
->getMockForAbstractClass(); |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
|
51
|
|
|
public function testCall() |
52
|
|
|
{ |
53
|
|
|
$stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Product\Standard' ) |
54
|
|
|
->disableOriginalConstructor() |
55
|
|
|
->setMethods( ['invalid'] ) |
56
|
|
|
->getMock(); |
57
|
|
|
|
58
|
|
|
$object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Product\Decorator\Base' ) |
59
|
|
|
->setConstructorArgs( [$stub, $this->context] ) |
60
|
|
|
->getMockForAbstractClass(); |
61
|
|
|
|
62
|
|
|
$stub->expects( $this->once() )->method( 'invalid' )->will( $this->returnValue( true ) ); |
63
|
|
|
|
64
|
|
|
$this->assertTrue( $object->invalid() ); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
|
68
|
|
|
public function testAddFilterAttribute() |
69
|
|
|
{ |
70
|
|
|
$search = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createSearch(); |
71
|
|
|
|
72
|
|
|
$this->stub->expects( $this->once() )->method( 'addFilterAttribute' ) |
73
|
|
|
->will( $this->returnArgument( 0 ) ); |
74
|
|
|
|
75
|
|
|
$this->assertInstanceOf( '\Aimeos\MW\Criteria\Iface', $this->object->addFilterAttribute( $search, [], [], [] ) ); |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
|
79
|
|
|
public function testAddFilterCategory() |
80
|
|
|
{ |
81
|
|
|
$search = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createSearch(); |
82
|
|
|
|
83
|
|
|
$this->stub->expects( $this->once() )->method( 'addFilterCategory' ) |
84
|
|
|
->will( $this->returnArgument( 0 ) ); |
85
|
|
|
|
86
|
|
|
$this->assertInstanceOf( '\Aimeos\MW\Criteria\Iface', $this->object->addFilterCategory( $search, -1 ) ); |
87
|
|
|
} |
88
|
|
|
|
89
|
|
|
|
90
|
|
|
public function testAddFilterText() |
91
|
|
|
{ |
92
|
|
|
$search = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createSearch(); |
93
|
|
|
|
94
|
|
|
$this->stub->expects( $this->once() )->method( 'addFilterText' ) |
95
|
|
|
->will( $this->returnArgument( 0 ) ); |
96
|
|
|
|
97
|
|
|
$this->assertInstanceOf( '\Aimeos\MW\Criteria\Iface', $this->object->addFilterText( $search, 'test' ) ); |
98
|
|
|
} |
99
|
|
|
|
100
|
|
|
|
101
|
|
|
public function testAggregate() |
102
|
|
|
{ |
103
|
|
|
$search = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createSearch(); |
104
|
|
|
|
105
|
|
|
$this->stub->expects( $this->once() )->method( 'aggregate' ) |
106
|
|
|
->will( $this->returnValue( [] ) ); |
107
|
|
|
|
108
|
|
|
$this->assertEquals( [], $this->object->aggregate( $search, 'test' ) ); |
109
|
|
|
} |
110
|
|
|
|
111
|
|
|
|
112
|
|
|
public function testCreateFilter() |
113
|
|
|
{ |
114
|
|
|
$search = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createSearch(); |
115
|
|
|
|
116
|
|
|
$this->stub->expects( $this->once() )->method( 'createFilter' ) |
117
|
|
|
->will( $this->returnValue( $search ) ); |
118
|
|
|
|
119
|
|
|
$this->assertInstanceOf( '\Aimeos\MW\Criteria\Iface', $this->object->createFilter() ); |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
|
123
|
|
|
public function testGetItem() |
124
|
|
|
{ |
125
|
|
|
$prodItem = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createItem(); |
126
|
|
|
|
127
|
|
|
$this->stub->expects( $this->once() )->method( 'getItem' ) |
128
|
|
|
->will( $this->returnValue( $prodItem ) ); |
129
|
|
|
|
130
|
|
|
$this->assertInstanceOf( '\Aimeos\MShop\Product\Item\Iface', $this->object->getItem( -1 ) ); |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
|
134
|
|
|
public function testGetItems() |
135
|
|
|
{ |
136
|
|
|
$this->stub->expects( $this->once() )->method( 'getItems' ) |
137
|
|
|
->will( $this->returnValue( [] ) ); |
138
|
|
|
|
139
|
|
|
$this->assertEquals( [], $this->object->getItems( [-1] ) ); |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
|
143
|
|
|
public function testSearchItems() |
144
|
|
|
{ |
145
|
|
|
$search = \Aimeos\MShop\Factory::createManager( $this->context, 'index' )->createSearch(); |
146
|
|
|
|
147
|
|
|
$this->stub->expects( $this->once() )->method( 'searchItems' ) |
148
|
|
|
->will( $this->returnValue( [] ) ); |
149
|
|
|
|
150
|
|
|
$this->assertEquals( [], $this->object->searchItems( $search ) ); |
151
|
|
|
} |
152
|
|
|
|
153
|
|
|
|
154
|
|
|
public function testGetController() |
155
|
|
|
{ |
156
|
|
|
$result = $this->access( 'getController' )->invokeArgs( $this->object, [] ); |
157
|
|
|
|
158
|
|
|
$this->assertSame( $this->stub, $result ); |
159
|
|
|
} |
160
|
|
|
|
161
|
|
|
|
162
|
|
|
protected function access( $name ) |
163
|
|
|
{ |
164
|
|
|
$class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Product\Decorator\Base' ); |
165
|
|
|
$method = $class->getMethod( $name ); |
166
|
|
|
$method->setAccessible( true ); |
167
|
|
|
|
168
|
|
|
return $method; |
169
|
|
|
} |
170
|
|
|
} |
171
|
|
|
|