Completed
Push — master ( 6472e5...035b46 )
by Aimeos
02:52
created
Tests/Controller/JsonapiControllerTest.php 1 patch
Spacing   +202 added lines, -202 removed lines patch added patch discarded remove patch
@@ -10,74 +10,74 @@  discard block
 block discarded – undo
10 10
 	public function testOptionsAction()
11 11
 	{
12 12
 		$client = static::createClient();
13
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
13
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
14 14
 		$response = $client->getResponse();
15 15
 
16
-		$json = json_decode( $response->getContent(), true );
16
+		$json = json_decode($response->getContent(), true);
17 17
 
18
-		$this->assertNotNull( $json );
19
-		$this->assertEquals( 200, $response->getStatusCode() );
20
-		$this->assertArrayHasKey( 'resources', $json['meta'] );
21
-		$this->assertGreaterThan( 1, count( $json['meta']['resources'] ) );
18
+		$this->assertNotNull($json);
19
+		$this->assertEquals(200, $response->getStatusCode());
20
+		$this->assertArrayHasKey('resources', $json['meta']);
21
+		$this->assertGreaterThan(1, count($json['meta']['resources']));
22 22
 	}
23 23
 
24 24
 
25 25
 	public function testPutAction()
26 26
 	{
27 27
 		$client = static::createClient();
28
-		$client->request( 'PUT', '/unittest/de/EUR/jsonapi/basket' );
28
+		$client->request('PUT', '/unittest/de/EUR/jsonapi/basket');
29 29
 		$response = $client->getResponse();
30 30
 
31
-		$json = json_decode( $response->getContent(), true );
31
+		$json = json_decode($response->getContent(), true);
32 32
 
33
-		$this->assertNotNull( $json );
34
-		$this->assertEquals( 403, $response->getStatusCode() );
35
-		$this->assertArrayHasKey( 'errors', $json );
33
+		$this->assertNotNull($json);
34
+		$this->assertEquals(403, $response->getStatusCode());
35
+		$this->assertArrayHasKey('errors', $json);
36 36
 	}
37 37
 
38 38
 
39 39
 	public function testGetAttributeAction()
40 40
 	{
41 41
 		$client = static::createClient();
42
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/attribute', [] );
42
+		$client->request('GET', '/unittest/de/EUR/jsonapi/attribute', []);
43 43
 		$response = $client->getResponse();
44 44
 
45
-		$json = json_decode( $response->getContent(), true );
45
+		$json = json_decode($response->getContent(), true);
46 46
 
47
-		$this->assertNotNull( $json );
48
-		$this->assertEquals( 200, $response->getStatusCode() );
49
-		$this->assertEquals( 26, $json['meta']['total'] );
50
-		$this->assertEquals( 26, count( $json['data'] ) );
47
+		$this->assertNotNull($json);
48
+		$this->assertEquals(200, $response->getStatusCode());
49
+		$this->assertEquals(26, $json['meta']['total']);
50
+		$this->assertEquals(26, count($json['data']));
51 51
 	}
52 52
 
53 53
 
54 54
 	public function testGetCatalogAction()
55 55
 	{
56 56
 		$client = static::createClient();
57
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/catalog', [] );
57
+		$client->request('GET', '/unittest/de/EUR/jsonapi/catalog', []);
58 58
 		$response = $client->getResponse();
59 59
 
60
-		$json = json_decode( $response->getContent(), true );
60
+		$json = json_decode($response->getContent(), true);
61 61
 
62
-		$this->assertNotNull( $json );
63
-		$this->assertEquals( 200, $response->getStatusCode() );
64
-		$this->assertEquals( 1, $json['meta']['total'] );
65
-		$this->assertEquals( 4, count( $json['data'] ) );
62
+		$this->assertNotNull($json);
63
+		$this->assertEquals(200, $response->getStatusCode());
64
+		$this->assertEquals(1, $json['meta']['total']);
65
+		$this->assertEquals(4, count($json['data']));
66 66
 	}
67 67
 
68 68
 
69 69
 	public function testGetLocaleAction()
70 70
 	{
71 71
 		$client = static::createClient();
72
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/locale', [] );
72
+		$client->request('GET', '/unittest/de/EUR/jsonapi/locale', []);
73 73
 		$response = $client->getResponse();
74 74
 
75
-		$json = json_decode( $response->getContent(), true );
75
+		$json = json_decode($response->getContent(), true);
76 76
 
77
-		$this->assertNotNull( $json );
78
-		$this->assertEquals( 200, $response->getStatusCode() );
79
-		$this->assertEquals( 1, $json['meta']['total'] );
80
-		$this->assertEquals( 1, count( $json['data'] ) );
77
+		$this->assertNotNull($json);
78
+		$this->assertEquals(200, $response->getStatusCode());
79
+		$this->assertEquals(1, $json['meta']['total']);
80
+		$this->assertEquals(1, count($json['data']));
81 81
 	}
82 82
 
83 83
 
@@ -86,58 +86,58 @@  discard block
 block discarded – undo
86 86
 		$client = static::createClient();
87 87
 
88 88
 		$params = ['filter' => ['f_search' => 'Cafe Noire Cap', 'f_listtype' => 'unittype19']];
89
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/product', $params );
89
+		$client->request('GET', '/unittest/de/EUR/jsonapi/product', $params);
90 90
 		$response = $client->getResponse();
91 91
 
92
-		$json = json_decode( $response->getContent(), true );
92
+		$json = json_decode($response->getContent(), true);
93 93
 
94
-		$this->assertNotNull( $json );
95
-		$this->assertEquals( 200, $response->getStatusCode() );
96
-		$this->assertEquals( 1, $json['meta']['total'] );
97
-		$this->assertEquals( 1, count( $json['data'] ) );
98
-		$this->assertArrayHasKey( 'id', $json['data'][0] );
99
-		$this->assertEquals( 'CNC', $json['data'][0]['attributes']['product.code'] );
94
+		$this->assertNotNull($json);
95
+		$this->assertEquals(200, $response->getStatusCode());
96
+		$this->assertEquals(1, $json['meta']['total']);
97
+		$this->assertEquals(1, count($json['data']));
98
+		$this->assertArrayHasKey('id', $json['data'][0]);
99
+		$this->assertEquals('CNC', $json['data'][0]['attributes']['product.code']);
100 100
 
101
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/product?id=' . $json['data'][0]['id'] );
101
+		$client->request('GET', '/unittest/de/EUR/jsonapi/product?id='.$json['data'][0]['id']);
102 102
 		$response = $client->getResponse();
103 103
 
104
-		$json = json_decode( $response->getContent(), true );
104
+		$json = json_decode($response->getContent(), true);
105 105
 
106
-		$this->assertNotNull( $json );
107
-		$this->assertEquals( 200, $response->getStatusCode() );
108
-		$this->assertEquals( 1, $json['meta']['total'] );
109
-		$this->assertArrayHasKey( 'id', $json['data'] );
110
-		$this->assertEquals( 'CNC', $json['data']['attributes']['product.code'] );
106
+		$this->assertNotNull($json);
107
+		$this->assertEquals(200, $response->getStatusCode());
108
+		$this->assertEquals(1, $json['meta']['total']);
109
+		$this->assertArrayHasKey('id', $json['data']);
110
+		$this->assertEquals('CNC', $json['data']['attributes']['product.code']);
111 111
 	}
112 112
 
113 113
 
114 114
 	public function testGetServiceAction()
115 115
 	{
116 116
 		$client = static::createClient();
117
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/service', [] );
117
+		$client->request('GET', '/unittest/de/EUR/jsonapi/service', []);
118 118
 		$response = $client->getResponse();
119 119
 
120
-		$json = json_decode( $response->getContent(), true );
120
+		$json = json_decode($response->getContent(), true);
121 121
 
122
-		$this->assertNotNull( $json );
123
-		$this->assertEquals( 200, $response->getStatusCode() );
124
-		$this->assertEquals( 4, $json['meta']['total'] );
125
-		$this->assertEquals( 4, count( $json['data'] ) );
122
+		$this->assertNotNull($json);
123
+		$this->assertEquals(200, $response->getStatusCode());
124
+		$this->assertEquals(4, $json['meta']['total']);
125
+		$this->assertEquals(4, count($json['data']));
126 126
 	}
127 127
 
128 128
 
129 129
 	public function testGetStockAction()
130 130
 	{
131 131
 		$client = static::createClient();
132
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/stock', ['filter' => ['s_prodcode' => ['CNC', 'CNE']]] );
132
+		$client->request('GET', '/unittest/de/EUR/jsonapi/stock', ['filter' => ['s_prodcode' => ['CNC', 'CNE']]]);
133 133
 		$response = $client->getResponse();
134 134
 
135
-		$json = json_decode( $response->getContent(), true );
135
+		$json = json_decode($response->getContent(), true);
136 136
 
137
-		$this->assertNotNull( $json );
138
-		$this->assertEquals( 200, $response->getStatusCode() );
139
-		$this->assertEquals( 2, $json['meta']['total'] );
140
-		$this->assertEquals( 2, count( $json['data'] ) );
137
+		$this->assertNotNull($json);
138
+		$this->assertEquals(200, $response->getStatusCode());
139
+		$this->assertEquals(2, $json['meta']['total']);
140
+		$this->assertEquals(2, count($json['data']));
141 141
 	}
142 142
 
143 143
 
@@ -145,25 +145,25 @@  discard block
 block discarded – undo
145 145
 	{
146 146
 		$client = static::createClient();
147 147
 
148
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
149
-		$optJson = json_decode( $client->getResponse()->getContent(), true );
150
-		$this->assertGreaterThan( 8, count( $optJson['meta']['resources'] ) );
148
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
149
+		$optJson = json_decode($client->getResponse()->getContent(), true);
150
+		$this->assertGreaterThan(8, count($optJson['meta']['resources']));
151 151
 
152 152
 		// catalog root
153
-		$client->request( 'GET', $optJson['meta']['resources']['catalog'], ['include' => 'catalog'] );
154
-		$json = json_decode( $client->getResponse()->getContent(), true );
155
-		$this->assertEquals( 'categories', $json['included'][0]['attributes']['catalog.code'] );
153
+		$client->request('GET', $optJson['meta']['resources']['catalog'], ['include' => 'catalog']);
154
+		$json = json_decode($client->getResponse()->getContent(), true);
155
+		$this->assertEquals('categories', $json['included'][0]['attributes']['catalog.code']);
156 156
 
157 157
 		// "categories" category
158
-		$client->request( 'GET', $json['included'][0]['links']['self']['href'], ['include' => 'catalog'] );
159
-		$json = json_decode( $client->getResponse()->getContent(), true );
160
-		$this->assertEquals( 'cafe', $json['included'][0]['attributes']['catalog.code'] );
158
+		$client->request('GET', $json['included'][0]['links']['self']['href'], ['include' => 'catalog']);
159
+		$json = json_decode($client->getResponse()->getContent(), true);
160
+		$this->assertEquals('cafe', $json['included'][0]['attributes']['catalog.code']);
161 161
 // print_r( $json );
162 162
 
163 163
 		// product list for "cafe" category
164
-		$client->request( 'GET', $optJson['meta']['resources']['product'], ['filter' => ['f_catid' => $json['included'][0]['id']]] );
165
-		$json = json_decode( $client->getResponse()->getContent(), true );
166
-		$this->assertEquals( 'CNE', $json['data'][0]['attributes']['product.code'] );
164
+		$client->request('GET', $optJson['meta']['resources']['product'], ['filter' => ['f_catid' => $json['included'][0]['id']]]);
165
+		$json = json_decode($client->getResponse()->getContent(), true);
166
+		$this->assertEquals('CNE', $json['data'][0]['attributes']['product.code']);
167 167
 	}
168 168
 
169 169
 
@@ -171,26 +171,26 @@  discard block
 block discarded – undo
