@@ -15,31 +15,31 @@ |
||
15 | 15 | { |
16 | 16 | $target = '\\Aimeos\\Controller\\Frontend\\Customer\\Iface'; |
17 | 17 | |
18 | - $controller = \Aimeos\Controller\Frontend\Customer\Factory::createController( \TestHelperFrontend::getContext() ); |
|
19 | - $this->assertInstanceOf( $target, $controller ); |
|
18 | + $controller = \Aimeos\Controller\Frontend\Customer\Factory::createController(\TestHelperFrontend::getContext()); |
|
19 | + $this->assertInstanceOf($target, $controller); |
|
20 | 20 | |
21 | - $controller = \Aimeos\Controller\Frontend\Customer\Factory::createController( \TestHelperFrontend::getContext(), 'Standard' ); |
|
22 | - $this->assertInstanceOf( $target, $controller ); |
|
21 | + $controller = \Aimeos\Controller\Frontend\Customer\Factory::createController(\TestHelperFrontend::getContext(), 'Standard'); |
|
22 | + $this->assertInstanceOf($target, $controller); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
26 | 26 | public function testCreateControllerInvalidImplementation() |
27 | 27 | { |
28 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' ); |
|
29 | - \Aimeos\Controller\Frontend\Customer\Factory::createController( \TestHelperFrontend::getContext(), 'Invalid' ); |
|
28 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception'); |
|
29 | + \Aimeos\Controller\Frontend\Customer\Factory::createController(\TestHelperFrontend::getContext(), 'Invalid'); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | |
33 | 33 | public function testCreateControllerInvalidName() |
34 | 34 | { |
35 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' ); |
|
36 | - \Aimeos\Controller\Frontend\Customer\Factory::createController( \TestHelperFrontend::getContext(), '%^' ); |
|
35 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception'); |
|
36 | + \Aimeos\Controller\Frontend\Customer\Factory::createController(\TestHelperFrontend::getContext(), '%^'); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | |
40 | 40 | public function testCreateControllerNotExisting() |
41 | 41 | { |
42 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' ); |
|
43 | - \Aimeos\Controller\Frontend\Customer\Factory::createController( \TestHelperFrontend::getContext(), 'notexist' ); |
|
42 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception'); |
|
43 | + \Aimeos\Controller\Frontend\Customer\Factory::createController(\TestHelperFrontend::getContext(), 'notexist'); |
|
44 | 44 | } |
45 | 45 | } |
@@ -20,76 +20,76 @@ discard block |
||
20 | 20 | { |
21 | 21 | $this->context = \TestHelperFrontend::getContext(); |
22 | 22 | |
23 | - $this->stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Customer\Standard' ) |
|
23 | + $this->stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Customer\Standard') |
|
24 | 24 | ->disableOriginalConstructor() |
25 | 25 | ->getMock(); |
26 | 26 | |
27 | - $this->object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Customer\Decorator\Base' ) |
|
28 | - ->setConstructorArgs( [$this->stub, $this->context] ) |
|
27 | + $this->object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Customer\Decorator\Base') |
|
28 | + ->setConstructorArgs([$this->stub, $this->context]) |
|
29 | 29 | ->getMockForAbstractClass(); |
30 | 30 | } |
31 | 31 | |
32 | 32 | |
33 | 33 | protected function tearDown() |
34 | 34 | { |
35 | - unset( $this->context, $this->object, $this->stub ); |
|
35 | + unset($this->context, $this->object, $this->stub); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | |
39 | 39 | public function testConstructException() |
40 | 40 | { |
41 | - $stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Iface' )->getMock(); |
|
41 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Iface')->getMock(); |
|
42 | 42 | |
43 | - $this->setExpectedException( '\Aimeos\Controller\Frontend\Exception' ); |
|
43 | + $this->setExpectedException('\Aimeos\Controller\Frontend\Exception'); |
|
44 | 44 | |
45 | - $this->getMockBuilder( '\Aimeos\Controller\Frontend\Customer\Decorator\Base' ) |
|
46 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
45 | + $this->getMockBuilder('\Aimeos\Controller\Frontend\Customer\Decorator\Base') |
|
46 | + ->setConstructorArgs([$stub, $this->context]) |
|
47 | 47 | ->getMockForAbstractClass(); |
48 | 48 | } |
49 | 49 | |
50 | 50 | |
51 | 51 | public function testCall() |
52 | 52 | { |
53 | - $stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Customer\Standard' ) |
|
53 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Customer\Standard') |
|
54 | 54 | ->disableOriginalConstructor() |
55 | - ->setMethods( ['invalid'] ) |
|
55 | + ->setMethods(['invalid']) |
|
56 | 56 | ->getMock(); |
57 | 57 | |
58 | - $object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Customer\Decorator\Base' ) |
|
59 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
58 | + $object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Customer\Decorator\Base') |
|
59 | + ->setConstructorArgs([$stub, $this->context]) |
|
60 | 60 | ->getMockForAbstractClass(); |
61 | 61 | |
62 | - $stub->expects( $this->once() )->method( 'invalid' )->will( $this->returnValue( true ) ); |
|
62 | + $stub->expects($this->once())->method('invalid')->will($this->returnValue(true)); |
|
63 | 63 | |
64 | - $this->assertTrue( $object->invalid() ); |
|
64 | + $this->assertTrue($object->invalid()); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | |
68 | 68 | public function testAddItem() |
69 | 69 | { |
70 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer' )->createItem(); |
|
70 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer')->createItem(); |
|
71 | 71 | |
72 | - $this->stub->expects( $this->once() )->method( 'addItem' ) |
|
73 | - ->will( $this->returnValue( $item ) ); |
|
72 | + $this->stub->expects($this->once())->method('addItem') |
|
73 | + ->will($this->returnValue($item)); |
|
74 | 74 | |
75 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Iface', $this->object->addItem( [] ) ); |
|
75 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Iface', $this->object->addItem([])); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | |
79 | 79 | public function testCreateItem() |
80 | 80 | { |
81 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer' )->createItem(); |
|
81 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer')->createItem(); |
|
82 | 82 | |
83 | - $this->stub->expects( $this->once() )->method( 'createItem' ) |
|
84 | - ->will( $this->returnValue( $item ) ); |
|
83 | + $this->stub->expects($this->once())->method('createItem') |
|
84 | + ->will($this->returnValue($item)); |
|
85 | 85 | |
86 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Iface', $this->object->createItem() ); |
|
86 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Iface', $this->object->createItem()); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | |
90 | 90 | public function testDeleteItem() |
91 | 91 | { |
92 | - $this->stub->expects( $this->once() )->method( 'deleteItem' ); |
|
92 | + $this->stub->expects($this->once())->method('deleteItem'); |
|
93 | 93 | |
94 | 94 | $this->object->deleteItem( -1 ); |
95 | 95 | } |
@@ -97,61 +97,61 @@ discard block |
||
97 | 97 | |
98 | 98 | public function testEditItem() |
99 | 99 | { |
100 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer' )->createItem(); |
|
100 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer')->createItem(); |
|
101 | 101 | |
102 | - $this->stub->expects( $this->once() )->method( 'editItem' ) |
|
103 | - ->will( $this->returnValue( $item ) ); |
|
102 | + $this->stub->expects($this->once())->method('editItem') |
|
103 | + ->will($this->returnValue($item)); |
|
104 | 104 | |
105 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Iface', $this->object->editItem( -1, [] ) ); |
|
105 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Iface', $this->object->editItem( -1, [] )); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | |
109 | 109 | public function testGetItem() |
110 | 110 | { |
111 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer' )->createItem(); |
|
111 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer')->createItem(); |
|
112 | 112 | |
113 | - $this->stub->expects( $this->once() )->method( 'getItem' ) |
|
114 | - ->will( $this->returnValue( $item ) ); |
|
113 | + $this->stub->expects($this->once())->method('getItem') |
|
114 | + ->will($this->returnValue($item)); |
|
115 | 115 | |
116 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Iface', $this->object->getItem( -1 ) ); |
|
116 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Iface', $this->object->getItem( -1 )); |
|
117 | 117 | } |
118 | 118 | |
119 | 119 | |
120 | 120 | public function testFindItem() |
121 | 121 | { |
122 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer' )->createItem(); |
|
122 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer')->createItem(); |
|
123 | 123 | |
124 | - $this->stub->expects( $this->once() )->method( 'findItem' ) |
|
125 | - ->will( $this->returnValue( $item ) ); |
|
124 | + $this->stub->expects($this->once())->method('findItem') |
|
125 | + ->will($this->returnValue($item)); |
|
126 | 126 | |
127 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Iface', $this->object->findItem( 'test' ) ); |
|
127 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Iface', $this->object->findItem('test')); |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | |
131 | 131 | public function testSaveItem() |
132 | 132 | { |
133 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer' )->createItem(); |
|
133 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer')->createItem(); |
|
134 | 134 | |
135 | - $this->stub->expects( $this->once() )->method( 'saveItem' ); |
|
135 | + $this->stub->expects($this->once())->method('saveItem'); |
|
136 | 136 | |
137 | - $this->object->saveItem( $item ); |
|
137 | + $this->object->saveItem($item); |
|
138 | 138 | } |
139 | 139 | |
140 | 140 | |
141 | 141 | public function testCreateAddressItem() |
142 | 142 | { |
143 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer/address' )->createItem(); |
|
143 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer/address')->createItem(); |
|
144 | 144 | |
145 | - $this->stub->expects( $this->once() )->method( 'createAddressItem' ) |
|
146 | - ->will( $this->returnValue( $item ) ); |
|
145 | + $this->stub->expects($this->once())->method('createAddressItem') |
|
146 | + ->will($this->returnValue($item)); |
|
147 | 147 | |
148 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Address\Iface', $this->object->createAddressItem() ); |
|
148 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Address\Iface', $this->object->createAddressItem()); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | |
152 | 152 | public function testDeleteAddressItem() |
153 | 153 | { |
154 | - $this->stub->expects( $this->once() )->method( 'deleteAddressItem' ); |
|
154 | + $this->stub->expects($this->once())->method('deleteAddressItem'); |
|
155 | 155 | |
156 | 156 | $this->object->deleteAddressItem( -1 ); |
157 | 157 | } |
@@ -159,49 +159,49 @@ discard block |
||
159 | 159 | |
160 | 160 | public function testEditAddressItem() |
161 | 161 | { |
162 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer/address' )->createItem(); |
|
162 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer/address')->createItem(); |
|
163 | 163 | |
164 | - $this->stub->expects( $this->once() )->method( 'editAddressItem' ) |
|
165 | - ->will( $this->returnValue( $item ) ); |
|
164 | + $this->stub->expects($this->once())->method('editAddressItem') |
|
165 | + ->will($this->returnValue($item)); |
|
166 | 166 | |
167 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Address\Iface', $this->object->editAddressItem( -1, [] ) ); |
|
167 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Address\Iface', $this->object->editAddressItem( -1, [] )); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | |
171 | 171 | public function testGetAddressItem() |
172 | 172 | { |
173 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer/address' )->createItem(); |
|
173 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer/address')->createItem(); |
|
174 | 174 | |
175 | - $this->stub->expects( $this->once() )->method( 'getAddressItem' ) |
|
176 | - ->will( $this->returnValue( $item ) ); |
|
175 | + $this->stub->expects($this->once())->method('getAddressItem') |
|
176 | + ->will($this->returnValue($item)); |
|
177 | 177 | |
178 | - $this->assertInstanceOf( '\Aimeos\MShop\Customer\Item\Address\Iface', $this->object->getAddressItem( -1 ) ); |
|
178 | + $this->assertInstanceOf('\Aimeos\MShop\Customer\Item\Address\Iface', $this->object->getAddressItem( -1 )); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | |
182 | 182 | public function testSaveAddressItem() |
183 | 183 | { |
184 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'customer/address' )->createItem(); |
|
184 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'customer/address')->createItem(); |
|
185 | 185 | |
186 | - $this->stub->expects( $this->once() )->method( 'saveAddressItem' ); |
|
186 | + $this->stub->expects($this->once())->method('saveAddressItem'); |
|
187 | 187 | |
188 | - $this->object->saveAddressItem( $item ); |
|
188 | + $this->object->saveAddressItem($item); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | |
192 | 192 | public function testGetController() |
193 | 193 | { |
194 | - $result = $this->access( 'getController' )->invokeArgs( $this->object, [] ); |
|
194 | + $result = $this->access('getController')->invokeArgs($this->object, []); |
|
195 | 195 | |
196 | - $this->assertSame( $this->stub, $result ); |
|
196 | + $this->assertSame($this->stub, $result); |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | |
200 | - protected function access( $name ) |
|
200 | + protected function access($name) |
|
201 | 201 | { |
202 | - $class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Customer\Decorator\Base' ); |
|
203 | - $method = $class->getMethod( $name ); |
|
204 | - $method->setAccessible( true ); |
|
202 | + $class = new \ReflectionClass('\Aimeos\Controller\Frontend\Customer\Decorator\Base'); |
|
203 | + $method = $class->getMethod($name); |
|
204 | + $method->setAccessible(true); |
|
205 | 205 | |
206 | 206 | return $method; |
207 | 207 | } |
@@ -121,8 +121,7 @@ |
||
121 | 121 | } else { |
122 | 122 | unset( $items[$id] ); |
123 | 123 | } |
124 | - } |
|
125 | - catch( \Aimeos\MShop\Service\Exception $e ) |
|
124 | + } catch( \Aimeos\MShop\Service\Exception $e ) |
|
126 | 125 | { |
127 | 126 | $msg = sprintf( 'Unable to create provider "%1$s" for service with ID "%2$s"', $service->getCode(), $id ); |
128 | 127 | $this->getContext()->getLogger()->log( $msg, \Aimeos\MW\Logger\Base::WARN ); |
@@ -35,12 +35,12 @@ discard block |
||
35 | 35 | * @param string[] $attributes List of attribute codes as keys and strings entered by the customer as value |
36 | 36 | * @return string[] List of attributes codes as keys and error messages as values for invalid or missing values |
37 | 37 | */ |
38 | - public function checkAttributes( $serviceId, array $attributes ) |
|
38 | + public function checkAttributes($serviceId, array $attributes) |
|
39 | 39 | { |
40 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
41 | - $provider = $manager->getProvider( $manager->getItem( $serviceId, [], true ) ); |
|
40 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
41 | + $provider = $manager->getProvider($manager->getItem($serviceId, [], true)); |
|
42 | 42 | |
43 | - return array_filter( $provider->checkConfigFE( $attributes ) ); |
|
43 | + return array_filter($provider->checkConfigFE($attributes)); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | |
@@ -51,10 +51,10 @@ discard block |
||
51 | 51 | * @param string[] $ref List of domain names whose items should be fetched too |
52 | 52 | * @return \Aimeos\MShop\Service\Provider\Iface Service provider object |
53 | 53 | */ |
54 | - public function getProvider( $serviceId, $ref = ['media', 'price', 'text'] ) |
|
54 | + public function getProvider($serviceId, $ref = ['media', 'price', 'text']) |
|
55 | 55 | { |
56 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
57 | - return $manager->getProvider( $manager->getItem( $serviceId, $ref, true ) ); |
|
56 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
57 | + return $manager->getProvider($manager->getItem($serviceId, $ref, true)); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | |
@@ -65,26 +65,26 @@ discard block |
||
65 | 65 | * @param string[] $ref List of domain names whose items should be fetched too |
66 | 66 | * @return \Aimeos\MShop\Service\Provider\Iface[] List of service IDs as keys and service provider objects as values |
67 | 67 | */ |
68 | - public function getProviders( $type = null, $ref = ['media', 'price', 'text'] ) |
|
68 | + public function getProviders($type = null, $ref = ['media', 'price', 'text']) |
|
69 | 69 | { |
70 | 70 | $list = []; |
71 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
71 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
72 | 72 | |
73 | - $search = $manager->createSearch( true ); |
|
74 | - $search->setSortations( array( $search->sort( '+', 'service.position' ) ) ); |
|
73 | + $search = $manager->createSearch(true); |
|
74 | + $search->setSortations(array($search->sort('+', 'service.position'))); |
|
75 | 75 | |
76 | - if( $type != null ) |
|
76 | + if ($type != null) |
|
77 | 77 | { |
78 | 78 | $expr = array( |
79 | 79 | $search->getConditions(), |
80 | - $search->compare( '==', 'service.type.code', $type ), |
|
81 | - $search->compare( '==', 'service.type.domain', 'service' ), |
|
80 | + $search->compare('==', 'service.type.code', $type), |
|
81 | + $search->compare('==', 'service.type.domain', 'service'), |
|
82 | 82 | ); |
83 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
83 | + $search->setConditions($search->combine('&&', $expr)); |
|
84 | 84 | } |
85 | 85 | |
86 | - foreach( $manager->searchItems( $search, $ref ) as $id => $item ) { |
|
87 | - $list[$id] = $manager->getProvider( $item ); |
|
86 | + foreach ($manager->searchItems($search, $ref) as $id => $item) { |
|
87 | + $list[$id] = $manager->getProvider($item); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | return $list; |
@@ -102,14 +102,14 @@ discard block |
||
102 | 102 | * @return \Aimeos\MShop\Common\Item\Helper\Form\Iface|null Form object with URL, parameters, etc. |
103 | 103 | * or null if no form data is required |
104 | 104 | */ |
105 | - public function process( \Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params ) |
|
105 | + public function process(\Aimeos\MShop\Order\Item\Iface $orderItem, $serviceId, array $urls, array $params) |
|
106 | 106 | { |
107 | - $manager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
107 | + $manager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
108 | 108 | |
109 | - $provider = $manager->getProvider( $manager->getItem( $serviceId, [], true ) ); |
|
110 | - $provider->injectGlobalConfigBE( $urls ); |
|
109 | + $provider = $manager->getProvider($manager->getItem($serviceId, [], true)); |
|
110 | + $provider->injectGlobalConfigBE($urls); |
|
111 | 111 | |
112 | - return $provider->process( $orderItem, $params ); |
|
112 | + return $provider->process($orderItem, $params); |
|
113 | 113 | } |
114 | 114 | |
115 | 115 | |
@@ -124,38 +124,38 @@ discard block |
||
124 | 124 | * @param string $orderid Unique ID of the order whose payment status should be updated |
125 | 125 | * @return \Aimeos\MShop\Order\Item\Iface $orderItem Order item that has been updated |
126 | 126 | */ |
127 | - public function updateSync( ServerRequestInterface $request, ResponseInterface $response, array $urls, $code, $orderid ) |
|
127 | + public function updateSync(ServerRequestInterface $request, ResponseInterface $response, array $urls, $code, $orderid) |
|
128 | 128 | { |
129 | 129 | $params = (array) $request->getAttributes() + (array) $request->getParsedBody() + (array) $request->getQueryParams(); |
130 | 130 | $params['orderid'] = $orderid; |
131 | 131 | |
132 | 132 | $context = $this->getContext(); |
133 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'service' ); |
|
133 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'service'); |
|
134 | 134 | |
135 | - $provider = $manager->getProvider( $manager->findItem( $code ) ); |
|
136 | - $provider->injectGlobalConfigBE( $urls ); |
|
135 | + $provider = $manager->getProvider($manager->findItem($code)); |
|
136 | + $provider->injectGlobalConfigBE($urls); |
|
137 | 137 | |
138 | 138 | $body = (string) $request->getBody(); |
139 | 139 | $output = null; |
140 | 140 | $headers = []; |
141 | 141 | |
142 | - if( ( $orderItem = $provider->updateSync( $params, $body, $output, $headers ) ) !== null ) |
|
142 | + if (($orderItem = $provider->updateSync($params, $body, $output, $headers)) !== null) |
|
143 | 143 | { |
144 | - if( $orderItem->getPaymentStatus() === \Aimeos\MShop\Order\Item\Base::PAY_UNFINISHED |
|
145 | - && $provider->isImplemented( \Aimeos\MShop\Service\Provider\Payment\Base::FEAT_QUERY ) |
|
144 | + if ($orderItem->getPaymentStatus() === \Aimeos\MShop\Order\Item\Base::PAY_UNFINISHED |
|
145 | + && $provider->isImplemented(\Aimeos\MShop\Service\Provider\Payment\Base::FEAT_QUERY) |
|
146 | 146 | ) { |
147 | - $provider->query( $orderItem ); |
|
147 | + $provider->query($orderItem); |
|
148 | 148 | } |
149 | 149 | |
150 | 150 | // update stock, coupons, etc. |
151 | - \Aimeos\Controller\Frontend\Factory::createController( $context, 'order' )->update( $orderItem ); |
|
151 | + \Aimeos\Controller\Frontend\Factory::createController($context, 'order')->update($orderItem); |
|
152 | 152 | } |
153 | 153 | |
154 | - foreach( $headers as $name => $header ) { |
|
155 | - $response->withHeader( $name, $header ); |
|
154 | + foreach ($headers as $name => $header) { |
|
155 | + $response->withHeader($name, $header); |
|
156 | 156 | } |
157 | 157 | |
158 | - $response->withBody( $response->createStreamFromString( $output ) ); |
|
158 | + $response->withBody($response->createStreamFromString($output)); |
|
159 | 159 | |
160 | 160 | return $orderItem; |
161 | 161 | } |
@@ -171,38 +171,38 @@ discard block |
||
171 | 171 | * @throws \Exception If an error occurs |
172 | 172 | * @deprecated Use getProviders() instead |
173 | 173 | */ |
174 | - public function getServices( $type, \Aimeos\MShop\Order\Item\Base\Iface $basket, $ref = ['media', 'price', 'text'] ) |
|
174 | + public function getServices($type, \Aimeos\MShop\Order\Item\Base\Iface $basket, $ref = ['media', 'price', 'text']) |
|
175 | 175 | { |
176 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
176 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
177 | 177 | |
178 | - $search = $serviceManager->createSearch( true ); |
|
178 | + $search = $serviceManager->createSearch(true); |
|
179 | 179 | $expr = array( |
180 | 180 | $search->getConditions(), |
181 | - $search->compare( '==', 'service.type.domain', 'service' ), |
|
182 | - $search->compare( '==', 'service.type.code', $type ), |
|
181 | + $search->compare('==', 'service.type.domain', 'service'), |
|
182 | + $search->compare('==', 'service.type.code', $type), |
|
183 | 183 | ); |
184 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
185 | - $search->setSortations( array( $search->sort( '+', 'service.position' ) ) ); |
|
184 | + $search->setConditions($search->combine('&&', $expr)); |
|
185 | + $search->setSortations(array($search->sort('+', 'service.position'))); |
|
186 | 186 | |
187 | - $items = $serviceManager->searchItems( $search, $ref ); |
|
187 | + $items = $serviceManager->searchItems($search, $ref); |
|
188 | 188 | |
189 | 189 | |
190 | - foreach( $items as $id => $service ) |
|
190 | + foreach ($items as $id => $service) |
|
191 | 191 | { |
192 | 192 | try |
193 | 193 | { |
194 | - $provider = $serviceManager->getProvider( $service ); |
|
194 | + $provider = $serviceManager->getProvider($service); |
|
195 | 195 | |
196 | - if( $provider->isAvailable( $basket ) ) { |
|
196 | + if ($provider->isAvailable($basket)) { |
|
197 | 197 | $this->providers[$type][$id] = $provider; |
198 | 198 | } else { |
199 | - unset( $items[$id] ); |
|
199 | + unset($items[$id]); |
|
200 | 200 | } |
201 | 201 | } |
202 | - catch( \Aimeos\MShop\Service\Exception $e ) |
|
202 | + catch (\Aimeos\MShop\Service\Exception $e) |
|
203 | 203 | { |
204 | - $msg = sprintf( 'Unable to create provider "%1$s" for service with ID "%2$s"', $service->getCode(), $id ); |
|
205 | - $this->getContext()->getLogger()->log( $msg, \Aimeos\MW\Logger\Base::WARN ); |
|
204 | + $msg = sprintf('Unable to create provider "%1$s" for service with ID "%2$s"', $service->getCode(), $id); |
|
205 | + $this->getContext()->getLogger()->log($msg, \Aimeos\MW\Logger\Base::WARN); |
|
206 | 206 | } |
207 | 207 | } |
208 | 208 | |
@@ -223,16 +223,16 @@ discard block |
||
223 | 223 | * @throws \Exception If an error occurs |
224 | 224 | * @deprecated Use getProvider() instead |
225 | 225 | */ |
226 | - public function getServiceAttributes( $type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket ) |
|
226 | + public function getServiceAttributes($type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket) |
|
227 | 227 | { |
228 | - if( isset( $this->providers[$type][$serviceId] ) ) { |
|
229 | - return $this->providers[$type][$serviceId]->getConfigFE( $basket ); |
|
228 | + if (isset($this->providers[$type][$serviceId])) { |
|
229 | + return $this->providers[$type][$serviceId]->getConfigFE($basket); |
|
230 | 230 | } |
231 | 231 | |
232 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
233 | - $item = $serviceManager->getItem( $serviceId, ['price'], true ); |
|
232 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
233 | + $item = $serviceManager->getItem($serviceId, ['price'], true); |
|
234 | 234 | |
235 | - return $serviceManager->getProvider( $item )->getConfigFE( $basket ); |
|
235 | + return $serviceManager->getProvider($item)->getConfigFE($basket); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | |
@@ -248,16 +248,16 @@ discard block |
||
248 | 248 | * @throws \Exception If an error occurs |
249 | 249 | * @deprecated Use getProvider() instead |
250 | 250 | */ |
251 | - public function getServicePrice( $type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket ) |
|
251 | + public function getServicePrice($type, $serviceId, \Aimeos\MShop\Order\Item\Base\Iface $basket) |
|
252 | 252 | { |
253 | - if( isset( $this->providers[$type][$serviceId] ) ) { |
|
254 | - return $this->providers[$type][$serviceId]->calcPrice( $basket ); |
|
253 | + if (isset($this->providers[$type][$serviceId])) { |
|
254 | + return $this->providers[$type][$serviceId]->calcPrice($basket); |
|
255 | 255 | } |
256 | 256 | |
257 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
258 | - $item = $serviceManager->getItem( $serviceId, ['price'], true ); |
|
257 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
258 | + $item = $serviceManager->getItem($serviceId, ['price'], true); |
|
259 | 259 | |
260 | - return $serviceManager->getProvider( $item )->calcPrice( $basket ); |
|
260 | + return $serviceManager->getProvider($item)->calcPrice($basket); |
|
261 | 261 | } |
262 | 262 | |
263 | 263 | |
@@ -273,22 +273,22 @@ discard block |
||
273 | 273 | * @throws \Aimeos\Controller\Frontend\Service\Exception If no active service provider for this ID is available |
274 | 274 | * @deprecated Use checkAttributes() instead |
275 | 275 | */ |
276 | - public function checkServiceAttributes( $type, $serviceId, array $attributes ) |
|
276 | + public function checkServiceAttributes($type, $serviceId, array $attributes) |
|
277 | 277 | { |
278 | - if( !isset( $this->providers[$type][$serviceId] ) ) |
|
278 | + if (!isset($this->providers[$type][$serviceId])) |
|
279 | 279 | { |
280 | - $serviceManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'service' ); |
|
281 | - $item = $serviceManager->getItem( $serviceId, ['price'], true ); |
|
280 | + $serviceManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'service'); |
|
281 | + $item = $serviceManager->getItem($serviceId, ['price'], true); |
|
282 | 282 | |
283 | - $this->providers[$type][$serviceId] = $serviceManager->getProvider( $item ); |
|
283 | + $this->providers[$type][$serviceId] = $serviceManager->getProvider($item); |
|
284 | 284 | } |
285 | 285 | |
286 | - $errors = $this->providers[$type][$serviceId]->checkConfigFE( $attributes ); |
|
286 | + $errors = $this->providers[$type][$serviceId]->checkConfigFE($attributes); |
|
287 | 287 | |
288 | - foreach( $errors as $key => $msg ) |
|
288 | + foreach ($errors as $key => $msg) |
|
289 | 289 | { |
290 | - if( $msg === null ) { |
|
291 | - unset( $errors[$key] ); |
|
290 | + if ($msg === null) { |
|
291 | + unset($errors[$key]); |
|
292 | 292 | } |
293 | 293 | } |
294 | 294 |
@@ -15,31 +15,31 @@ |
||
15 | 15 | { |
16 | 16 | $target = '\\Aimeos\\Controller\\Frontend\\Service\\Iface'; |
17 | 17 | |
18 | - $controller = \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext() ); |
|
19 | - $this->assertInstanceOf( $target, $controller ); |
|
18 | + $controller = \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext()); |
|
19 | + $this->assertInstanceOf($target, $controller); |
|
20 | 20 | |
21 | - $controller = \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), 'Standard' ); |
|
22 | - $this->assertInstanceOf( $target, $controller ); |
|
21 | + $controller = \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), 'Standard'); |
|
22 | + $this->assertInstanceOf($target, $controller); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
26 | 26 | public function testCreateControllerInvalidImplementation() |
27 | 27 | { |
28 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' ); |
|
29 | - \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), 'Invalid' ); |
|
28 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception'); |
|
29 | + \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), 'Invalid'); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | |
33 | 33 | public function testCreateControllerInvalidName() |
34 | 34 | { |
35 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' ); |
|
36 | - \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), '%^' ); |
|
35 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception'); |
|
36 | + \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), '%^'); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | |
40 | 40 | public function testCreateControllerNotExisting() |
41 | 41 | { |
42 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Exception' ); |
|
43 | - \Aimeos\Controller\Frontend\Service\Factory::createController( \TestHelperFrontend::getContext(), 'notexist' ); |
|
42 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Exception'); |
|
43 | + \Aimeos\Controller\Frontend\Service\Factory::createController(\TestHelperFrontend::getContext(), 'notexist'); |
|
44 | 44 | } |
45 | 45 | } |
@@ -20,136 +20,136 @@ |
||
20 | 20 | { |
21 | 21 | $this->context = \TestHelperFrontend::getContext(); |
22 | 22 | |
23 | - $this->stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Standard' ) |
|
23 | + $this->stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Standard') |
|
24 | 24 | ->disableOriginalConstructor() |
25 | 25 | ->getMock(); |
26 | 26 | |
27 | - $this->object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ) |
|
28 | - ->setConstructorArgs( [$this->stub, $this->context] ) |
|
27 | + $this->object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Decorator\Base') |
|
28 | + ->setConstructorArgs([$this->stub, $this->context]) |
|
29 | 29 | ->getMockForAbstractClass(); |
30 | 30 | } |
31 | 31 | |
32 | 32 | |
33 | 33 | protected function tearDown() |
34 | 34 | { |
35 | - unset( $this->context, $this->object, $this->stub ); |
|
35 | + unset($this->context, $this->object, $this->stub); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | |
39 | 39 | public function testConstructException() |
40 | 40 | { |
41 | - $stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Iface' )->getMock(); |
|
41 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Iface')->getMock(); |
|
42 | 42 | |
43 | - $this->setExpectedException( '\Aimeos\Controller\Frontend\Exception' ); |
|
43 | + $this->setExpectedException('\Aimeos\Controller\Frontend\Exception'); |
|
44 | 44 | |
45 | - $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ) |
|
46 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
45 | + $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Decorator\Base') |
|
46 | + ->setConstructorArgs([$stub, $this->context]) |
|
47 | 47 | ->getMockForAbstractClass(); |
48 | 48 | } |
49 | 49 | |
50 | 50 | |
51 | 51 | public function testCall() |
52 | 52 | { |
53 | - $stub = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Standard' ) |
|
53 | + $stub = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Standard') |
|
54 | 54 | ->disableOriginalConstructor() |
55 | - ->setMethods( ['invalid'] ) |
|
55 | + ->setMethods(['invalid']) |
|
56 | 56 | ->getMock(); |
57 | 57 | |
58 | - $object = $this->getMockBuilder( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ) |
|
59 | - ->setConstructorArgs( [$stub, $this->context] ) |
|
58 | + $object = $this->getMockBuilder('\Aimeos\Controller\Frontend\Order\Decorator\Base') |
|
59 | + ->setConstructorArgs([$stub, $this->context]) |
|
60 | 60 | ->getMockForAbstractClass(); |
61 | 61 | |
62 | - $stub->expects( $this->once() )->method( 'invalid' )->will( $this->returnValue( true ) ); |
|
62 | + $stub->expects($this->once())->method('invalid')->will($this->returnValue(true)); |
|
63 | 63 | |
64 | - $this->assertTrue( $object->invalid() ); |
|
64 | + $this->assertTrue($object->invalid()); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | |
68 | 68 | public function testAddItem() |
69 | 69 | { |
70 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
70 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
71 | 71 | |
72 | - $this->stub->expects( $this->once() )->method( 'addItem' )->will( $this->returnValue( $item ) ); |
|
72 | + $this->stub->expects($this->once())->method('addItem')->will($this->returnValue($item)); |
|
73 | 73 | |
74 | - $this->assertInstanceOf( '\Aimeos\MShop\Order\Item\Iface', $this->object->addItem( -1, '' ) ); |
|
74 | + $this->assertInstanceOf('\Aimeos\MShop\Order\Item\Iface', $this->object->addItem( -1, '' )); |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | |
78 | 78 | public function testCreateFilter() |
79 | 79 | { |
80 | - $search = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createSearch(); |
|
80 | + $search = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createSearch(); |
|
81 | 81 | |
82 | - $this->stub->expects( $this->once() )->method( 'createFilter' )->will( $this->returnValue( $search ) ); |
|
82 | + $this->stub->expects($this->once())->method('createFilter')->will($this->returnValue($search)); |
|
83 | 83 | |
84 | - $this->assertInstanceOf( '\Aimeos\MW\Criteria\Iface', $this->object->createFilter() ); |
|
84 | + $this->assertInstanceOf('\Aimeos\MW\Criteria\Iface', $this->object->createFilter()); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | |
88 | 88 | public function testGetItem() |
89 | 89 | { |
90 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
90 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
91 | 91 | |
92 | - $this->stub->expects( $this->once() )->method( 'getItem' )->will( $this->returnValue( $item ) ); |
|
92 | + $this->stub->expects($this->once())->method('getItem')->will($this->returnValue($item)); |
|
93 | 93 | |
94 | - $this->assertInstanceOf( '\Aimeos\MShop\Order\Item\Iface', $this->object->getItem( -1 ) ); |
|
94 | + $this->assertInstanceOf('\Aimeos\MShop\Order\Item\Iface', $this->object->getItem( -1 )); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | |
98 | 98 | public function testSearchItems() |
99 | 99 | { |
100 | - $search = $this->getMockBuilder( '\Aimeos\MW\Criteria\Iface' )->getMock(); |
|
100 | + $search = $this->getMockBuilder('\Aimeos\MW\Criteria\Iface')->getMock(); |
|
101 | 101 | |
102 | - $this->stub->expects( $this->once() )->method( 'searchItems' )->will( $this->returnValue( [] ) ); |
|
102 | + $this->stub->expects($this->once())->method('searchItems')->will($this->returnValue([])); |
|
103 | 103 | |
104 | - $this->assertEquals( [], $this->object->searchItems( $search ) ); |
|
104 | + $this->assertEquals([], $this->object->searchItems($search)); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | |
108 | 108 | public function testUnblock() |
109 | 109 | { |
110 | - $orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
110 | + $orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
111 | 111 | |
112 | - $this->stub->expects( $this->once() )->method( 'unblock' ); |
|
112 | + $this->stub->expects($this->once())->method('unblock'); |
|
113 | 113 | |
114 | - $this->object->unblock( $orderItem ); |
|
114 | + $this->object->unblock($orderItem); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | |
118 | 118 | public function testUpdate() |
119 | 119 | { |
120 | - $orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
120 | + $orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
121 | 121 | |
122 | - $this->stub->expects( $this->once() )->method( 'update' ); |
|
122 | + $this->stub->expects($this->once())->method('update'); |
|
123 | 123 | |
124 | - $this->object->update( $orderItem ); |
|
124 | + $this->object->update($orderItem); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | |
128 | 128 | public function testStore() |
129 | 129 | { |
130 | - $orderItem = \Aimeos\MShop\Factory::createManager( $this->context, 'order' )->createItem(); |
|
131 | - $basket = \Aimeos\MShop\Factory::createManager( $this->context, 'order/base' )->createItem(); |
|
130 | + $orderItem = \Aimeos\MShop\Factory::createManager($this->context, 'order')->createItem(); |
|
131 | + $basket = \Aimeos\MShop\Factory::createManager($this->context, 'order/base')->createItem(); |
|
132 | 132 | |
133 | - $this->stub->expects( $this->once() )->method( 'store' ) |
|
134 | - ->will( $this->returnValue( $orderItem ) ); |
|
133 | + $this->stub->expects($this->once())->method('store') |
|
134 | + ->will($this->returnValue($orderItem)); |
|
135 | 135 | |
136 | - $this->assertInstanceOf( '\Aimeos\MShop\Order\Item\Iface', $this->object->store( $basket ) ); |
|
136 | + $this->assertInstanceOf('\Aimeos\MShop\Order\Item\Iface', $this->object->store($basket)); |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | |
140 | 140 | public function testGetController() |
141 | 141 | { |
142 | - $result = $this->access( 'getController' )->invokeArgs( $this->object, [] ); |
|
142 | + $result = $this->access('getController')->invokeArgs($this->object, []); |
|
143 | 143 | |
144 | - $this->assertSame( $this->stub, $result ); |
|
144 | + $this->assertSame($this->stub, $result); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | |
148 | - protected function access( $name ) |
|
148 | + protected function access($name) |
|
149 | 149 | { |
150 | - $class = new \ReflectionClass( '\Aimeos\Controller\Frontend\Order\Decorator\Base' ); |
|
151 | - $method = $class->getMethod( $name ); |
|
152 | - $method->setAccessible( true ); |
|
150 | + $class = new \ReflectionClass('\Aimeos\Controller\Frontend\Order\Decorator\Base'); |
|
151 | + $method = $class->getMethod($name); |
|
152 | + $method->setAccessible(true); |
|
153 | 153 | |
154 | 154 | return $method; |
155 | 155 | } |
@@ -18,40 +18,40 @@ |
||
18 | 18 | protected function setUp() |
19 | 19 | { |
20 | 20 | $this->context = \TestHelperFrontend::getContext(); |
21 | - $object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context ); |
|
22 | - $this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Bundle( $object, $this->context ); |
|
21 | + $object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context); |
|
22 | + $this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Bundle($object, $this->context); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
26 | 26 | protected function tearDown() |
27 | 27 | { |
28 | 28 | $this->object->clear(); |
29 | - $this->context->getSession()->set( 'aimeos', [] ); |
|
29 | + $this->context->getSession()->set('aimeos', []); |
|
30 | 30 | |
31 | - unset( $this->object ); |
|
31 | + unset($this->object); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | |
35 | 35 | public function testAddProductBundle() |
36 | 36 | { |
37 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:BUNDLE' ); |
|
37 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:BUNDLE'); |
|
38 | 38 | |
39 | - $this->object->addProduct( $item->getId(), 1 ); |
|
39 | + $this->object->addProduct($item->getId(), 1); |
|
40 | 40 | |
41 | - $this->assertEquals( 1, count( $this->object->get()->getProducts() ) ); |
|
42 | - $this->assertEquals( 'U:BUNDLE', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
43 | - $this->assertEquals( 2, count( $this->object->get()->getProduct( 0 )->getProducts() ) ); |
|
41 | + $this->assertEquals(1, count($this->object->get()->getProducts())); |
|
42 | + $this->assertEquals('U:BUNDLE', $this->object->get()->getProduct(0)->getProductCode()); |
|
43 | + $this->assertEquals(2, count($this->object->get()->getProduct(0)->getProducts())); |
|
44 | 44 | } |
45 | 45 | |
46 | 46 | |
47 | 47 | public function testAddProductNoBundle() |
48 | 48 | { |
49 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' ); |
|
49 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC'); |
|
50 | 50 | |
51 | - $this->object->addProduct( $item->getId(), 1 ); |
|
51 | + $this->object->addProduct($item->getId(), 1); |
|
52 | 52 | |
53 | - $this->assertEquals( 1, count( $this->object->get()->getProducts() ) ); |
|
54 | - $this->assertEquals( 'CNC', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
55 | - $this->assertEquals( 0, count( $this->object->get()->getProduct( 0 )->getProducts() ) ); |
|
53 | + $this->assertEquals(1, count($this->object->get()->getProducts())); |
|
54 | + $this->assertEquals('CNC', $this->object->get()->getProduct(0)->getProductCode()); |
|
55 | + $this->assertEquals(0, count($this->object->get()->getProduct(0)->getProducts())); |
|
56 | 56 | } |
57 | 57 | } |
@@ -18,35 +18,35 @@ |
||
18 | 18 | protected function setUp() |
19 | 19 | { |
20 | 20 | $this->context = \TestHelperFrontend::getContext(); |
21 | - $object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context ); |
|
22 | - $this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Category( $object, $this->context ); |
|
21 | + $object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context); |
|
22 | + $this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Category($object, $this->context); |
|
23 | 23 | } |
24 | 24 | |
25 | 25 | |
26 | 26 | protected function tearDown() |
27 | 27 | { |
28 | 28 | $this->object->clear(); |
29 | - $this->context->getSession()->set( 'aimeos', [] ); |
|
29 | + $this->context->getSession()->set('aimeos', []); |
|
30 | 30 | |
31 | - unset( $this->object ); |
|
31 | + unset($this->object); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | |
35 | 35 | public function testAddProductWithCategory() |
36 | 36 | { |
37 | - $manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product' ); |
|
38 | - $item = $manager->findItem( 'CNE' ); |
|
37 | + $manager = \Aimeos\MShop\Factory::createManager($this->context, 'product'); |
|
38 | + $item = $manager->findItem('CNE'); |
|
39 | 39 | |
40 | - $this->object->addProduct( $item->getId(), 5 ); |
|
40 | + $this->object->addProduct($item->getId(), 5); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | |
44 | 44 | public function testAddProductNoCategory() |
45 | 45 | { |
46 | - $manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product' ); |
|
47 | - $item = $manager->findItem( 'ABCD' ); |
|
46 | + $manager = \Aimeos\MShop\Factory::createManager($this->context, 'product'); |
|
47 | + $item = $manager->findItem('ABCD'); |
|
48 | 48 | |
49 | - $this->setExpectedException( '\Aimeos\Controller\Frontend\Basket\Exception' ); |
|
50 | - $this->object->addProduct( $item->getId(), 5 ); |
|
49 | + $this->setExpectedException('\Aimeos\Controller\Frontend\Basket\Exception'); |
|
50 | + $this->object->addProduct($item->getId(), 5); |
|
51 | 51 | } |
52 | 52 | } |
@@ -17,63 +17,63 @@ discard block |
||
17 | 17 | |
18 | 18 | protected function setUp() |
19 | 19 | { |
20 | - $this->object = new \Aimeos\Controller\Frontend\Catalog\Standard( \TestHelperFrontend::getContext() ); |
|
20 | + $this->object = new \Aimeos\Controller\Frontend\Catalog\Standard(\TestHelperFrontend::getContext()); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
24 | 24 | protected function tearDown() |
25 | 25 | { |
26 | - unset( $this->object ); |
|
26 | + unset($this->object); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | |
30 | 30 | public function testCreateManager() |
31 | 31 | { |
32 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager( 'product' ) ); |
|
32 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager('product')); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | |
36 | 36 | public function testCreateCatalogFilter() |
37 | 37 | { |
38 | - $filter = $this->object->createCatalogFilter( true ); |
|
38 | + $filter = $this->object->createCatalogFilter(true); |
|
39 | 39 | |
40 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
41 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Expression\\Compare\\Iface', $filter->getConditions() ); |
|
42 | - $this->assertEquals( 'catalog.status', $filter->getConditions()->getName() ); |
|
40 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
41 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Expression\\Compare\\Iface', $filter->getConditions()); |
|
42 | + $this->assertEquals('catalog.status', $filter->getConditions()->getName()); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | |
46 | 46 | public function testGetCatalogPath() |
47 | 47 | { |
48 | - $manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
49 | - $item = $manager->getTree( null, [], \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST ); |
|
48 | + $manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
49 | + $item = $manager->getTree(null, [], \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST); |
|
50 | 50 | |
51 | 51 | $list = []; |
52 | - foreach( $this->object->getCatalogPath( $item->getChild( 0 )->getId(), array( 'text' ) ) as $item ) { |
|
52 | + foreach ($this->object->getCatalogPath($item->getChild(0)->getId(), array('text')) as $item) { |
|
53 | 53 | $list[$item->getCode()] = $item; |
54 | 54 | } |
55 | 55 | |
56 | - $this->assertEquals( 2, count( $list ) ); |
|
57 | - $this->assertArrayHasKey( 'root', $list ); |
|
58 | - $this->assertArrayHasKey( 'categories', $list ); |
|
56 | + $this->assertEquals(2, count($list)); |
|
57 | + $this->assertArrayHasKey('root', $list); |
|
58 | + $this->assertArrayHasKey('categories', $list); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
62 | 62 | public function testGetCatalogTree() |
63 | 63 | { |
64 | - $item = $this->object->getCatalogTree( null, array( 'text' ), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE ); |
|
64 | + $item = $this->object->getCatalogTree(null, array('text'), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE); |
|
65 | 65 | |
66 | - $this->assertEquals( 'Root', $item->getName() ); |
|
67 | - $this->assertEquals( 0, count( $item->getChildren() ) ); |
|
66 | + $this->assertEquals('Root', $item->getName()); |
|
67 | + $this->assertEquals(0, count($item->getChildren())); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | |
71 | 71 | public function testAggregateIndex() |
72 | 72 | { |
73 | 73 | $filter = $this->object->createIndexFilter(); |
74 | - $list = $this->object->aggregateIndex( $filter, 'index.attribute.id' ); |
|
74 | + $list = $this->object->aggregateIndex($filter, 'index.attribute.id'); |
|
75 | 75 | |
76 | - $this->assertGreaterThan( 0, count( $list ) ); |
|
76 | + $this->assertGreaterThan(0, count($list)); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | |
@@ -81,286 +81,286 @@ discard block |
||
81 | 81 | { |
82 | 82 | $filter = $this->object->createIndexFilter(); |
83 | 83 | |
84 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
85 | - $this->assertEquals( [], $filter->getSortations() ); |
|
86 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
87 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
84 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
85 | + $this->assertEquals([], $filter->getSortations()); |
|
86 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
87 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | |
91 | 91 | public function testCreateIndexFilterCategory() |
92 | 92 | { |
93 | - $filter = $this->object->createIndexFilterCategory( 0 ); |
|
93 | + $filter = $this->object->createIndexFilterCategory(0); |
|
94 | 94 | |
95 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
95 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
96 | 96 | |
97 | 97 | $list = $filter->getConditions()->getExpressions(); |
98 | 98 | |
99 | 99 | |
100 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
101 | - throw new \RuntimeException( 'Wrong expression' ); |
|
100 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
101 | + throw new \RuntimeException('Wrong expression'); |
|
102 | 102 | } |
103 | - $this->assertEquals( 'index.catalog.id', $list[0]->getName() ); |
|
104 | - $this->assertEquals( array( 0 ), $list[0]->getValue() ); |
|
103 | + $this->assertEquals('index.catalog.id', $list[0]->getName()); |
|
104 | + $this->assertEquals(array(0), $list[0]->getValue()); |
|
105 | 105 | |
106 | 106 | |
107 | - $this->assertEquals( [], $filter->getSortations() ); |
|
108 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
109 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
107 | + $this->assertEquals([], $filter->getSortations()); |
|
108 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
109 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | |
113 | 113 | public function testCreateIndexFilterCategoryPosition() |
114 | 114 | { |
115 | - $filter = $this->object->createIndexFilterCategory( 0, 'relevance', '-', 1, 2, 'test' ); |
|
115 | + $filter = $this->object->createIndexFilterCategory(0, 'relevance', '-', 1, 2, 'test'); |
|
116 | 116 | |
117 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
117 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
118 | 118 | |
119 | 119 | $sort = $filter->getSortations(); |
120 | - if( ( $item = reset( $sort ) ) === false ) { |
|
121 | - throw new \RuntimeException( 'Sortation not set' ); |
|
120 | + if (($item = reset($sort)) === false) { |
|
121 | + throw new \RuntimeException('Sortation not set'); |
|
122 | 122 | } |
123 | 123 | |
124 | - $this->assertEquals( 'sort:index.catalog.position("test",["0"])', $item->getName() ); |
|
125 | - $this->assertEquals( '-', $item->getOperator() ); |
|
124 | + $this->assertEquals('sort:index.catalog.position("test",["0"])', $item->getName()); |
|
125 | + $this->assertEquals('-', $item->getOperator()); |
|
126 | 126 | |
127 | - $this->assertEquals( 1, $filter->getSliceStart() ); |
|
128 | - $this->assertEquals( 2, $filter->getSliceSize() ); |
|
127 | + $this->assertEquals(1, $filter->getSliceStart()); |
|
128 | + $this->assertEquals(2, $filter->getSliceSize()); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
132 | 132 | public function testCreateIndexFilterCategoryCode() |
133 | 133 | { |
134 | - $filter = $this->object->createIndexFilterCategory( 0, 'code' ); |
|
134 | + $filter = $this->object->createIndexFilterCategory(0, 'code'); |
|
135 | 135 | |
136 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
136 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
137 | 137 | |
138 | 138 | $sort = $filter->getSortations(); |
139 | - if( ( $item = reset( $sort ) ) === false ) { |
|
140 | - throw new \RuntimeException( 'Sortation not set' ); |
|
139 | + if (($item = reset($sort)) === false) { |
|
140 | + throw new \RuntimeException('Sortation not set'); |
|
141 | 141 | } |
142 | 142 | |
143 | - $this->assertStringStartsWith( 'product.code', $item->getName() ); |
|
143 | + $this->assertStringStartsWith('product.code', $item->getName()); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
147 | 147 | public function testCreateIndexFilterCategoryName() |
148 | 148 | { |
149 | - $filter = $this->object->createIndexFilterCategory( 0, 'name' ); |
|
149 | + $filter = $this->object->createIndexFilterCategory(0, 'name'); |
|
150 | 150 | |
151 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
151 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
152 | 152 | |
153 | 153 | $sort = $filter->getSortations(); |
154 | - if( ( $item = reset( $sort ) ) === false ) { |
|
155 | - throw new \RuntimeException( 'Sortation not set' ); |
|
154 | + if (($item = reset($sort)) === false) { |
|
155 | + throw new \RuntimeException('Sortation not set'); |
|
156 | 156 | } |
157 | 157 | |
158 | - $this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() ); |
|
158 | + $this->assertEquals('sort:index.text.value("default","de","name")', $item->getName()); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | |
162 | 162 | public function testCreateIndexFilterCategoryPrice() |
163 | 163 | { |
164 | - $filter = $this->object->createIndexFilterCategory( 0, 'price' ); |
|
164 | + $filter = $this->object->createIndexFilterCategory(0, 'price'); |
|
165 | 165 | |
166 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
166 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
167 | 167 | |
168 | 168 | $sort = $filter->getSortations(); |
169 | - if( ( $item = reset( $sort ) ) === false ) { |
|
170 | - throw new \RuntimeException( 'Sortation not set' ); |
|
169 | + if (($item = reset($sort)) === false) { |
|
170 | + throw new \RuntimeException('Sortation not set'); |
|
171 | 171 | } |
172 | 172 | |
173 | - $this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() ); |
|
173 | + $this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName()); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | |
177 | 177 | public function testCreateIndexFilterCategoryInvalidSortation() |
178 | 178 | { |
179 | - $filter = $this->object->createIndexFilterCategory( 0, 'failure' ); |
|
179 | + $filter = $this->object->createIndexFilterCategory(0, 'failure'); |
|
180 | 180 | |
181 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
182 | - $this->assertEquals( [], $filter->getSortations() ); |
|
181 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
182 | + $this->assertEquals([], $filter->getSortations()); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | |
186 | 186 | public function testAddIndexFilterCategory() |
187 | 187 | { |
188 | 188 | $filter = $this->object->createIndexFilter(); |
189 | - $filter = $this->object->addIndexFilterCategory( $filter, 0 ); |
|
189 | + $filter = $this->object->addIndexFilterCategory($filter, 0); |
|
190 | 190 | |
191 | 191 | $list = $filter->getConditions()->getExpressions(); |
192 | 192 | |
193 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
194 | - throw new \RuntimeException( 'Wrong expression' ); |
|
193 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
194 | + throw new \RuntimeException('Wrong expression'); |
|
195 | 195 | } |
196 | 196 | |
197 | - $this->assertEquals( 'index.catalog.id', $list[0]->getName() ); |
|
198 | - $this->assertEquals( array( 0 ), $list[0]->getValue() ); |
|
199 | - $this->assertEquals( [], $filter->getSortations() ); |
|
197 | + $this->assertEquals('index.catalog.id', $list[0]->getName()); |
|
198 | + $this->assertEquals(array(0), $list[0]->getValue()); |
|
199 | + $this->assertEquals([], $filter->getSortations()); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | |
203 | 203 | public function testCreateIndexFilterText() |
204 | 204 | { |
205 | - $filter = $this->object->createIndexFilterText( 'Espresso' ); |
|
205 | + $filter = $this->object->createIndexFilterText('Espresso'); |
|
206 | 206 | |
207 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
207 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
208 | 208 | |
209 | 209 | $list = $filter->getConditions()->getExpressions(); |
210 | 210 | |
211 | 211 | |
212 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
213 | - throw new \RuntimeException( 'Wrong expression' ); |
|
212 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
213 | + throw new \RuntimeException('Wrong expression'); |
|
214 | 214 | } |
215 | - $this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() ); |
|
216 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
215 | + $this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName()); |
|
216 | + $this->assertEquals(0, $list[0]->getValue()); |
|
217 | 217 | |
218 | 218 | |
219 | - $this->assertEquals( [], $filter->getSortations() ); |
|
220 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
221 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
219 | + $this->assertEquals([], $filter->getSortations()); |
|
220 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
221 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | |
225 | 225 | public function testCreateIndexFilterTextRelevance() |
226 | 226 | { |
227 | - $filter = $this->object->createIndexFilterText( 'Espresso', 'relevance', '-', 1, 2, 'test' ); |
|
227 | + $filter = $this->object->createIndexFilterText('Espresso', 'relevance', '-', 1, 2, 'test'); |
|
228 | 228 | |
229 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
230 | - $this->assertEquals( [], $filter->getSortations() ); |
|
231 | - $this->assertEquals( 1, $filter->getSliceStart() ); |
|
232 | - $this->assertEquals( 2, $filter->getSliceSize() ); |
|
229 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
230 | + $this->assertEquals([], $filter->getSortations()); |
|
231 | + $this->assertEquals(1, $filter->getSliceStart()); |
|
232 | + $this->assertEquals(2, $filter->getSliceSize()); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | |
236 | 236 | public function testCreateIndexFilterTextCode() |
237 | 237 | { |
238 | - $filter = $this->object->createIndexFilterText( 'Espresso', 'code' ); |
|
238 | + $filter = $this->object->createIndexFilterText('Espresso', 'code'); |
|
239 | 239 | |
240 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
240 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
241 | 241 | |
242 | 242 | $sort = $filter->getSortations(); |
243 | - if( ( $item = reset( $sort ) ) === false ) { |
|
244 | - throw new \RuntimeException( 'Sortation not set' ); |
|
243 | + if (($item = reset($sort)) === false) { |
|
244 | + throw new \RuntimeException('Sortation not set'); |
|
245 | 245 | } |
246 | 246 | |
247 | - $this->assertEquals( 'product.code', $item->getName() ); |
|
247 | + $this->assertEquals('product.code', $item->getName()); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | |
251 | 251 | public function testCreateIndexFilterTextName() |
252 | 252 | { |
253 | - $filter = $this->object->createIndexFilterText( 'Espresso', 'name' ); |
|
253 | + $filter = $this->object->createIndexFilterText('Espresso', 'name'); |
|
254 | 254 | |
255 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
255 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
256 | 256 | |
257 | 257 | $sort = $filter->getSortations(); |
258 | - if( ( $item = reset( $sort ) ) === false ) { |
|
259 | - throw new \RuntimeException( 'Sortation not set' ); |
|
258 | + if (($item = reset($sort)) === false) { |
|
259 | + throw new \RuntimeException('Sortation not set'); |
|
260 | 260 | } |
261 | 261 | |
262 | - $this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() ); |
|
262 | + $this->assertEquals('sort:index.text.value("default","de","name")', $item->getName()); |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | |
266 | 266 | public function testCreateIndexFilterTextPrice() |
267 | 267 | { |
268 | - $filter = $this->object->createIndexFilterCategory( 'Espresso', 'price' ); |
|
268 | + $filter = $this->object->createIndexFilterCategory('Espresso', 'price'); |
|
269 | 269 | |
270 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
270 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
271 | 271 | |
272 | 272 | $sort = $filter->getSortations(); |
273 | - if( ( $item = reset( $sort ) ) === false ) { |
|
274 | - throw new \RuntimeException( 'Sortation not set' ); |
|
273 | + if (($item = reset($sort)) === false) { |
|
274 | + throw new \RuntimeException('Sortation not set'); |
|
275 | 275 | } |
276 | 276 | |
277 | - $this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() ); |
|
277 | + $this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName()); |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | |
281 | 281 | public function testCreateIndexFilterTextInvalidSortation() |
282 | 282 | { |
283 | - $filter = $this->object->createIndexFilterText( '', 'failure' ); |
|
283 | + $filter = $this->object->createIndexFilterText('', 'failure'); |
|
284 | 284 | |
285 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
286 | - $this->assertEquals( [], $filter->getSortations() ); |
|
285 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
286 | + $this->assertEquals([], $filter->getSortations()); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | |
290 | 290 | public function testAddIndexFilterText() |
291 | 291 | { |
292 | - $filter = $this->object->createIndexFilterText( 'Espresso' ); |
|
293 | - $filter = $this->object->addIndexFilterText( $filter, 'Espresso' ); |
|
292 | + $filter = $this->object->createIndexFilterText('Espresso'); |
|
293 | + $filter = $this->object->addIndexFilterText($filter, 'Espresso'); |
|
294 | 294 | |
295 | 295 | $list = $filter->getConditions()->getExpressions(); |
296 | 296 | |
297 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
298 | - throw new \RuntimeException( 'Wrong expression' ); |
|
297 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
298 | + throw new \RuntimeException('Wrong expression'); |
|
299 | 299 | } |
300 | 300 | |
301 | - $this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() ); |
|
302 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
303 | - $this->assertEquals( [], $filter->getSortations() ); |
|
301 | + $this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName()); |
|
302 | + $this->assertEquals(0, $list[0]->getValue()); |
|
303 | + $this->assertEquals([], $filter->getSortations()); |
|
304 | 304 | } |
305 | 305 | |
306 | 306 | |
307 | 307 | public function testGetIndexItemsCategory() |
308 | 308 | { |
309 | - $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
309 | + $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
310 | 310 | $search = $catalogManager->createSearch(); |
311 | 311 | |
312 | - $search->setConditions( $search->compare( '==', 'catalog.code', 'new' ) ); |
|
313 | - $search->setSlice( 0, 1 ); |
|
314 | - $items = $catalogManager->searchItems( $search ); |
|
312 | + $search->setConditions($search->compare('==', 'catalog.code', 'new')); |
|
313 | + $search->setSlice(0, 1); |
|
314 | + $items = $catalogManager->searchItems($search); |
|
315 | 315 | |
316 | - if( ( $item = reset( $items ) ) === false ) { |
|
317 | - throw new \RuntimeException( 'Catalog item not found' ); |
|
316 | + if (($item = reset($items)) === false) { |
|
317 | + throw new \RuntimeException('Catalog item not found'); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | $total = 0; |
321 | - $filter = $this->object->createIndexFilterCategory( $item->getId(), 'position', '+', 1, 1 ); |
|
322 | - $results = $this->object->getIndexItems( $filter, [], $total ); |
|
321 | + $filter = $this->object->createIndexFilterCategory($item->getId(), 'position', '+', 1, 1); |
|
322 | + $results = $this->object->getIndexItems($filter, [], $total); |
|
323 | 323 | |
324 | - $this->assertEquals( 3, $total ); |
|
325 | - $this->assertEquals( 1, count( $results ) ); |
|
324 | + $this->assertEquals(3, $total); |
|
325 | + $this->assertEquals(1, count($results)); |
|
326 | 326 | } |
327 | 327 | |
328 | 328 | |
329 | 329 | public function testGetIndexItemsText() |
330 | 330 | { |
331 | 331 | $total = 0; |
332 | - $filter = $this->object->createIndexFilterText( 'Expresso', 'relevance', '+', 0, 1, 'unittype13' ); |
|
333 | - $results = $this->object->getIndexItems( $filter, [], $total ); |
|
332 | + $filter = $this->object->createIndexFilterText('Expresso', 'relevance', '+', 0, 1, 'unittype13'); |
|
333 | + $results = $this->object->getIndexItems($filter, [], $total); |
|
334 | 334 | |
335 | - $this->assertEquals( 2, $total ); |
|
336 | - $this->assertEquals( 1, count( $results ) ); |
|
335 | + $this->assertEquals(2, $total); |
|
336 | + $this->assertEquals(1, count($results)); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | |
340 | 340 | public function testGetProductItems() |
341 | 341 | { |
342 | - $list = $this->object->getProductItems( [-1] ); |
|
343 | - $this->assertEquals( 0, count( $list ) ); |
|
342 | + $list = $this->object->getProductItems([-1]); |
|
343 | + $this->assertEquals(0, count($list)); |
|
344 | 344 | } |
345 | 345 | |
346 | 346 | |
347 | 347 | public function testCreateTextFilter() |
348 | 348 | { |
349 | - $filter = $this->object->createTextFilter( 'Expresso', 'name', '+', 0, 1 ); |
|
349 | + $filter = $this->object->createTextFilter('Expresso', 'name', '+', 0, 1); |
|
350 | 350 | |
351 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
352 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Expression\\Combine\\Iface', $filter->getConditions() ); |
|
353 | - $this->assertEquals( 3, count( $filter->getConditions()->getExpressions() ) ); |
|
351 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
352 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Expression\\Combine\\Iface', $filter->getConditions()); |
|
353 | + $this->assertEquals(3, count($filter->getConditions()->getExpressions())); |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | |
357 | 357 | public function testGetTextListName() |
358 | 358 | { |
359 | - $filter = $this->object->createTextFilter( 'Cafe Noire', 'relevance', '-', 0, 25, 'unittype19', 'name' ); |
|
360 | - $results = $this->object->getTextList( $filter ); |
|
359 | + $filter = $this->object->createTextFilter('Cafe Noire', 'relevance', '-', 0, 25, 'unittype19', 'name'); |
|
360 | + $results = $this->object->getTextList($filter); |
|
361 | 361 | |
362 | - $this->assertEquals( 1, count( $results ) ); |
|
363 | - $this->assertContains( 'Cafe Noire Cappuccino', $results ); |
|
362 | + $this->assertEquals(1, count($results)); |
|
363 | + $this->assertContains('Cafe Noire Cappuccino', $results); |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | } |
@@ -20,33 +20,33 @@ |
||
20 | 20 | $this->context = \TestHelperFrontend::getContext(); |
21 | 21 | $config = $this->context->getConfig(); |
22 | 22 | |
23 | - $config->set( 'controller/frontend/common/decorators/default', [] ); |
|
24 | - $config->set( 'controller/frontend/catalog/decorators/global', [] ); |
|
25 | - $config->set( 'controller/frontend/catalog/decorators/local', [] ); |
|
23 | + $config->set('controller/frontend/common/decorators/default', []); |
|
24 | + $config->set('controller/frontend/catalog/decorators/global', []); |
|
25 | + $config->set('controller/frontend/catalog/decorators/local', []); |
|
26 | 26 | |
27 | 27 | } |
28 | 28 | |
29 | 29 | |
30 | 30 | public function testInjectController() |
31 | 31 | { |
32 | - $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
33 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller ); |
|
32 | + $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
33 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller); |
|
34 | 34 | |
35 | - $injectedController = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
35 | + $injectedController = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
36 | 36 | |
37 | - $this->assertSame( $controller, $injectedController ); |
|
37 | + $this->assertSame($controller, $injectedController); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | |
41 | 41 | public function testInjectControllerReset() |
42 | 42 | { |
43 | - $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
44 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller ); |
|
45 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', null ); |
|
43 | + $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
44 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller); |
|
45 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', null); |
|
46 | 46 | |
47 | - $new = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
47 | + $new = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
48 | 48 | |
49 | - $this->assertNotSame( $controller, $new ); |
|
49 | + $this->assertNotSame($controller, $new); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | } |
53 | 53 | \ No newline at end of file |