171 171
 	{
172 172
 		$client = static::createClient();
173 173
 
174
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
175
-		$options = json_decode( $client->getResponse()->getContent(), true );
176
-		$this->assertGreaterThan( 8, count( $options['meta']['resources'] ) );
174
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
175
+		$options = json_decode($client->getResponse()->getContent(), true);
176
+		$this->assertGreaterThan(8, count($options['meta']['resources']));
177 177
 
178 178
 		// all available attrbutes
179
-		$client->request( 'GET', $options['meta']['resources']['attribute'] );
180
-		$json = json_decode( $client->getResponse()->getContent(), true );
179
+		$client->request('GET', $options['meta']['resources']['attribute']);
180
+		$json = json_decode($client->getResponse()->getContent(), true);
181 181
 
182
-		foreach( $json['data'] as $entry )
182
+		foreach ($json['data'] as $entry)
183 183
 		{
184
-			if( $entry['attributes']['attribute.code'] === 'xl' )
184
+			if ($entry['attributes']['attribute.code'] === 'xl')
185 185
 			{
186 186
 				// products with attrbute "xl"
187
-				$client->request( 'GET', $options['meta']['resources']['product'], ['filter' => ['f_attrid' => $entry['id']]] );
187
+				$client->request('GET', $options['meta']['resources']['product'], ['filter' => ['f_attrid' => $entry['id']]]);
188 188
 				break;
189 189
 			}
190 190
 		}
191 191
 
192
-		$json = json_decode( $client->getResponse()->getContent(), true );
193
-		$this->assertEquals( 2, $json['meta']['total'] );
192
+		$json = json_decode($client->getResponse()->getContent(), true);
193
+		$this->assertEquals(2, $json['meta']['total']);
194 194
 	}
195 195
 
196 196
 
@@ -198,14 +198,14 @@  discard block
 block discarded – undo
198 198
 	{
199 199
 		$client = static::createClient();
200 200
 
201
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
202
-		$json = json_decode( $client->getResponse()->getContent(), true );
203
-		$this->assertGreaterThan( 8, count( $json['meta']['resources'] ) );
201
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
202
+		$json = json_decode($client->getResponse()->getContent(), true);
203
+		$this->assertGreaterThan(8, count($json['meta']['resources']));
204 204
 
205 205
 		// product list for full text search
206
-		$client->request( 'GET', $json['meta']['resources']['product'], ['filter' => ['f_search' => 'selection']] );
207
-		$json = json_decode( $client->getResponse()->getContent(), true );
208
-		$this->assertEquals( 3, count( $json['data'] ) );
206
+		$client->request('GET', $json['meta']['resources']['product'], ['filter' => ['f_search' => 'selection']]);
207
+		$json = json_decode($client->getResponse()->getContent(), true);
208
+		$this->assertEquals(3, count($json['data']));
209 209
 	}
210 210
 
211 211
 
@@ -213,23 +213,23 @@  discard block
 block discarded – undo
213 213
 	{
214 214
 		$client = static::createClient();
215 215
 
216
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
217
-		$json = json_decode( $client->getResponse()->getContent(), true );
218
-		$this->assertGreaterThan( 8, count( $json['meta']['resources'] ) );
216
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
217
+		$json = json_decode($client->getResponse()->getContent(), true);
218
+		$this->assertGreaterThan(8, count($json['meta']['resources']));
219 219
 
220 220
 		// get empty basket
221
-		$client->request( 'GET', $json['meta']['resources']['basket'] );
222
-		$json = json_decode( $client->getResponse()->getContent(), true );
223
-		$this->assertEquals( 'basket', $json['data']['type'] );
221
+		$client->request('GET', $json['meta']['resources']['basket']);
222
+		$json = json_decode($client->getResponse()->getContent(), true);
223
+		$this->assertEquals('basket', $json['data']['type']);
224 224
 
225 225
 		$content = '{"data": {"id": "delivery", "attributes": {"order.base.address.firstname": "test"}}}';
226
-		$client->request( 'POST', $json['links']['basket/address']['href'], [], [], [], $content );
227
-		$json = json_decode( $client->getResponse()->getContent(), true );
228
-		$this->assertEquals( 'basket/address', $json['included'][0]['type'] );
226
+		$client->request('POST', $json['links']['basket/address']['href'], [], [], [], $content);
227
+		$json = json_decode($client->getResponse()->getContent(), true);
228
+		$this->assertEquals('basket/address', $json['included'][0]['type']);
229 229
 
230
-		$client->request( 'DELETE', $json['included'][0]['links']['self']['href'] );
231
-		$json = json_decode( $client->getResponse()->getContent(), true );
232
-		$this->assertEquals( 0, count( $json['included'] ) );
230
+		$client->request('DELETE', $json['included'][0]['links']['self']['href']);
231
+		$json = json_decode($client->getResponse()->getContent(), true);
232
+		$this->assertEquals(0, count($json['included']));
233 233
 	}
234 234
 
235 235
 
@@ -237,31 +237,31 @@  discard block
 block discarded – undo
237 237
 	{
238 238
 		$client = static::createClient();
239 239
 
240
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
241
-		$json = json_decode( $client->getResponse()->getContent(), true );
242
-		$this->assertGreaterThan( 8, count( $json['meta']['resources'] ) );
240
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
241
+		$json = json_decode($client->getResponse()->getContent(), true);
242
+		$this->assertGreaterThan(8, count($json['meta']['resources']));
243 243
 
244 244
 		// product for code "CNC"
245
-		$client->request( 'GET', $json['meta']['resources']['product'], ['filter' => ['==' => ['product.code' => 'CNC']]] );
246
-		$json = json_decode( $client->getResponse()->getContent(), true );
247
-		$this->assertEquals( 1, count( $json['data'] ) );
245
+		$client->request('GET', $json['meta']['resources']['product'], ['filter' => ['==' => ['product.code' => 'CNC']]]);
246
+		$json = json_decode($client->getResponse()->getContent(), true);
247
+		$this->assertEquals(1, count($json['data']));
248 248
 
249 249
 		// add product "CNC" as prerequisite
250
-		$content = '{"data": {"attributes": {"product.id": ' . $json['data'][0]['id'] . '}}}';
251
-		$client->request( 'POST', $json['data'][0]['links']['basket/product']['href'], [], [], [], $content );
252
-		$json = json_decode( $client->getResponse()->getContent(), true );
253
-		$this->assertEquals( 'basket/product', $json['included'][0]['type'] );
250
+		$content = '{"data": {"attributes": {"product.id": '.$json['data'][0]['id'].'}}}';
251
+		$client->request('POST', $json['data'][0]['links']['basket/product']['href'], [], [], [], $content);
252
+		$json = json_decode($client->getResponse()->getContent(), true);
253
+		$this->assertEquals('basket/product', $json['included'][0]['type']);
254 254
 
255 255
 		// add coupon "GHIJ"
256 256
 		$content = '{"data": {"id": "GHIJ"}}';
257
-		$client->request( 'POST', $json['links']['basket/coupon']['href'], [], [], [], $content );
258
-		$json = json_decode( $client->getResponse()->getContent(), true );
259
-		$this->assertEquals( 'basket/coupon', $json['included'][2]['type'] );
257
+		$client->request('POST', $json['links']['basket/coupon']['href'], [], [], [], $content);
258
+		$json = json_decode($client->getResponse()->getContent(), true);
259
+		$this->assertEquals('basket/coupon', $json['included'][2]['type']);
260 260
 
261 261
 		// remove coupon "GHIJ" again
262
-		$client->request( 'DELETE', $json['included'][2]['links']['self']['href'] );
263
-		$json = json_decode( $client->getResponse()->getContent(), true );
264
-		$this->assertEquals( 1, count( $json['included'] ) );
262
+		$client->request('DELETE', $json['included'][2]['links']['self']['href']);
263
+		$json = json_decode($client->getResponse()->getContent(), true);
264
+		$this->assertEquals(1, count($json['included']));
265 265
 	}
266 266
 
267 267
 
@@ -269,28 +269,28 @@  discard block
 block discarded – undo
269 269
 	{
270 270
 		$client = static::createClient();
271 271
 
272
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
273
-		$json = json_decode( $client->getResponse()->getContent(), true );
274
-		$this->assertGreaterThan( 8, count( $json['meta']['resources'] ) );
272
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
273
+		$json = json_decode($client->getResponse()->getContent(), true);
274
+		$this->assertGreaterThan(8, count($json['meta']['resources']));
275 275
 
276 276
 		// product for code "CNC"
277
-		$client->request( 'GET', $json['meta']['resources']['product'], ['filter' => ['f_search' => 'ABCD']] );
278
-		$json = json_decode( $client->getResponse()->getContent(), true );
279
-		$this->assertEquals( 1, count( $json['data'] ) );
277
+		$client->request('GET', $json['meta']['resources']['product'], ['filter' => ['f_search' => 'ABCD']]);
278
+		$json = json_decode($client->getResponse()->getContent(), true);
279
+		$this->assertEquals(1, count($json['data']));
280 280
 
281
-		$content = '{"data": {"attributes": {"product.id": ' . $json['data'][0]['id'] . '}}}';
282
-		$client->request( 'POST', $json['data'][0]['links']['basket/product']['href'], [], [], [], $content );
283
-		$json = json_decode( $client->getResponse()->getContent(), true );
284
-		$this->assertEquals( 'basket/product', $json['included'][0]['type'] );
281
+		$content = '{"data": {"attributes": {"product.id": '.$json['data'][0]['id'].'}}}';
282
+		$client->request('POST', $json['data'][0]['links']['basket/product']['href'], [], [], [], $content);
283
+		$json = json_decode($client->getResponse()->getContent(), true);
284
+		$this->assertEquals('basket/product', $json['included'][0]['type']);
285 285
 
286 286
 		$content = '{"data": {"attributes": {"quantity": 2}}}';
287
-		$client->request( 'PATCH', $json['included'][0]['links']['self']['href'], [], [], [], $content );
288
-		$json = json_decode( $client->getResponse()->getContent(), true );
289
-		$this->assertEquals( 2, $json['included'][0]['attributes']['order.base.product.quantity'] );
287
+		$client->request('PATCH', $json['included'][0]['links']['self']['href'], [], [], [], $content);
288
+		$json = json_decode($client->getResponse()->getContent(), true);
289
+		$this->assertEquals(2, $json['included'][0]['attributes']['order.base.product.quantity']);
290 290
 
291
-		$client->request( 'DELETE', $json['included'][0]['links']['self']['href'] );
292
-		$json = json_decode( $client->getResponse()->getContent(), true );
293
-		$this->assertEquals( 0, count( $json['included'] ) );
291
+		$client->request('DELETE', $json['included'][0]['links']['self']['href']);
292
+		$json = json_decode($client->getResponse()->getContent(), true);
293
+		$this->assertEquals(0, count($json['included']));
294 294
 	}
295 295
 
296 296
 
@@ -298,14 +298,14 @@  discard block
 block discarded – undo
298 298
 	{
299 299
 		$client = static::createClient();
300 300
 
301
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
302
-		$json = json_decode( $client->getResponse()->getContent(), true );
303
-		$this->assertGreaterThan( 8, count( $json['meta']['resources'] ) );
301
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
302
+		$json = json_decode($client->getResponse()->getContent(), true);
303
+		$this->assertGreaterThan(8, count($json['meta']['resources']));
304 304
 
305 305
 		// payment services
306
-		$client->request( 'GET', $json['meta']['resources']['service'], ['filter' => ['cs_type' => 'payment']] );
307
-		$json = json_decode( $client->getResponse()->getContent(), true );
308
-		$this->assertEquals( 3, count( $json['data'] ) );
306
+		$client->request('GET', $json['meta']['resources']['service'], ['filter' => ['cs_type' => 'payment']]);
307
+		$json = json_decode($client->getResponse()->getContent(), true);
308
+		$this->assertEquals(3, count($json['data']));
309 309
 
310 310
 		$content = ['data' => ['id' => 'payment', 'attributes' => [
311 311
 			'service.id' => $json['data'][1]['id'],
@@ -314,15 +314,15 @@  discard block
 block discarded – undo
314 314
 			'directdebit.bankcode' => 'ABCDEFGH',
315 315
 			'directdebit.bankname' => 'test bank',
316 316
 		]]];
317
-		$client->request( 'POST', $json['data'][1]['links']['basket/service']['href'], [], [], [], json_encode( $content ) );
318
-		$json = json_decode( $client->getResponse()->getContent(), true );
319
-		$this->assertEquals( 'basket/service', $json['included'][0]['type'] );
320
-		$this->assertEquals( 'directdebit-test', $json['included'][0]['attributes']['order.base.service.code'] );
321
-		$this->assertEquals( 5, count( $json['included'][0]['attributes']['attribute'] ) );
322
-
323
-		$client->request( 'DELETE', $json['included'][0]['links']['self']['href'] );
324
-		$json = json_decode( $client->getResponse()->getContent(), true );
325
-		$this->assertEquals( 0, count( $json['included'] ) );
317
+		$client->request('POST', $json['data'][1]['links']['basket/service']['href'], [], [], [], json_encode($content));
318
+		$json = json_decode($client->getResponse()->getContent(), true);
319
+		$this->assertEquals('basket/service', $json['included'][0]['type']);
320
+		$this->assertEquals('directdebit-test', $json['included'][0]['attributes']['order.base.service.code']);
321
+		$this->assertEquals(5, count($json['included'][0]['attributes']['attribute']));
322
+
323
+		$client->request('DELETE', $json['included'][0]['links']['self']['href']);
324
+		$json = json_decode($client->getResponse()->getContent(), true);
325
+		$this->assertEquals(0, count($json['included']));
326 326
 	}
327 327
 
328 328
 
@@ -331,17 +331,17 @@  discard block
 block discarded – undo
331 331
 		$client = static::createClient(array(), array(
332 332
 			'PHP_AUTH_USER' => 'UTC001',
333 333
 			'PHP_AUTH_PW'   => 'unittest',
334
-		) );
334
+		));
335 335
 
336
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/customer', [] );
336
+		$client->request('GET', '/unittest/de/EUR/jsonapi/customer', []);
337 337
 		$response = $client->getResponse();
338 338
 
339
-		$json = json_decode( $response->getContent(), true );
339
+		$json = json_decode($response->getContent(), true);
340 340
 
341
-		$this->assertNotNull( $json );
342
-		$this->assertEquals( 200, $response->getStatusCode() );
343
-		$this->assertEquals( 1, $json['meta']['total'] );
344
-		$this->assertEquals( 4, count( $json['data'] ) );
341
+		$this->assertNotNull($json);
342
+		$this->assertEquals(200, $response->getStatusCode());
343
+		$this->assertEquals(1, $json['meta']['total']);
344
+		$this->assertEquals(4, count($json['data']));
345 345
 	}
346 346
 
347 347
 
@@ -350,22 +350,22 @@  discard block
 block discarded – undo
350 350
 		$client = static::createClient(array(), array(
351 351
 			'PHP_AUTH_USER' => 'UTC001',
352 352
 			'PHP_AUTH_PW'   => 'unittest',
353
-		) );
353
+		));
354 354
 
355
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/customer', [] );
355
+		$client->request('GET', '/unittest/de/EUR/jsonapi/customer', []);
356 356
 		$response = $client->getResponse();
357 357
 
358
-		$json = json_decode( $response->getContent(), true );
358
+		$json = json_decode($response->getContent(), true);
359 359
 
360
-		$client->request( 'GET', $json['links']['customer/address']['href'], [] );
360
+		$client->request('GET', $json['links']['customer/address']['href'], []);
361 361
 		$response = $client->getResponse();
362 362
 
363
-		$json = json_decode( $response->getContent(), true );
363
+		$json = json_decode($response->getContent(), true);
364 364
 
365
-		$this->assertNotNull( $json );
366
-		$this->assertEquals( 200, $response->getStatusCode() );
367
-		$this->assertEquals( 1, $json['meta']['total'] );
368
-		$this->assertEquals( 1, count( $json['data'] ) );
365
+		$this->assertNotNull($json);
366
+		$this->assertEquals(200, $response->getStatusCode());
367
+		$this->assertEquals(1, $json['meta']['total']);
368
+		$this->assertEquals(1, count($json['data']));
369 369
 	}
370 370
 
371 371
 
@@ -374,17 +374,17 @@  discard block
 block discarded – undo
374 374
 		$client = static::createClient(array(), array(
375 375
 			'PHP_AUTH_USER' => 'UTC001',
376 376
 			'PHP_AUTH_PW'   => 'unittest',
377
-		) );
377
+		));
378 378
 
379
-		$client->request( 'GET', '/unittest/de/EUR/jsonapi/order', [] );
379
+		$client->request('GET', '/unittest/de/EUR/jsonapi/order', []);
380 380
 		$response = $client->getResponse();
381 381
 
382
-		$json = json_decode( $response->getContent(), true );
382
+		$json = json_decode($response->getContent(), true);
383 383
 
384
-		$this->assertNotNull( $json );
385
-		$this->assertEquals( 200, $response->getStatusCode() );
386
-		$this->assertEquals( 5, $json['meta']['total'] );
387
-		$this->assertEquals( 5, count( $json['data'] ) );
384
+		$this->assertNotNull($json);
385
+		$this->assertEquals(200, $response->getStatusCode());
386
+		$this->assertEquals(5, $json['meta']['total']);
387
+		$this->assertEquals(5, count($json['data']));
388 388
 	}
389 389
 
390 390
 
@@ -392,63 +392,63 @@  discard block
 block discarded – undo
392 392
 	{
393 393
 		$client = static::createClient();
394 394
 
395
-		$client->request( 'OPTIONS', '/unittest/de/EUR/jsonapi' );
396
-		$optJson = json_decode( $client->getResponse()->getContent(), true );
397
-		$this->assertGreaterThan( 8, count( $optJson['meta']['resources'] ) );
395
+		$client->request('OPTIONS', '/unittest/de/EUR/jsonapi');
396
+		$optJson = json_decode($client->getResponse()->getContent(), true);
397
+		$this->assertGreaterThan(8, count($optJson['meta']['resources']));
398 398
 
399 399
 		// product for code "CNC"
400
-		$client->request( 'GET', $optJson['meta']['resources']['product'], ['filter' => ['==' => ['product.code' => 'CNC']]] );
401
-		$json = json_decode( $client->getResponse()->getContent(), true );
402
-		$this->assertEquals( 1, count( $json['data'] ) );
400
+		$client->request('GET', $optJson['meta']['resources']['product'], ['filter' => ['==' => ['product.code' => 'CNC']]]);
401
+		$json = json_decode($client->getResponse()->getContent(), true);
402
+		$this->assertEquals(1, count($json['data']));
403 403
 
404 404
 		// add product "CNC"
405
-		$content = '{"data": {"attributes": {"product.id": ' . $json['data'][0]['id'] . '}}}';
406
-		$client->request( 'POST', $json['data'][0]['links']['basket/product']['href'], [], [], [], $content );
407
-		$json = json_decode( $client->getResponse()->getContent(), true );
408
-		$this->assertEquals( 'basket/product', $json['included'][0]['type'] );
405
+		$content = '{"data": {"attributes": {"product.id": '.$json['data'][0]['id'].'}}}';
406
+		$client->request('POST', $json['data'][0]['links']['basket/product']['href'], [], [], [], $content);
407
+		$json = json_decode($client->getResponse()->getContent(), true);
408
+		$this->assertEquals('basket/product', $json['included'][0]['type']);
409 409
 
410 410
 		// delivery services
411
-		$client->request( 'GET', $optJson['meta']['resources']['service'], ['filter' => ['cs_type' => 'delivery']] );
412
-		$json = json_decode( $client->getResponse()->getContent(), true );
413
-		$this->assertEquals( 1, count( $json['data'] ) );
411
+		$client->request('GET', $optJson['meta']['resources']['service'], ['filter' => ['cs_type' => 'delivery']]);
412
+		$json = json_decode($client->getResponse()->getContent(), true);
413
+		$this->assertEquals(1, count($json['data']));
414 414
 
415 415
 		// add delivery service
416
-		$content = '{"data": {"id": "delivery", "attributes": {"service.id": ' . $json['data'][0]['id'] . '}}}';
417
-		$client->request( 'POST', $json['data'][0]['links']['basket/service']['href'], [], [], [], $content );
418
-		$json = json_decode( $client->getResponse()->getContent(), true );
419
-		$this->assertEquals( 'basket/service', $json['included'][1]['type'] );
416
+		$content = '{"data": {"id": "delivery", "attributes": {"service.id": '.$json['data'][0]['id'].'}}}';
417
+		$client->request('POST', $json['data'][0]['links']['basket/service']['href'], [], [], [], $content);
418
+		$json = json_decode($client->getResponse()->getContent(), true);
419
+		$this->assertEquals('basket/service', $json['included'][1]['type']);
420 420
 
421 421
 		// payment services
422
-		$client->request( 'GET', $optJson['meta']['resources']['service'], ['filter' => ['cs_type' => 'payment']] );
423
-		$json = json_decode( $client->getResponse()->getContent(), true );
424
-		$this->assertEquals( 3, count( $json['data'] ) );
422
+		$client->request('GET', $optJson['meta']['resources']['service'], ['filter' => ['cs_type' => 'payment']]);
423
+		$json = json_decode($client->getResponse()->getContent(), true);
424
+		$this->assertEquals(3, count($json['data']));
425 425
 
426 426
 		// add payment service
427
-		$content = '{"data": {"id": "payment", "attributes": {"service.id": ' . $json['data'][0]['id'] . '}}}';
428
-		$client->request( 'POST', $json['data'][0]['links']['basket/service']['href'], [], [], [], $content );
429
-		$json = json_decode( $client->getResponse()->getContent(), true );
430
-		$this->assertEquals( 'basket/service', $json['included'][2]['type'] );
427
+		$content = '{"data": {"id": "payment", "attributes": {"service.id": '.$json['data'][0]['id'].'}}}';
428
+		$client->request('POST', $json['data'][0]['links']['basket/service']['href'], [], [], [], $content);
429
+		$json = json_decode($client->getResponse()->getContent(), true);
430
+		$this->assertEquals('basket/service', $json['included'][2]['type']);
431 431
 
432 432
 		// add address
433 433
 		$content = '{"data": {"id": "payment", "attributes": {"order.base.address.firstname": "test"}}}';
434
-		$client->request( 'POST', $json['links']['basket/address']['href'], [], [], [], $content );
435
-		$json = json_decode( $client->getResponse()->getContent(), true );
436
-		$this->assertEquals( 'basket/address', $json['included'][3]['type'] );
434
+		$client->request('POST', $json['links']['basket/address']['href'], [], [], [], $content);
435
+		$json = json_decode($client->getResponse()->getContent(), true);
436
+		$this->assertEquals('basket/address', $json['included'][3]['type']);
437 437
 
438 438
 		// store basket
439
-		$client->request( 'POST', $json['data']['links']['self']['href'] );
440
-		$basketJson = json_decode( $client->getResponse()->getContent(), true );
441
-		$this->assertEquals( true, ctype_digit( $basketJson['data']['id'] ) );
439
+		$client->request('POST', $json['data']['links']['self']['href']);
440
+		$basketJson = json_decode($client->getResponse()->getContent(), true);
441
+		$this->assertEquals(true, ctype_digit($basketJson['data']['id']));
442 442
 
443 443
 		// add order
444
-		$content = '{"data": {"attributes": {"order.baseid": ' . $basketJson['data']['id'] . '}}}';
445
-		$client->request( 'POST', $basketJson['links']['order']['href'], [], [], [], $content );
446
-		$json = json_decode( $client->getResponse()->getContent(), true );
447
-		$this->assertEquals( true, ctype_digit( $json['data']['id'] ) );
444
+		$content = '{"data": {"attributes": {"order.baseid": '.$basketJson['data']['id'].'}}}';
445
+		$client->request('POST', $basketJson['links']['order']['href'], [], [], [], $content);
446
+		$json = json_decode($client->getResponse()->getContent(), true);
447
+		$this->assertEquals(true, ctype_digit($json['data']['id']));
448 448
 
449 449
 
450 450
 		// delete created order
451
-		$context = static::$kernel->getContainer()->get( 'aimeos_context' )->get();
452
-		\Aimeos\MShop\Factory::createManager( $context, 'order/base' )->deleteItem( $basketJson['data']['id'] );
451
+		$context = static::$kernel->getContainer()->get('aimeos_context')->get();
452
+		\Aimeos\MShop\Factory::createManager($context, 'order/base')->deleteItem($basketJson['data']['id']);
453 453
 	}
454 454
 }
Please login to merge, or discard this patch.
Tests/Controller/CatalogControllerTest.php 1 patch
Spacing   +130 added lines, -130 removed lines patch added patch discarded remove patch
@@ -11,312 +11,312 @@
 block discarded – undo
11 11
 	public function testCount()
12 12
 	{
13 13
 		$client = static::createClient();
14
-		$client->request( 'GET', '/unittest/de/EUR/count' );
14
+		$client->request('GET', '/unittest/de/EUR/count');
15 15
 		$content = $client->getResponse()->getContent();
16 16
 
17
-		$this->assertContains( '".catalog-filter-count li.cat-item"', $content );
18
-		$this->assertContains( '".catalog-filter-attribute .attribute-lists li.attr-item"', $content );
17
+		$this->assertContains('".catalog-filter-count li.cat-item"', $content);
18
+		$this->assertContains('".catalog-filter-attribute .attribute-lists li.attr-item"', $content);
19 19
 	}
20 20
 
21 21
 
22 22
 	public function testFilterSearch()
23 23
 	{
24 24
 		$client = static::createClient();
25
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
25
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
26 26
 
27
-		$this->assertEquals( 1, $crawler->filter( '.catalog-filter-search' )->count() );
27
+		$this->assertEquals(1, $crawler->filter('.catalog-filter-search')->count());
28 28
 
29
-		$form = $crawler->filter( '.catalog-filter-search button' )->form();
29
+		$form = $crawler->filter('.catalog-filter-search button')->form();
30 30
 		$form['f_search'] = 'Unit';
31
-		$crawler = $client->submit( $form );
31
+		$crawler = $client->submit($form);
32 32
 
33
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Test Selection")' )->count() );
34
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Empty Selection")' )->count() );
35
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->count() );
33
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Unittest: Test Selection")')->count());
34
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Unittest: Empty Selection")')->count());
35
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->count());
36 36
 	}
37 37
 
38 38
 
39 39
  	public function testFilterTree()
40 40
 	{
41 41
 		$client = static::createClient();
42
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
42
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
43 43
 
44
-		$this->assertEquals( 1, $crawler->filter( '.catalog-filter-tree' )->count() );
44
+		$this->assertEquals(1, $crawler->filter('.catalog-filter-tree')->count());
45 45
 
46
-		$link = $crawler->filter( '.catalog-filter-tree a.cat-item' )->link();
47
-		$crawler = $client->click( $link );
46
+		$link = $crawler->filter('.catalog-filter-tree a.cat-item')->link();
47
+		$crawler = $client->click($link);
48 48
 
49
-		$link = $crawler->filter( '.catalog-filter-tree .categories a.cat-item' )->link();
50
-		$crawler = $client->click( $link );
49
+		$link = $crawler->filter('.catalog-filter-tree .categories a.cat-item')->link();
50
+		$crawler = $client->click($link);
51 51
 
52
-		$link = $crawler->filter( '.catalog-filter-tree .coffee a.cat-item' )->link();
53
-		$crawler = $client->click( $link );
52
+		$link = $crawler->filter('.catalog-filter-tree .coffee a.cat-item')->link();
53
+		$crawler = $client->click($link);
54 54
 
55
-		$this->assertEquals( 3, $crawler->filter( '.catalog-stage-breadcrumb li' )->count() );
56
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-promo .product a:contains("Cafe Noire Expresso")' )->count() );
55
+		$this->assertEquals(3, $crawler->filter('.catalog-stage-breadcrumb li')->count());
56
+		$this->assertEquals(1, $crawler->filter('.catalog-list-promo .product a:contains("Cafe Noire Expresso")')->count());
57 57
 	}
58 58
 
59 59
 
60 60
 	public function testFilterAttribute()
61 61
 	{
62 62
 		$client = static::createClient();
63
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
63
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
64 64
 
65
-		$this->assertEquals( 1, $crawler->filter( '.catalog-filter-attribute' )->count() );
65
+		$this->assertEquals(1, $crawler->filter('.catalog-filter-attribute')->count());
66 66
 
67
-		$nodes = $crawler->filter( '.catalog-filter-attribute .attr-size span:contains("XS")' );
68
-		$id = $nodes->parents()->filter( '.attr-item' )->attr( 'data-id');
67
+		$nodes = $crawler->filter('.catalog-filter-attribute .attr-size span:contains("XS")');
68
+		$id = $nodes->parents()->filter('.attr-item')->attr('data-id');
69 69
 
70
-		$form = $crawler->filter( '.catalog-filter .btn-primary' )->form();
70
+		$form = $crawler->filter('.catalog-filter .btn-primary')->form();
71 71
 		$values = $form->getPhpValues();
72
-		$values['f_attrid'] = array( $id );
73
-		$crawler = $client->request( $form->getMethod(), $form->getUri(), $values, $form->getPhpFiles() );
72
+		$values['f_attrid'] = array($id);
73
+		$crawler = $client->request($form->getMethod(), $form->getUri(), $values, $form->getPhpFiles());
74 74
 
75
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Expresso")' )->count() );
76
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Cappuccino")' )->count() );
75
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Expresso")')->count());
76
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Cappuccino")')->count());
77 77
 	}
78 78
 
79 79
 
80 80
 	public function testStageBreadcrumb()
81 81
 	{
82 82
 		$client = static::createClient();
83
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
83
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
84 84
 
85
-		$link = $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Expresso")' )->link();
86
-		$crawler = $client->click( $link );
85
+		$link = $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Expresso")')->link();
86
+		$crawler = $client->click($link);
87 87
 
88
-		$this->assertEquals( 1, $crawler->filter( '.catalog-stage-breadcrumb li' )->count() );
88
+		$this->assertEquals(1, $crawler->filter('.catalog-stage-breadcrumb li')->count());
89 89
 
90
-		$link = $crawler->filter( '.catalog-stage-breadcrumb a' )->link();
91
-		$crawler = $client->click( $link );
90
+		$link = $crawler->filter('.catalog-stage-breadcrumb a')->link();
91
+		$crawler = $client->click($link);
92 92
 
93
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list' )->count() );
94
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Expresso")' )->count() );
95
-		$this->assertEquals( 1, $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Cappuccino")' )->count() );
93
+		$this->assertEquals(1, $crawler->filter('.catalog-list')->count());
94
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Expresso")')->count());
95
+		$this->assertEquals(1, $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Cappuccino")')->count());
96 96
 	}
97 97
 
98 98
 
99 99
 	public function testStageNavigator()
100 100
 	{
101 101
 		$client = static::createClient();
102
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
102
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
103 103
 
104
-		$link = $crawler->filter( '.catalog-list .pagination .option-name' )->link();
105
-		$crawler = $client->click( $link );
104
+		$link = $crawler->filter('.catalog-list .pagination .option-name')->link();
105
+		$crawler = $client->click($link);
106 106
 
107
-		$link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link();
108
-		$crawler = $client->click( $link );
107
+		$link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link();
108
+		$crawler = $client->click($link);
109 109
 
110
-		$this->assertEquals( 1, $crawler->filter( '.catalog-detail' )->count() );
111
-		$this->assertEquals( 1, $crawler->filter( '.catalog-detail:contains("Unittest: Bundle")' )->count() );
110
+		$this->assertEquals(1, $crawler->filter('.catalog-detail')->count());
111
+		$this->assertEquals(1, $crawler->filter('.catalog-detail:contains("Unittest: Bundle")')->count());
112 112
 
113
-		$link = $crawler->filter( '.catalog-stage-navigator a.next' )->link();
114
-		$crawler = $client->click( $link );
113
+		$link = $crawler->filter('.catalog-stage-navigator a.next')->link();
114
+		$crawler = $client->click($link);
115 115
 
116
-		$this->assertEquals( 1, $crawler->filter( '.catalog-detail' )->count() );
117
-		$this->assertEquals( 1, $crawler->filter( '.catalog-detail:contains("Unittest: Empty Selection")' )->count() );
116
+		$this->assertEquals(1, $crawler->filter('.catalog-detail')->count());
117
+		$this->assertEquals(1, $crawler->filter('.catalog-detail:contains("Unittest: Empty Selection")')->count());
118 118
 
119
-		$link = $crawler->filter( '.catalog-stage-navigator a.prev' )->link();
120
-		$crawler = $client->click( $link );
119
+		$link = $crawler->filter('.catalog-stage-navigator a.prev')->link();
120
+		$crawler = $client->click($link);
121 121
 
122
-		$this->assertEquals( 1, $crawler->filter( '.catalog-detail' )->count() );
123
-		$this->assertEquals( 1, $crawler->filter( '.catalog-detail:contains("Unittest: Bundle")' )->count() );
122
+		$this->assertEquals(1, $crawler->filter('.catalog-detail')->count());
123
+		$this->assertEquals(1, $crawler->filter('.catalog-detail:contains("Unittest: Bundle")')->count());
124 124
 	}
125 125
 
126 126
 
127 127
 	public function testListSortationName()
128 128
 	{
129 129
 		$client = static::createClient();
130
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
130
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
131 131
 
132
-		$link = $crawler->filter( '.catalog-list .pagination .option-name' )->link();
133
-		$crawler = $client->click( $link );
132
+		$link = $crawler->filter('.catalog-list .pagination .option-name')->link();
133
+		$crawler = $client->click($link);
134 134
 
135
-		$products = $crawler->filter( '.catalog-list-items .product' );
136
-		$this->assertEquals( 1, $products->eq( 0 )->filter( 'h2:contains("16 discs")' )->count() );
137
-		$this->assertEquals( 1, $products->eq( 1 )->filter( 'h2:contains("Cafe Noire Cappuccino")' )->count() );
138
-		$this->assertEquals( 1, $products->eq( 2 )->filter( 'h2:contains("Cafe Noire Expresso")' )->count() );
139
-		$this->assertEquals( 1, $products->eq( 3 )->filter( 'h2:contains("Unittest: Bundle")' )->count() );
140
-		$this->assertEquals( 1, $products->eq( 4 )->filter( 'h2:contains("Unittest: Empty Selection")' )->count() );
135
+		$products = $crawler->filter('.catalog-list-items .product');
136
+		$this->assertEquals(1, $products->eq(0)->filter('h2:contains("16 discs")')->count());
137
+		$this->assertEquals(1, $products->eq(1)->filter('h2:contains("Cafe Noire Cappuccino")')->count());
138
+		$this->assertEquals(1, $products->eq(2)->filter('h2:contains("Cafe Noire Expresso")')->count());
139
+		$this->assertEquals(1, $products->eq(3)->filter('h2:contains("Unittest: Bundle")')->count());
140
+		$this->assertEquals(1, $products->eq(4)->filter('h2:contains("Unittest: Empty Selection")')->count());
141 141
 
142
-		$link = $crawler->filter( '.catalog-list .pagination .option-name' )->link();
143
-		$crawler = $client->click( $link );
142
+		$link = $crawler->filter('.catalog-list .pagination .option-name')->link();
143
+		$crawler = $client->click($link);
144 144
 
145
-		$products = $crawler->filter( '.catalog-list-items .product' );
145
+		$products = $crawler->filter('.catalog-list-items .product');
146 146
 		$count = $products->count();
147 147
 
148
-		$this->assertGreaterThan( 2, $count );
149
-		$this->assertEquals( 1, $products->eq( $count - 1 )->filter( 'h2:contains("16 discs")' )->count() );
150
-		$this->assertEquals( 1, $products->eq( $count - 2 )->filter( 'h2:contains("Cafe Noire Cappuccino")' )->count() );
148
+		$this->assertGreaterThan(2, $count);
149
+		$this->assertEquals(1, $products->eq($count - 1)->filter('h2:contains("16 discs")')->count());
150
+		$this->assertEquals(1, $products->eq($count - 2)->filter('h2:contains("Cafe Noire Cappuccino")')->count());
151 151
 	}
152 152
 
153 153
 
154 154
 	public function testListSortationPrice()
155 155
 	{
156 156
 		$client = static::createClient();
157
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
157
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
158 158
 
159
-		$link = $crawler->filter( '.catalog-list .pagination .option-price' )->link();
160
-		$crawler = $client->click( $link );
159
+		$link = $crawler->filter('.catalog-list .pagination .option-price')->link();
160
+		$crawler = $client->click($link);
161 161
 
162
-		$products = $crawler->filter( '.catalog-list-items .product' );
162
+		$products = $crawler->filter('.catalog-list-items .product');
163 163
 		$count = $products->count();
164 164
 
165
-		$this->assertGreaterThan( 2, $count );
166
-		$this->assertEquals( 1, $products->eq( $count - 2 )->filter( '.value:contains("600.00 €")' )->count() );
167
-		$this->assertEquals( 1, $products->eq( $count - 1 )->filter( '.value:contains("600.00 €")' )->count() );
165
+		$this->assertGreaterThan(2, $count);
166
+		$this->assertEquals(1, $products->eq($count - 2)->filter('.value:contains("600.00 €")')->count());
167
+		$this->assertEquals(1, $products->eq($count - 1)->filter('.value:contains("600.00 €")')->count());
168 168
 
169
-		$link = $crawler->filter( '.catalog-list .pagination .option-price' )->link();
170
-		$crawler = $client->click( $link );
169
+		$link = $crawler->filter('.catalog-list .pagination .option-price')->link();
170
+		$crawler = $client->click($link);
171 171
 
172
-		$products = $crawler->filter( '.catalog-list-items .product' );
173
-		$this->assertEquals( 1, $products->eq( 0 )->filter( '.value:contains("600.00 €")' )->count() );
174
-		$this->assertEquals( 1, $products->eq( 1 )->filter( '.value:contains("600.00 €")' )->count() );
172
+		$products = $crawler->filter('.catalog-list-items .product');
173
+		$this->assertEquals(1, $products->eq(0)->filter('.value:contains("600.00 €")')->count());
174
+		$this->assertEquals(1, $products->eq(1)->filter('.value:contains("600.00 €")')->count());
175 175
 	}
176 176
 
177 177
 
178 178
 	public function testDetailPinned()
179 179
 	{
180 180
 		$client = static::createClient();
181
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
181
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
182 182
 
183
-		$link = $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Expresso")' )->link();
184
-		$crawler = $client->click( $link );
183
+		$link = $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Expresso")')->link();
184
+		$crawler = $client->click($link);
185 185
 
186
-		$link = $crawler->filter( '.catalog-detail a.actions-button-pin' )->link();
187
-		$crawler = $client->click( $link );
186
+		$link = $crawler->filter('.catalog-detail a.actions-button-pin')->link();
187
+		$crawler = $client->click($link);
188 188
 
189
-		$this->assertEquals( 1, $crawler->filter( '.catalog-session-pinned .pinned-item' )->count() );
189
+		$this->assertEquals(1, $crawler->filter('.catalog-session-pinned .pinned-item')->count());
190 190
 	}
191 191
 
192 192
 
193 193
 	public function testDetailLastSeen()
194 194
 	{
195 195
 		$client = static::createClient();
196
-		$crawler = $client->request( 'GET', '/unittest/de/EUR/list' );
196
+		$crawler = $client->request('GET', '/unittest/de/EUR/list');
197 197
 
198
-		$link = $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Expresso")' )->link();
199
-		$crawler = $client->click( $link );
198
+		$link = $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Expresso")')->link();
199
+		$crawler = $client->click($link);
200 200
 
201
-		$this->assertEquals( 1, $crawler->filter( '.catalog-session-seen .seen-item' )->count() );
201
+		$this->assertEquals(1, $crawler->filter('.catalog-session-seen .seen-item')->count());
202 202
 	}
203 203
 
204 204
 
205 205
 	public function testSuggest()
206 206
 	{
207 207
 		$client = static::createClient();
208
-		$client->request( 'GET', '/unittest/de/EUR/suggest', array( 'f_search' => 'unit' ) );
208
+		$client->request('GET', '/unittest/de/EUR/suggest', array('f_search' => 'unit'));
209 209
 		$content = $client->getResponse()->getContent();
210 210
 
211
-		$this->assertStringStartsWith( '[{', $content );
211
+		$this->assertStringStartsWith('[{', $content);
212 212
 	}
213 213
 
214 214
 
215 215
 	public function testStock()
216 216
 	{
217 217
 		$client = static::createClient();
218
-		$client->request( 'GET', '/unittest/de/EUR/stock' );
218
+		$client->request('GET', '/unittest/de/EUR/stock');
219 219
 		$content = $client->getResponse()->getContent();
220 220
 
221
-		$this->assertContains( '.aimeos .product .stock', $content );
222
-		$this->assertContains( '.aimeos .catalog-detail-basket', $content );
221
+		$this->assertContains('.aimeos .product .stock', $content);
222
+		$this->assertContains('.aimeos .catalog-detail-basket', $content);
223 223
 	}
224 224
 
225 225
 
226 226
 	public function testCountComponent()
227 227
 	{
228
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
229
-			->setMethods( array( 'getOutput' ) )
228
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
229
+			->setMethods(array('getOutput'))
230 230
 			->disableOriginalConstructor()
231 231
 			->getMock();
232 232
 
233
-		$response = Response::create( 'test' );
234
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
233
+		$response = Response::create('test');
234
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
235 235
 
236
-		$this->assertSame( $response, $mock->countComponentAction() );
236
+		$this->assertSame($response, $mock->countComponentAction());
237 237
 	}
238 238
 
239 239
 
240 240
 	public function testDetailComponent()
241 241
 	{
242
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
243
-			->setMethods( array( 'getOutput' ) )
242
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
243
+			->setMethods(array('getOutput'))
244 244
 			->disableOriginalConstructor()
245 245
 			->getMock();
246 246
 
247
-		$response = Response::create( 'test' );
248
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
247
+		$response = Response::create('test');
248
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
249 249
 
250
-		$this->assertSame( $response, $mock->detailComponentAction() );
250
+		$this->assertSame($response, $mock->detailComponentAction());
251 251
 	}
252 252
 
253 253
 
254 254
 	public function testFilterComponent()
255 255
 	{
256
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
257
-			->setMethods( array( 'getOutput' ) )
256
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
257
+			->setMethods(array('getOutput'))
258 258
 			->disableOriginalConstructor()
259 259
 			->getMock();
260 260
 
261
-		$response = Response::create( 'test' );
262
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
261
+		$response = Response::create('test');
262
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
263 263
 
264
-		$this->assertSame( $response, $mock->filterComponentAction() );
264
+		$this->assertSame($response, $mock->filterComponentAction());
265 265
 	}
266 266
 
267 267
 
268 268
 	public function testListComponent()
269 269
 	{
270
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
271
-			->setMethods( array( 'getOutput' ) )
270
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
271
+			->setMethods(array('getOutput'))
272 272
 			->disableOriginalConstructor()
273 273
 			->getMock();
274 274
 
275
-		$response = Response::create( 'test' );
276
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
275
+		$response = Response::create('test');
276
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
277 277
 
278
-		$this->assertSame( $response, $mock->listComponentAction() );
278
+		$this->assertSame($response, $mock->listComponentAction());
279 279
 	}
280 280
 
281 281
 
282 282
 	public function testSessionComponent()
283 283
 	{
284
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
285
-			->setMethods( array( 'getOutput' ) )
284
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
285
+			->setMethods(array('getOutput'))
286 286
 			->disableOriginalConstructor()
287 287
 			->getMock();
288 288
 
289
-		$response = Response::create( 'test' );
290
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
289
+		$response = Response::create('test');
290
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
291 291
 
292
-		$this->assertSame( $response, $mock->sessionComponentAction() );
292
+		$this->assertSame($response, $mock->sessionComponentAction());
293 293
 	}
294 294
 
295 295
 
296 296
 	public function testStageComponent()
297 297
 	{
298
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
299
-			->setMethods( array( 'getOutput' ) )
298
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
299
+			->setMethods(array('getOutput'))
300 300
 			->disableOriginalConstructor()
301 301
 			->getMock();
302 302
 
303
-		$response = Response::create( 'test' );
304
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
303
+		$response = Response::create('test');
304
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
305 305
 
306
-		$this->assertSame( $response, $mock->stageComponentAction() );
306
+		$this->assertSame($response, $mock->stageComponentAction());
307 307
 	}
308 308
 
309 309
 
310 310
 	public function testStockComponent()
311 311
 	{
312
-		$mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\CatalogController' )
313
-			->setMethods( array( 'getOutput' ) )
312
+		$mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\CatalogController')
313
+			->setMethods(array('getOutput'))
314 314
 			->disableOriginalConstructor()
315 315
 			->getMock();
316 316
 
317
-		$response = Response::create( 'test' );
318
-		$mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( $response ) );
317
+		$response = Response::create('test');
318
+		$mock->expects($this->once())->method('getOutput')->will($this->returnValue($response));
319 319
 
320
-		$this->assertSame( $response, $mock->stockComponentAction() );
320
+		$this->assertSame($response, $mock->stockComponentAction());
321 321
 	}
322 322
 }
Please login to merge, or discard this patch.
Command/SetupCommand.php 1 patch
Spacing   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	protected function configure()
34 34
 	{
35
-		$this->setName( self::$defaultName );
36
-		$this->setDescription( 'Initialize or update the Aimeos database tables' );
37
-		$this->addArgument( 'site', InputArgument::OPTIONAL, 'Site for updating database entries', 'default' );
38
-		$this->addArgument( 'tplsite', InputArgument::OPTIONAL, 'Template site for creating or updating database entries', 'default' );
39
-		$this->addOption( 'option', null, InputOption::VALUE_REQUIRED, 'Optional setup configuration, name and value are separated by ":" like "setup/default/demo:1"', array() );
40
-		$this->addOption( 'action', null, InputOption::VALUE_REQUIRED, 'Action name that should be executed, i.e. "migrate", "rollback", "clean"', 'migrate' );
41
-		$this->addOption( 'task', null, InputOption::VALUE_REQUIRED, 'Name of the setup task that should be executed', null );
35
+		$this->setName(self::$defaultName);
36
+		$this->setDescription('Initialize or update the Aimeos database tables');
37
+		$this->addArgument('site', InputArgument::OPTIONAL, 'Site for updating database entries', 'default');
38
+		$this->addArgument('tplsite', InputArgument::OPTIONAL, 'Template site for creating or updating database entries', 'default');
39
+		$this->addOption('option', null, InputOption::VALUE_REQUIRED, 'Optional setup configuration, name and value are separated by ":" like "setup/default/demo:1"', array());
40
+		$this->addOption('action', null, InputOption::VALUE_REQUIRED, 'Action name that should be executed, i.e. "migrate", "rollback", "clean"', 'migrate');
41
+		$this->addOption('task', null, InputOption::VALUE_REQUIRED, 'Name of the setup task that should be executed', null);
42 42
 	}
43 43
 
44 44
 
@@ -48,41 +48,41 @@  discard block
 block discarded – undo
48 48
 	 * @param InputInterface $input Input object
49 49
 	 * @param OutputInterface $output Output object
50 50
 	 */
51
-	protected function execute( InputInterface $input, OutputInterface $output )
51
+	protected function execute(InputInterface $input, OutputInterface $output)
52 52
 	{
53
-		$ctx = $this->getContainer()->get( 'aimeos_context' )->get( false, 'command' );
54
-		$ctx->setEditor( 'aimeos:setup' );
53
+		$ctx = $this->getContainer()->get('aimeos_context')->get(false, 'command');
54
+		$ctx->setEditor('aimeos:setup');
55 55
 
56 56
 		$config = $ctx->getConfig();
57
-		$site = $input->getArgument( 'site' );
58
-		$tplsite = $input->getArgument( 'tplsite' );
57
+		$site = $input->getArgument('site');
58
+		$tplsite = $input->getArgument('tplsite');
59 59
 
60
-		$config->set( 'setup/site', $site );
61
-		$dbconfig = $this->getDbConfig( $config );
62
-		$this->setOptions( $config, $input );
60
+		$config->set('setup/site', $site);
61
+		$dbconfig = $this->getDbConfig($config);
62
+		$this->setOptions($config, $input);
63 63
 
64
-		$taskPaths = $this->getContainer()->get( 'aimeos' )->get()->getSetupPaths( $tplsite );
65
-		$manager = new \Aimeos\MW\Setup\Manager\Multiple( $ctx->getDatabaseManager(), $dbconfig, $taskPaths, $ctx );
64
+		$taskPaths = $this->getContainer()->get('aimeos')->get()->getSetupPaths($tplsite);
65
+		$manager = new \Aimeos\MW\Setup\Manager\Multiple($ctx->getDatabaseManager(), $dbconfig, $taskPaths, $ctx);
66 66
 
67
-		$output->writeln( sprintf( 'Initializing or updating the Aimeos database tables for site <info>%1$s</info>', $site ) );
67
+		$output->writeln(sprintf('Initializing or updating the Aimeos database tables for site <info>%1$s</info>', $site));
68 68
 
69
-		if( ( $task = $input->getOption( 'task' ) ) && is_array( $task ) ) {
70
-			$task = reset( $task );
69
+		if (($task = $input->getOption('task')) && is_array($task)) {
70
+			$task = reset($task);
71 71
 		}
72 72
 
73
-		switch( $input->getOption( 'action' ) )
73
+		switch ($input->getOption('action'))
74 74
 		{
75 75
 			case 'migrate':
76
-				$manager->migrate( $task );
76
+				$manager->migrate($task);
77 77
 				break;
78 78
 			case 'rollback':
79
-				$manager->rollback( $task );
79
+				$manager->rollback($task);
80 80
 				break;
81 81
 			case 'clean':
82
-				$manager->clean( $task );
82
+				$manager->clean($task);
83 83
 				break;
84 84
 			default:
85
-				throw new \Exception( sprintf( 'Invalid setup action "%1$s"', $input->getOption( 'action' ) ) );
85
+				throw new \Exception(sprintf('Invalid setup action "%1$s"', $input->getOption('action')));
86 86
 		}
87 87
 	}
88 88
 
@@ -93,14 +93,14 @@  discard block
 block discarded – undo
93 93
 	 * @param \Aimeos\MW\Config\Iface $conf Config object
94 94
 	 * @return array Multi-dimensional associative list of database configuration parameters
95 95
 	 */
96
-	protected function getDbConfig( \Aimeos\MW\Config\Iface $conf )
96
+	protected function getDbConfig(\Aimeos\MW\Config\Iface $conf)
97 97
 	{
98
-		$dbconfig = $conf->get( 'resource', array() );
98
+		$dbconfig = $conf->get('resource', array());
99 99
 
100
-		foreach( $dbconfig as $rname => $dbconf )
100
+		foreach ($dbconfig as $rname => $dbconf)
101 101
 		{
102
-			if( strncmp( $rname, 'db', 2 ) !== 0 ) {
103
-				unset( $dbconfig[$rname] );
102
+			if (strncmp($rname, 'db', 2) !== 0) {
103
+				unset($dbconfig[$rname]);
104 104
 			}
105 105
 		}
106 106
 
@@ -116,12 +116,12 @@  discard block
 block discarded – undo
116 116
 	 * @param array Associative list of database configurations
117 117
 	 * @throws \RuntimeException If the format of the options is invalid
118 118
 	 */
119
-	protected function setOptions( \Aimeos\MW\Config\Iface $conf, InputInterface $input )
119
+	protected function setOptions(\Aimeos\MW\Config\Iface $conf, InputInterface $input)
120 120
 	{
121
-		foreach( (array) $input->getOption( 'option' ) as $option )
121
+		foreach ((array) $input->getOption('option') as $option)
122 122
 		{
123
-			list( $name, $value ) = explode( ':', $option );
124
-			$conf->set( str_replace( '\\', '/', $name ), $value );
123
+			list($name, $value) = explode(':', $option);
124
+			$conf->set(str_replace('\\', '/', $name), $value);
125 125
 		}
126 126
 	}
127 127
 }
Please login to merge, or discard this patch.
Command/CacheCommand.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -31,9 +31,9 @@  discard block
 block discarded – undo
31 31
 	 */
32 32
 	protected function configure()
33 33
 	{
34
-		$this->setName( self::$defaultName );
35
-		$this->setDescription( 'Clears the content cache' );
36
-		$this->addArgument( 'site', InputArgument::OPTIONAL, 'Site codes to clear the cache like "default unittest" (none for all)' );
34
+		$this->setName(self::$defaultName);
35
+		$this->setDescription('Clears the content cache');
36
+		$this->addArgument('site', InputArgument::OPTIONAL, 'Site codes to clear the cache like "default unittest" (none for all)');
37 37
 	}
38 38
 
39 39
 
@@ -43,26 +43,26 @@  discard block
 block discarded – undo
43 43
 	 * @param InputInterface $input Input object
44 44
 	 * @param OutputInterface $output Output object
45 45
 	 */
46
-	protected function execute( InputInterface $input, OutputInterface $output )
46
+	protected function execute(InputInterface $input, OutputInterface $output)
47 47
 	{
48
-		$context = $this->getContainer()->get( 'aimeos_context' )->get( false, 'command' );
49
-		$context->setEditor( 'aimeos:cache' );
48
+		$context = $this->getContainer()->get('aimeos_context')->get(false, 'command');
49
+		$context->setEditor('aimeos:cache');
50 50
 
51
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
51
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
52 52
 
53
-		foreach( $this->getSiteItems( $context, $input ) as $siteItem )
53
+		foreach ($this->getSiteItems($context, $input) as $siteItem)
54 54
 		{
55
-			$localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false );
55
+			$localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false);
56 56
 
57 57
 			$lcontext = clone $context;
58
-			$lcontext->setLocale( $localeItem );
58
+			$lcontext->setLocale($localeItem);
59 59
 
60
-			$cache = new \Aimeos\MAdmin\Cache\Proxy\Standard( $lcontext );
61
-			$lcontext->setCache( $cache );
60
+			$cache = new \Aimeos\MAdmin\Cache\Proxy\Standard($lcontext);
61
+			$lcontext->setCache($cache);
62 62
 
63
-			$output->writeln( sprintf( 'Clearing the Aimeos cache for site <info>%1$s</info>', $siteItem->getCode() ) );
63
+			$output->writeln(sprintf('Clearing the Aimeos cache for site <info>%1$s</info>', $siteItem->getCode()));
64 64
 
65
-			\Aimeos\MAdmin\Cache\Manager\Factory::createManager( $lcontext )->getCache()->clear();
65
+			\Aimeos\MAdmin\Cache\Manager\Factory::createManager($lcontext)->getCache()->clear();
66 66
 		}
67 67
 	}
68 68
 }
Please login to merge, or discard this patch.
Command/JobsCommand.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -32,19 +32,19 @@  discard block
 block discarded – undo
32 32
 	protected function configure()
33 33
 	{
34 34
 		$names = '';
35
-		$aimeos = new \Aimeos\Bootstrap( array() );
36
-		$cntlPaths = $aimeos->getCustomPaths( 'controller/jobs' );
37
-		$controllers = \Aimeos\Controller\Jobs\Factory::getControllers( $this->getBareContext(), $aimeos, $cntlPaths );
35
+		$aimeos = new \Aimeos\Bootstrap(array());
36
+		$cntlPaths = $aimeos->getCustomPaths('controller/jobs');
37
+		$controllers = \Aimeos\Controller\Jobs\Factory::getControllers($this->getBareContext(), $aimeos, $cntlPaths);
38 38
 
39
-		foreach( $controllers as $key => $controller ) {
40
-			$names .= str_pad( $key, 30 ) . $controller->getName() . PHP_EOL;
39
+		foreach ($controllers as $key => $controller) {
40
+			$names .= str_pad($key, 30).$controller->getName().PHP_EOL;
41 41
 		}
42 42
 
43
-		$this->setName( self::$defaultName );
44
-		$this->setDescription( 'Executes the job controllers' );
45
-		$this->addArgument( 'jobs', InputArgument::REQUIRED, 'One or more job controller names like "admin/job customer/email/watch"' );
46
-		$this->addArgument( 'site', InputArgument::OPTIONAL, 'Site codes to execute the jobs for like "default unittest" (none for all)' );
47
-		$this->setHelp( "Available jobs are:\n" . $names );
43
+		$this->setName(self::$defaultName);
44
+		$this->setDescription('Executes the job controllers');
45
+		$this->addArgument('jobs', InputArgument::REQUIRED, 'One or more job controller names like "admin/job customer/email/watch"');
46
+		$this->addArgument('site', InputArgument::OPTIONAL, 'Site codes to execute the jobs for like "default unittest" (none for all)');
47
+		$this->setHelp("Available jobs are:\n".$names);
48 48
 	}
49 49
 
50 50
 
@@ -54,32 +54,32 @@  discard block
 block discarded – undo
54 54
 	 * @param InputInterface $input Input object
55 55
 	 * @param OutputInterface $output Output object
56 56
 	 */
57
-	protected function execute( InputInterface $input, OutputInterface $output )
57
+	protected function execute(InputInterface $input, OutputInterface $output)
58 58
 	{
59 59
 		$context = $this->getContext();
60 60
 		$process = $context->getProcess();
61
-		$aimeos = $this->getContainer()->get( 'aimeos' )->get();
61
+		$aimeos = $this->getContainer()->get('aimeos')->get();
62 62
 
63
-		$jobs = explode( ' ', $input->getArgument( 'jobs' ) );
64
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
63
+		$jobs = explode(' ', $input->getArgument('jobs'));
64
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
65 65
 
66
-		foreach( $this->getSiteItems( $context, $input ) as $siteItem )
66
+		foreach ($this->getSiteItems($context, $input) as $siteItem)
67 67
 		{
68
-			$localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false );
69
-			$localeItem->setLanguageId( null );
70
-			$localeItem->setCurrencyId( null );
68
+			$localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false);
69
+			$localeItem->setLanguageId(null);
70
+			$localeItem->setCurrencyId(null);
71 71
 
72
-			$context->setLocale( $localeItem );
72
+			$context->setLocale($localeItem);
73 73
 
74
-			$output->writeln( sprintf( 'Executing the Aimeos jobs for "<info>%s</info>"', $siteItem->getCode() ) );
74
+			$output->writeln(sprintf('Executing the Aimeos jobs for "<info>%s</info>"', $siteItem->getCode()));
75 75
 
76
-			foreach( $jobs as $jobname )
76
+			foreach ($jobs as $jobname)
77 77
 			{
78
-				$fcn = function( $context, $aimeos, $jobname ) {
79
-					\Aimeos\Controller\Jobs\Factory::createController( $context, $aimeos, $jobname )->run();
78
+				$fcn = function($context, $aimeos, $jobname) {
79
+					\Aimeos\Controller\Jobs\Factory::createController($context, $aimeos, $jobname)->run();
80 80
 				};
81 81
 
82
-				$process->start( $fcn, [$context, $aimeos, $jobname], true );
82
+				$process->start($fcn, [$context, $aimeos, $jobname], true);
83 83
 			}
84 84
 		}
85 85
 
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
 	{
97 97
 		$ctx = new \Aimeos\MShop\Context\Item\Standard();
98 98
 
99
-		$conf = new \Aimeos\MW\Config\PHPArray( array(), array() );
100
-		$ctx->setConfig( $conf );
99
+		$conf = new \Aimeos\MW\Config\PHPArray(array(), array());
100
+		$ctx->setConfig($conf);
101 101
 
102
-		$locale = \Aimeos\MShop\Factory::createManager( $ctx, 'locale' )->createItem();
103
-		$locale->setLanguageId( 'en' );
104
-		$ctx->setLocale( $locale );
102
+		$locale = \Aimeos\MShop\Factory::createManager($ctx, 'locale')->createItem();
103
+		$locale->setLanguageId('en');
104
+		$ctx->setLocale($locale);
105 105
 
106
-		$i18n = new \Aimeos\MW\Translation\None( 'en' );
107
-		$ctx->setI18n( array( 'en' => $i18n ) );
106
+		$i18n = new \Aimeos\MW\Translation\None('en');
107
+		$ctx->setI18n(array('en' => $i18n));
108 108
 
109 109
 		return $ctx;
110 110
 	}
@@ -119,19 +119,19 @@  discard block
 block discarded – undo
119 119
 	{
120 120
 		$container = $this->getContainer();
121 121
 		$aimeos = $container->get('aimeos')->get();
122
-		$context = $container->get( 'aimeos_context' )->get( false, 'command' );
122
+		$context = $container->get('aimeos_context')->get(false, 'command');
123 123
 
124
-		$tmplPaths = $aimeos->getCustomPaths( 'controller/jobs/templates' );
125
-		$tmplPaths = array_merge( $tmplPaths, $aimeos->getCustomPaths( 'client/html/templates' ) );
126
-		$view = $container->get('aimeos_view')->create( $context, $tmplPaths );
124
+		$tmplPaths = $aimeos->getCustomPaths('controller/jobs/templates');
125
+		$tmplPaths = array_merge($tmplPaths, $aimeos->getCustomPaths('client/html/templates'));
126
+		$view = $container->get('aimeos_view')->create($context, $tmplPaths);
127 127
 
128
-		$langManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context )->getSubManager( 'language' );
129
-		$langids = array_keys( $langManager->searchItems( $langManager->createSearch( true ) ) );
130
-		$i18n = $this->getContainer()->get( 'aimeos_i18n' )->get( $langids );
128
+		$langManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context)->getSubManager('language');
129
+		$langids = array_keys($langManager->searchItems($langManager->createSearch(true)));
130
+		$i18n = $this->getContainer()->get('aimeos_i18n')->get($langids);
131 131
 
132
-		$context->setEditor( 'aimeos:jobs' );
133
-		$context->setView( $view );
134
-		$context->setI18n( $i18n );
132
+		$context->setEditor('aimeos:jobs');
133
+		$context->setView($view);
134
+		$context->setI18n($i18n);
135 135
 
136 136
 		return $context;
137 137
 	}
Please login to merge, or discard this patch.
Command/AccountCommand.php 1 patch
Spacing   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -32,14 +32,14 @@  discard block
 block discarded – undo
32 32
 	 */
33 33
 	protected function configure()
34 34
 	{
35
-		$this->setName( self::$defaultName );
36
-		$this->setDescription( 'Creates new (admin) accounts' );
37
-		$this->addArgument( 'email', InputArgument::REQUIRED, 'E-mail address of the account that should be created' );
38
-		$this->addArgument( 'site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default"', 'default' );
39
-		$this->addOption( 'password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)' );
40
-		$this->addOption( 'super', null, InputOption::VALUE_NONE, 'If account should have super user privileges' );
41
-		$this->addOption( 'admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges' );
42
-		$this->addOption( 'editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges' );
35
+		$this->setName(self::$defaultName);
36
+		$this->setDescription('Creates new (admin) accounts');
37
+		$this->addArgument('email', InputArgument::REQUIRED, 'E-mail address of the account that should be created');
38
+		$this->addArgument('site', InputArgument::OPTIONAL, 'Site codes to create accounts for like "default"', 'default');
39
+		$this->addOption('password', null, InputOption::VALUE_REQUIRED, 'Optional password for the account (will ask for if not given)');
40
+		$this->addOption('super', null, InputOption::VALUE_NONE, 'If account should have super user privileges');
41
+		$this->addOption('admin', null, InputOption::VALUE_NONE, 'If account should have administrator privileges');
42
+		$this->addOption('editor', null, InputOption::VALUE_NONE, 'If account should have limited editor privileges');
43 43
 	}
44 44
 
45 45
 
@@ -49,54 +49,54 @@  discard block
 block discarded – undo
49 49
 	 * @param InputInterface $input Input object
50 50
 	 * @param OutputInterface $output Output object
51 51
 	 */
52
-	protected function execute( InputInterface $input, OutputInterface $output )
52
+	protected function execute(InputInterface $input, OutputInterface $output)
53 53
 	{
54
-		$code = $input->getArgument( 'email' );
55
-		if( ( $password = $input->getOption( 'password' ) ) === null )
54
+		$code = $input->getArgument('email');
55
+		if (($password = $input->getOption('password')) === null)
56 56
 		{
57
-			$helper = $this->getHelper( 'question' );
58
-			$question = new Question( 'Password' );
59
-			$question->setHidden( true );
57
+			$helper = $this->getHelper('question');
58
+			$question = new Question('Password');
59
+			$question->setHidden(true);
60 60
 
61
-			$password = $helper->ask( $input, $output, $question );
61
+			$password = $helper->ask($input, $output, $question);
62 62
 		}
63 63
 
64
-		$context = $this->getContainer()->get( 'aimeos_context' )->get( false, 'command' );
65
-		$context->setEditor( 'aimeos:account' );
64
+		$context = $this->getContainer()->get('aimeos_context')->get(false, 'command');
65
+		$context->setEditor('aimeos:account');
66 66
 
67
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
68
-		$localeItem = $localeManager->bootstrap( $input->getArgument( 'site' ), '', '', false );
69
-		$context->setLocale( $localeItem );
67
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
68
+		$localeItem = $localeManager->bootstrap($input->getArgument('site'), '', '', false);
69
+		$context->setLocale($localeItem);
70 70
 
71
-		$user = $this->createCustomerItem( $context, $code, $password );
71
+		$user = $this->createCustomerItem($context, $code, $password);
72 72
 
73
-		if( $input->getOption( 'admin' ) ) {
74
-			$this->addGroup( $input, $output, $context, $user, 'admin' );
73
+		if ($input->getOption('admin')) {
74
+			$this->addGroup($input, $output, $context, $user, 'admin');
75 75
 		}
76 76
 
77
-		if( $input->getOption( 'editor' ) ) {
78
-			$this->addGroup( $input, $output, $context, $user, 'editor' );
77
+		if ($input->getOption('editor')) {
78
+			$this->addGroup($input, $output, $context, $user, 'editor');
79 79
 		}
80 80
 
81
-		if( $this->getContainer()->has( 'fos_user.user_manager' ) )
81
+		if ($this->getContainer()->has('fos_user.user_manager'))
82 82
 		{
83
-			$userManager = $this->getContainer()->get( 'fos_user.user_manager' );
83
+			$userManager = $this->getContainer()->get('fos_user.user_manager');
84 84
 
85
-			if( ( $fosUser = $userManager->findUserByUsername( $code ) ) === null ) {
86
-				throw new \RuntimeException( 'No user created' );
85
+			if (($fosUser = $userManager->findUserByUsername($code)) === null) {
86
+				throw new \RuntimeException('No user created');
87 87
 			}
88 88
 
89
-			$fosUser->setSuperAdmin( false );
89
+			$fosUser->setSuperAdmin(false);
90 90
 
91
-			if( $input->getOption( 'super' ) ) {
92
-				$fosUser->setSuperAdmin( true );
91
+			if ($input->getOption('super')) {
92
+				$fosUser->setSuperAdmin(true);
93 93
 			}
94 94
 
95
-			if( $input->getOption( 'admin' ) || $input->getOption( 'editor' ) ) {
96
-				$fosUser->addRole( 'ROLE_ADMIN' );
95
+			if ($input->getOption('admin') || $input->getOption('editor')) {
96
+				$fosUser->addRole('ROLE_ADMIN');
97 97
 			}
98 98
 
99
-			$userManager->updateUser( $fosUser );
99
+			$userManager->updateUser($fosUser);
100 100
 		}
101 101
 	}
102 102
 
@@ -110,24 +110,24 @@  discard block
 block discarded – undo
110 110
 	 * @param \Aimeos\MShop\Customer\Item\Iface $user Aimeos customer object
111 111
 	 * @param string $group Unique customer group code
112 112
 	 */
113
-	protected function addGroup( InputInterface $input, OutputInterface $output,
114
-		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group )
113
+	protected function addGroup(InputInterface $input, OutputInterface $output,
114
+		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $user, $group)
115 115
 	{
116
-		$output->writeln( sprintf( 'Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode() ) );
116
+		$output->writeln(sprintf('Add "%1$s" group to user "%2$s" for sites', $group, $user->getCode()));
117 117
 
118
-		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager( $context );
118
+		$localeManager = \Aimeos\MShop\Locale\Manager\Factory::createManager($context);
119 119
 
120
-		foreach( $this->getSiteItems( $context, $input ) as $siteItem )
120
+		foreach ($this->getSiteItems($context, $input) as $siteItem)
121 121
 		{
122
-			$localeItem = $localeManager->bootstrap( $siteItem->getCode(), '', '', false );
122
+			$localeItem = $localeManager->bootstrap($siteItem->getCode(), '', '', false);
123 123
 
124 124
 			$lcontext = clone $context;
125
-			$lcontext->setLocale( $localeItem );
125
+			$lcontext->setLocale($localeItem);
126 126
 
127
-			$output->writeln( '- ' . $siteItem->getCode() );
127
+			$output->writeln('- '.$siteItem->getCode());
128 128
 
129
-			$groupItem = $this->getGroupItem( $lcontext, $group );
130
-			$this->addListItem( $lcontext, $user->getId(), $groupItem->getId() );
129
+			$groupItem = $this->getGroupItem($lcontext, $group);
130
+			$this->addListItem($lcontext, $user->getId(), $groupItem->getId());
131 131
 		}
132 132
 	}
133 133
 
@@ -139,31 +139,31 @@  discard block
 block discarded – undo
139 139
 	 * @param string $userid Unique user ID
140 140
 	 * @param string $groupid Unique group ID
141 141
 	 */
142
-	protected function addListItem( \Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid )
142
+	protected function addListItem(\Aimeos\MShop\Context\Item\Iface $context, $userid, $groupid)
143 143
 	{
144
-		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'lists' );
145
-		$typeid = $manager->getSubmanager( 'type' )->findItem( 'default', array(), 'customer/group' )->getId();
144
+		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('lists');
145
+		$typeid = $manager->getSubmanager('type')->findItem('default', array(), 'customer/group')->getId();
146 146
 
147 147
 		$search = $manager->createSearch();
148 148
 		$expr = array(
149
-			$search->compare( '==', 'customer.lists.parentid', $userid ),
150
-			$search->compare( '==', 'customer.lists.refid', $groupid ),
151
-			$search->compare( '==', 'customer.lists.domain', 'customer/group' ),
152
-			$search->compare( '==', 'customer.lists.typeid', $typeid ),
149
+			$search->compare('==', 'customer.lists.parentid', $userid),
150
+			$search->compare('==', 'customer.lists.refid', $groupid),
151
+			$search->compare('==', 'customer.lists.domain', 'customer/group'),
152
+			$search->compare('==', 'customer.lists.typeid', $typeid),
153 153
 		);
154
-		$search->setConditions( $search->combine( '&&', $expr ) );
155
-		$search->setSlice( 0, 1 );
154
+		$search->setConditions($search->combine('&&', $expr));
155
+		$search->setSlice(0, 1);
156 156
 
157
-		if( count( $manager->searchItems( $search ) ) === 0 )
157
+		if (count($manager->searchItems($search)) === 0)
158 158
 		{
159 159
 			$item = $manager->createItem();
160
-			$item->setDomain( 'customer/group' );
161
-			$item->setParentId( $userid );
162
-			$item->setTypeId( $typeid );
163
-			$item->setRefId( $groupid );
164
-			$item->setStatus( 1 );
160
+			$item->setDomain('customer/group');
161
+			$item->setParentId($userid);
162
+			$item->setTypeId($typeid);
163
+			$item->setRefId($groupid);
164
+			$item->setStatus(1);
165 165
 
166
-			$manager->saveItem( $item, false );
166
+			$manager->saveItem($item, false);
167 167
 		}
168 168
 	}
169 169
 
@@ -178,23 +178,23 @@  discard block
 block discarded – undo
178 178
 	 * @param string $password New user password
179 179
 	 * @return \Aimeos\MShop\Customer\Item\Iface Aimeos customer item object
180 180
 	 */
181
-	protected function createCustomerItem( \Aimeos\MShop\Context\Item\Iface $context, $email, $password )
181
+	protected function createCustomerItem(\Aimeos\MShop\Context\Item\Iface $context, $email, $password)
182 182
 	{
183
-		$manager = \Aimeos\MShop\Factory::createManager( $context, 'customer' );
183
+		$manager = \Aimeos\MShop\Factory::createManager($context, 'customer');
184 184
 
185 185
 		try {
186
-			$item = $manager->findItem( $email );
187
-		} catch( \Aimeos\MShop\Exception $e ) {
186
+			$item = $manager->findItem($email);
187
+		} catch (\Aimeos\MShop\Exception $e) {
188 188
 			$item = $manager->createItem();
189 189
 		}
190 190
 
191
-		$item->setCode( $email );
192
-		$item->setLabel( $email );
193
-		$item->getPaymentAddress()->setEmail( $email );
194
-		$item->setPassword( $password );
195
-		$item->setStatus( 1 );
191
+		$item->setCode($email);
192
+		$item->setLabel($email);
193
+		$item->getPaymentAddress()->setEmail($email);
194
+		$item->setPassword($password);
195
+		$item->setStatus(1);
196 196
 
197
-		$manager->saveItem( $item );
197
+		$manager->saveItem($item);
198 198
 
199 199
 		return $item;
200 200
 	}
@@ -207,21 +207,21 @@  discard block
 block discarded – undo
207 207
 	 * @param string $code Unique customer group code
208 208
 	 * @return \Aimeos\MShop\Customer\Item\Group\Iface Aimeos customer group item object
209 209
 	 */
210
-	protected function getGroupItem( \Aimeos\MShop\Context\Item\Iface $context, $code )
210
+	protected function getGroupItem(\Aimeos\MShop\Context\Item\Iface $context, $code)
211 211
 	{
212
-		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $context )->getSubmanager( 'group' );
212
+		$manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($context)->getSubmanager('group');
213 213
 
214 214
 		try
215 215
 		{
216
-			$item = $manager->findItem( $code );
216
+			$item = $manager->findItem($code);
217 217
 		}
218
-		catch( \Aimeos\MShop\Exception $e )
218
+		catch (\Aimeos\MShop\Exception $e)
219 219
 		{
220 220
 			$item = $manager->createItem();
221
-			$item->setLabel( $code );
222
-			$item->setCode( $code );
221
+			$item->setLabel($code);
222
+			$item->setCode($code);
223 223
 
224
-			$manager->saveItem( $item );
224
+			$manager->saveItem($item);
225 225
 		}
226 226
 
227 227
 		return $item;
Please login to merge, or discard this patch.
Composer/ScriptHandler.php 1 patch
Spacing   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -28,18 +28,18 @@  discard block
 block discarded – undo
28 28
 	 * @param Event $event Event instance
29 29
 	 * @throws \RuntimeException If an error occured
30 30
 	 */
31
-	public static function setupDatabase( Event $event )
31
+	public static function setupDatabase(Event $event)
32 32
 	{
33 33
 		$options = $env = array();
34 34
 
35
-		if( $event->isDevMode() ) {
35
+		if ($event->isDevMode()) {
36 36
 			$options[] = '--option=setup/default/demo:1';
37 37
 		} else {
38 38
 			$env[] = '--env=prod';
39 39
 		}
40 40
 
41
-		self::executeCommand( $event, 'aimeos:setup', $options + $env );
42
-		self::executeCommand( $event, 'aimeos:cache', $env );
41
+		self::executeCommand($event, 'aimeos:setup', $options + $env);
42
+		self::executeCommand($event, 'aimeos:cache', $env);
43 43
 	}
44 44
 
45 45
 
@@ -49,16 +49,16 @@  discard block
 block discarded – undo
49 49
 	 * @param Event $event Event instance
50 50
 	 * @throws \RuntimeException If an error occured
51 51
 	 */
52
-	public static function updateConfig( Event $event )
52
+	public static function updateConfig(Event $event)
53 53
 	{
54
-		$event->getIO()->write( 'Ensure existing config and routing for the shop bundle' );
54
+		$event->getIO()->write('Ensure existing config and routing for the shop bundle');
55 55
 
56
-		$options = self::getOptions( $event );
56
+		$options = self::getOptions($event);
57 57
 
58
-		if( isset( $options['symfony-app-dir'] ) )
58
+		if (isset($options['symfony-app-dir']))
59 59
 		{
60
-			self::updateConfigFile( $options['symfony-app-dir'] . '/config/config.yml' );
61
-			self::updateRoutingFile( $options['symfony-app-dir'] . '/config/routing.yml' );
60
+			self::updateConfigFile($options['symfony-app-dir'].'/config/config.yml');
61
+			self::updateRoutingFile($options['symfony-app-dir'].'/config/routing.yml');
62 62
 		}
63 63
 	}
64 64
 
@@ -69,26 +69,26 @@  discard block
 block discarded – undo
69 69
 	 * @param Event $event Event instance
70 70
 	 * @throws \RuntimeException If an error occured
71 71
 	 */
72
-	public static function installBundle( Event $event )
72
+	public static function installBundle(Event $event)
73 73
 	{
74
-		$event->getIO()->write( 'Installing the Aimeos shop bundle' );
74
+		$event->getIO()->write('Installing the Aimeos shop bundle');
75 75
 
76
-		$options = self::getOptions( $event );
76
+		$options = self::getOptions($event);
77 77
 		$securedir = 'var';
78 78
 
79
-		if( isset( $options['symfony-app-dir'] ) && is_dir( $options['symfony-app-dir'] ) ) {
79
+		if (isset($options['symfony-app-dir']) && is_dir($options['symfony-app-dir'])) {
80 80
 			$securedir = $options['symfony-app-dir'];
81 81
 		}
82 82
 
83
-		if( isset( $options['symfony-var-dir'] ) && is_dir( $options['symfony-var-dir'] ) ) {
83
+		if (isset($options['symfony-var-dir']) && is_dir($options['symfony-var-dir'])) {
84 84
 			$securedir = $options['symfony-var-dir'];
85 85
 		}
86 86
 
87
-		$webdir = ( isset( $options['symfony-web-dir'] ) ? $options['symfony-web-dir'] : 'public' );
87
+		$webdir = (isset($options['symfony-web-dir']) ? $options['symfony-web-dir'] : 'public');
88 88
 
89
-		self::createDirectory( $securedir . '/secure' );
90
-		self::createDirectory( $webdir . '/preview' );
91
-		self::createDirectory( $webdir . '/files' );
89
+		self::createDirectory($securedir.'/secure');
90
+		self::createDirectory($webdir.'/preview');
91
+		self::createDirectory($webdir.'/files');
92 92
 	}
93 93
 
94 94
 
@@ -98,14 +98,14 @@  discard block
 block discarded – undo
98 98
 	 * @param string $dir Absolute path of the new directory
99 99
 	 * @throws \RuntimeException If directory couldn't be created
100 100
 	 */
101
-	protected static function createDirectory( $dir )
101
+	protected static function createDirectory($dir)
102 102
 	{
103 103
 		$perm = 0755;
104 104
 
105
-		if( !is_dir( $dir ) && !mkdir( $dir, $perm, true ) )
105
+		if (!is_dir($dir) && !mkdir($dir, $perm, true))
106 106
 		{
107 107
 			$msg = 'Unable to create directory "%1$s" with permission "%2$s"';
108
-			throw new \RuntimeException( sprintf( $msg, $dir, $perm ) );
108
+			throw new \RuntimeException(sprintf($msg, $dir, $perm));
109 109
 		}
110 110
 	}
111 111
 
@@ -118,28 +118,28 @@  discard block
 block discarded – undo
118 118
 	 * @param array List of configuration options for the given command
119 119
 	 * @throws \RuntimeException If the command couldn't be executed
120 120
 	 */
121
-	protected static function executeCommand( Event $event, $cmd, array $options = array() )
121
+	protected static function executeCommand(Event $event, $cmd, array $options = array())
122 122
 	{
123
-		$php = escapeshellarg( self::getPhp() );
124
-		$console = escapeshellarg( self::getConsoleDir( $event ) . '/console' );
125
-		$cmd = escapeshellarg( $cmd );
123
+		$php = escapeshellarg(self::getPhp());
124
+		$console = escapeshellarg(self::getConsoleDir($event).'/console');
125
+		$cmd = escapeshellarg($cmd);
126 126
 
127
-		foreach( $options as $key => $option ) {
128
-			$options[$key] = escapeshellarg( $option );
127
+		foreach ($options as $key => $option) {
128
+			$options[$key] = escapeshellarg($option);
129 129
 		}
130 130
 
131
-		if( $event->getIO()->isDecorated() ) {
131
+		if ($event->getIO()->isDecorated()) {
132 132
 			$console .= ' --ansi';
133 133
 		}
134 134
 
135
-		$process = new Process( $php . ' ' . $console . ' ' . $cmd . ' ' . implode( ' ', $options ), null, null, null, 3600 );
135
+		$process = new Process($php.' '.$console.' '.$cmd.' '.implode(' ', $options), null, null, null, 3600);
136 136
 
137
-		$process->run( function( $type, $buffer ) use ( $event ) {
138
-			$event->getIO()->write( $buffer, false );
137
+		$process->run(function($type, $buffer) use ($event) {
138
+			$event->getIO()->write($buffer, false);
139 139
 		} );
140 140
 
141
-		if( !$process->isSuccessful() ) {
142
-			throw new \RuntimeException( sprintf( 'An error occurred when executing the "%s" command', escapeshellarg( $cmd ) ) );
141
+		if (!$process->isSuccessful()) {
142
+			throw new \RuntimeException(sprintf('An error occurred when executing the "%s" command', escapeshellarg($cmd)));
143 143
 		}
144 144
 	}
145 145
 
@@ -152,17 +152,17 @@  discard block
 block discarded – undo
152 152
 	 * @return string The path to the console directory
153 153
 	 * @throws \RuntimeException If console directory couldn't be found
154 154
 	 */
155
-	protected static function getConsoleDir( Event $event )
155
+	protected static function getConsoleDir(Event $event)
156 156
 	{
157
-		$options = self::getOptions( $event );
157
+		$options = self::getOptions($event);
158 158
 
159 159
 		$bindir = 'bin';
160 160
 
161
-		if( isset( $options['symfony-app-dir'] ) && is_dir( $options['symfony-app-dir'] ) ) {
161
+		if (isset($options['symfony-app-dir']) && is_dir($options['symfony-app-dir'])) {
162 162
 			$bindir = $options['symfony-app-dir'];
163 163
 		}
164 164
 
165
-		if( isset( $options['symfony-bin-dir'] ) && is_dir( $options['symfony-bin-dir'] ) ) {
165
+		if (isset($options['symfony-bin-dir']) && is_dir($options['symfony-bin-dir'])) {
166 166
 			$bindir = $options['symfony-bin-dir'];
167 167
 		}
168 168
 
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 	 * @param Event $event Command event object
177 177
 	 * @return array Associative list of option keys and values
178 178
 	 */
179
-	protected static function getOptions( Event $event )
179
+	protected static function getOptions(Event $event)
180 180
 	{
181 181
 		return $event->getComposer()->getPackage()->getExtra();
182 182
 	}
@@ -192,8 +192,8 @@  discard block
 block discarded – undo
192 192
 	{
193 193
 		$phpFinder = new PhpExecutableFinder;
194 194
 
195
-		if( !( $phpPath = $phpFinder->find() ) ) {
196
-			throw new \RuntimeException( 'The php executable could not be found, add it to your PATH environment variable and try again' );
195
+		if (!($phpPath = $phpFinder->find())) {
196
+			throw new \RuntimeException('The php executable could not be found, add it to your PATH environment variable and try again');
197 197
 		}
198 198
 
199 199
 		return $phpPath;
@@ -206,15 +206,15 @@  discard block
 block discarded – undo
206 206
 	 * @param string $filename Name of the YAML config file
207 207
 	 * @throws \RuntimeException If file is not found
208 208
 	 */
209
-	protected static function updateConfigFile( $filename )
209
+	protected static function updateConfigFile($filename)
210 210
 	{
211
-		if( ( $content = file_get_contents( $filename ) ) === false ) {
212
-			throw new \RuntimeException( sprintf( 'File "%1$s" not found', $filename ) );
211
+		if (($content = file_get_contents($filename)) === false) {
212
+			throw new \RuntimeException(sprintf('File "%1$s" not found', $filename));
213 213
 		}
214 214
 
215
-		if( self::addAsseticBundle( $content ) === true ) {
215
+		if (self::addAsseticBundle($content) === true) {
216 216
 			$fs = new Filesystem();
217
-			$fs->dumpFile( $filename, $content );
217
+			$fs->dumpFile($filename, $content);
218 218
 		}
219 219
 	}
220 220
 
@@ -225,29 +225,29 @@  discard block
 block discarded – undo
225 225
 	 * @param string $filename Name of the YAML config file
226 226
 	 * @throws \RuntimeException If file is not found
227 227
 	 */
228
-	protected static function updateRoutingFile( $filename )
228
+	protected static function updateRoutingFile($filename)
229 229
 	{
230 230
 		$content = '';
231 231
 
232
-		if( file_exists( $filename ) && ( $content = file_get_contents( $filename ) ) === false ) {
233
-			throw new \RuntimeException( sprintf( 'File "%1$s" not readable', $filename ) );
232
+		if (file_exists($filename) && ($content = file_get_contents($filename)) === false) {
233
+			throw new \RuntimeException(sprintf('File "%1$s" not readable', $filename));
234 234
 		}
235 235
 
236
-		if( strpos( $content, 'aimeos_shop:' ) === false )
236
+		if (strpos($content, 'aimeos_shop:') === false)
237 237
 		{
238
-			$content .= "\n" . 'fos_user:
238
+			$content .= "\n".'fos_user:
239 239
     resource: "@FOSUserBundle/Resources/config/routing/all.xml"';
240 240
 		}
241 241
 
242
-		if( strpos( $content, 'aimeos_shop:' ) === false )
242
+		if (strpos($content, 'aimeos_shop:') === false)
243 243
 		{
244
-			$content .= "\n" . 'aimeos_shop:
244
+			$content .= "\n".'aimeos_shop:
245 245
     resource: "@AimeosShopBundle/Resources/config/routing.yml"
246 246
     prefix: /';
247 247
 		}
248 248
 
249 249
 		$fs = new Filesystem();
250
-		$fs->dumpFile( $filename, $content );
250
+		$fs->dumpFile($filename, $content);
251 251
 	}
252 252
 
253 253
 
@@ -257,14 +257,14 @@  discard block
 block discarded – undo
257 257
 	 * @param string &$content Content of the config.yml file
258 258
 	 * @return boolean True if modified, false if not
259 259
 	 */
260
-	protected static function addAsseticBundle( &$content )
260
+	protected static function addAsseticBundle(&$content)
261 261
 	{
262
-		if( preg_match( "/    bundles:[ ]*\[.*'AimeosShopBundle'.*\]/", $content ) !== 1 )
262
+		if (preg_match("/    bundles:[ ]*\[.*'AimeosShopBundle'.*\]/", $content) !== 1)
263 263
 		{
264
-			$search = array( "/    bundles:[ ]*\[([^\]]+)\]/", "/    bundles:[ ]*\[([ ]*)\]/" );
265
-			$replace = array( "    bundles: [$1,'AimeosShopBundle']", "    bundles: ['AimeosShopBundle']" );
264
+			$search = array("/    bundles:[ ]*\[([^\]]+)\]/", "/    bundles:[ ]*\[([ ]*)\]/");
265
+			$replace = array("    bundles: [$1,'AimeosShopBundle']", "    bundles: ['AimeosShopBundle']");
266 266
 
267
-			if( ( $content = preg_replace( $search, $replace, $content ) ) !== null ) {
267
+			if (($content = preg_replace($search, $replace, $content)) !== null) {
268 268
 				return true;
269 269
 			}
270 270
 		}
Please login to merge, or discard this patch.