|
@@ -11,17 +11,17 @@ discard block |
|
|
block discarded – undo |
|
11
|
11
|
{ |
|
12
|
12
|
$client = static::createClient(); |
|
13
|
13
|
|
|
14
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
14
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
15
|
15
|
|
|
16
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
17
|
|
- $crawler = $client->click( $link ); |
|
|
16
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
17
|
+ $crawler = $client->click($link); |
|
18
|
18
|
|
|
19
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
20
|
|
- $crawler = $client->submit( $form ); |
|
|
19
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
20
|
+ $crawler = $client->submit($form); |
|
21
|
21
|
|
|
22
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket-standard' )->count() ); |
|
23
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket:contains("Unittest: Bundle")' )->count() ); |
|
24
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket .product .quantity .value' )->attr('value') ); |
|
|
22
|
+ $this->assertEquals(1, $crawler->filter('.basket-standard')->count()); |
|
|
23
|
+ $this->assertEquals(1, $crawler->filter('.basket:contains("Unittest: Bundle")')->count()); |
|
|
24
|
+ $this->assertEquals(1, $crawler->filter('.basket .product .quantity .value')->attr('value')); |
|
25
|
25
|
} |
|
26
|
26
|
|
|
27
|
27
|
|
|
@@ -29,18 +29,18 @@ discard block |
|
|
block discarded – undo |
|
29
|
29
|
{ |
|
30
|
30
|
$client = static::createClient(); |
|
31
|
31
|
|
|
32
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
32
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
33
|
33
|
|
|
34
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
35
|
|
- $crawler = $client->click( $link ); |
|
|
34
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
35
|
+ $crawler = $client->click($link); |
|
36
|
36
|
|
|
37
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
|
37
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
38
|
38
|
$form['b_prod[0][quantity]'] = 2; |
|
39
|
|
- $crawler = $client->submit( $form ); |
|
|
39
|
+ $crawler = $client->submit($form); |
|
40
|
40
|
|
|
41
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket-standard' )->count() ); |
|
42
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket:contains("Unittest: Bundle")' )->count() ); |
|
43
|
|
- $this->assertEquals( 2, $crawler->filter( '.basket .product .quantity .value' )->attr('value') ); |
|
|
41
|
+ $this->assertEquals(1, $crawler->filter('.basket-standard')->count()); |
|
|
42
|
+ $this->assertEquals(1, $crawler->filter('.basket:contains("Unittest: Bundle")')->count()); |
|
|
43
|
+ $this->assertEquals(2, $crawler->filter('.basket .product .quantity .value')->attr('value')); |
|
44
|
44
|
} |
|
45
|
45
|
|
|
46
|
46
|
|
|
@@ -48,26 +48,26 @@ discard block |
|
|
block discarded – undo |
|
48
|
48
|
{ |
|
49
|
49
|
$client = static::createClient(); |
|
50
|
50
|
|
|
51
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
51
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
52
|
52
|
|
|
53
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
54
|
|
- $crawler = $client->click( $link ); |
|
|
53
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
54
|
+ $crawler = $client->click($link); |
|
55
|
55
|
|
|
56
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
57
|
|
- $crawler = $client->submit( $form ); |
|
|
56
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
57
|
+ $crawler = $client->submit($form); |
|
58
|
58
|
|
|
59
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket:contains("Unittest: Bundle")' )->count() ); |
|
60
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket .product .quantity .value' )->attr('value') ); |
|
|
59
|
+ $this->assertEquals(1, $crawler->filter('.basket:contains("Unittest: Bundle")')->count()); |
|
|
60
|
+ $this->assertEquals(1, $crawler->filter('.basket .product .quantity .value')->attr('value')); |
|
61
|
61
|
|
|
62
|
62
|
|
|
63
|
|
- $link = $crawler->filter( '.basket-standard .btn-back' )->link(); |
|
64
|
|
- $crawler = $client->click( $link ); |
|
|
63
|
+ $link = $crawler->filter('.basket-standard .btn-back')->link(); |
|
|
64
|
+ $crawler = $client->click($link); |
|
65
|
65
|
|
|
66
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
67
|
|
- $crawler = $client->submit( $form ); |
|
|
66
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
67
|
+ $crawler = $client->submit($form); |
|
68
|
68
|
|
|
69
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket:contains("Unittest: Bundle")' )->count() ); |
|
70
|
|
- $this->assertEquals( 2, $crawler->filter( '.basket .product .quantity .value' )->attr('value') ); |
|
|
69
|
+ $this->assertEquals(1, $crawler->filter('.basket:contains("Unittest: Bundle")')->count()); |
|
|
70
|
+ $this->assertEquals(2, $crawler->filter('.basket .product .quantity .value')->attr('value')); |
|
71
|
71
|
} |
|
72
|
72
|
|
|
73
|
73
|
|
|
@@ -75,19 +75,19 @@ discard block |
|
|
block discarded – undo |
|
75
|
75
|
{ |
|
76
|
76
|
$client = static::createClient(); |
|
77
|
77
|
|
|
78
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
78
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
79
|
79
|
|
|
80
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
81
|
|
- $crawler = $client->click( $link ); |
|
|
80
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
81
|
+ $crawler = $client->click($link); |
|
82
|
82
|
|
|
83
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
84
|
|
- $crawler = $client->submit( $form ); |
|
|
83
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
84
|
+ $crawler = $client->submit($form); |
|
85
|
85
|
|
|
86
|
86
|
|
|
87
|
|
- $link = $crawler->filter( '.basket-standard .product .action .change' )->link(); |
|
88
|
|
- $crawler = $client->click( $link ); |
|
|
87
|
+ $link = $crawler->filter('.basket-standard .product .action .change')->link(); |
|
|
88
|
+ $crawler = $client->click($link); |
|
89
|
89
|
|
|
90
|
|
- $this->assertEquals( 0, $crawler->filter( '.basket-standard .product' )->count() ); |
|
|
90
|
+ $this->assertEquals(0, $crawler->filter('.basket-standard .product')->count()); |
|
91
|
91
|
} |
|
92
|
92
|
|
|
93
|
93
|
|
|
@@ -95,25 +95,25 @@ discard block |
|
|
block discarded – undo |
|
95
|
95
|
{ |
|
96
|
96
|
$client = static::createClient(); |
|
97
|
97
|
|
|
98
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
98
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
99
|
99
|
|
|
100
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
101
|
|
- $crawler = $client->click( $link ); |
|
|
100
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
101
|
+ $crawler = $client->click($link); |
|
102
|
102
|
|
|
103
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
104
|
|
- $crawler = $client->submit( $form ); |
|
|
103
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
104
|
+ $crawler = $client->submit($form); |
|
105
|
105
|
|
|
106
|
106
|
|
|
107
|
|
- $link = $crawler->filter( '.basket-standard .product .quantity .change' )->link(); |
|
108
|
|
- $crawler = $client->click( $link ); |
|
|
107
|
+ $link = $crawler->filter('.basket-standard .product .quantity .change')->link(); |
|
|
108
|
+ $crawler = $client->click($link); |
|
109
|
109
|
|
|
110
|
|
- $this->assertEquals( 2, $crawler->filter( '.basket-standard .product .quantity .value' )->attr( 'value' ) ); |
|
|
110
|
+ $this->assertEquals(2, $crawler->filter('.basket-standard .product .quantity .value')->attr('value')); |
|
111
|
111
|
|
|
112
|
112
|
|
|
113
|
|
- $link = $crawler->filter( '.basket-standard .product .quantity .change' )->eq( 0 )->link(); |
|
114
|
|
- $crawler = $client->click( $link ); |
|
|
113
|
+ $link = $crawler->filter('.basket-standard .product .quantity .change')->eq(0)->link(); |
|
|
114
|
+ $crawler = $client->click($link); |
|
115
|
115
|
|
|
116
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket-standard .product .quantity .value' )->attr( 'value' ) ); |
|
|
116
|
+ $this->assertEquals(1, $crawler->filter('.basket-standard .product .quantity .value')->attr('value')); |
|
117
|
117
|
} |
|
118
|
118
|
|
|
119
|
119
|
|
|
@@ -121,20 +121,20 @@ discard block |
|
|
block discarded – undo |
|
121
|
121
|
{ |
|
122
|
122
|
$client = static::createClient(); |
|
123
|
123
|
|
|
124
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
124
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
125
|
125
|
|
|
126
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
127
|
|
- $crawler = $client->click( $link ); |
|
|
126
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
127
|
+ $crawler = $client->click($link); |
|
128
|
128
|
|
|
129
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
130
|
|
- $crawler = $client->submit( $form ); |
|
|
129
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
130
|
+ $crawler = $client->submit($form); |
|
131
|
131
|
|
|
132
|
132
|
|
|
133
|
|
- $form = $crawler->filter( '.basket-standard .btn-update' )->form(); |
|
|
133
|
+ $form = $crawler->filter('.basket-standard .btn-update')->form(); |
|
134
|
134
|
$form['b_prod[0][quantity]'] = 3; |
|
135
|
|
- $crawler = $client->submit( $form ); |
|
|
135
|
+ $crawler = $client->submit($form); |
|
136
|
136
|
|
|
137
|
|
- $this->assertEquals( 3, $crawler->filter( '.basket-standard .product .quantity .value' )->attr( 'value' ) ); |
|
|
137
|
+ $this->assertEquals(3, $crawler->filter('.basket-standard .product .quantity .value')->attr('value')); |
|
138
|
138
|
} |
|
139
|
139
|
|
|
140
|
140
|
|
|
@@ -142,26 +142,26 @@ discard block |
|
|
block discarded – undo |
|
142
|
142
|
{ |
|
143
|
143
|
$client = static::createClient(); |
|
144
|
144
|
|
|
145
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
145
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
146
|
146
|
|
|
147
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
148
|
|
- $crawler = $client->click( $link ); |
|
|
147
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
148
|
+ $crawler = $client->click($link); |
|
149
|
149
|
|
|
150
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
151
|
|
- $crawler = $client->submit( $form ); |
|
|
150
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
151
|
+ $crawler = $client->submit($form); |
|
152
|
152
|
|
|
153
|
153
|
|
|
154
|
|
- $form = $crawler->filter( '.basket-standard-coupon .coupon-new button' )->form(); |
|
|
154
|
+ $form = $crawler->filter('.basket-standard-coupon .coupon-new button')->form(); |
|
155
|
155
|
$form['b_coupon'] = '90AB'; |
|
156
|
|
- $crawler = $client->submit( $form ); |
|
|
156
|
+ $crawler = $client->submit($form); |
|
157
|
157
|
|
|
158
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket-standard .product:contains("Geldwerter Nachlass")' )->count() ); |
|
|
158
|
+ $this->assertEquals(1, $crawler->filter('.basket-standard .product:contains("Geldwerter Nachlass")')->count()); |
|
159
|
159
|
|
|
160
|
160
|
|
|
161
|
|
- $link = $crawler->filter( '.basket-standard-coupon .change' )->link(); |
|
162
|
|
- $crawler = $client->click( $link ); |
|
|
161
|
+ $link = $crawler->filter('.basket-standard-coupon .change')->link(); |
|
|
162
|
+ $crawler = $client->click($link); |
|
163
|
163
|
|
|
164
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket-standard .product' )->count() ); |
|
|
164
|
+ $this->assertEquals(1, $crawler->filter('.basket-standard .product')->count()); |
|
165
|
165
|
} |
|
166
|
166
|
|
|
167
|
167
|
|
|
@@ -169,15 +169,15 @@ discard block |
|
|
block discarded – undo |
|
169
|
169
|
{ |
|
170
|
170
|
$client = static::createClient(); |
|
171
|
171
|
|
|
172
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
172
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
173
|
173
|
|
|
174
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Cafe Noire Expresso")' )->link(); |
|
175
|
|
- $crawler = $client->click( $link ); |
|
|
174
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Cafe Noire Expresso")')->link(); |
|
|
175
|
+ $crawler = $client->click($link); |
|
176
|
176
|
|
|
177
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
178
|
|
- $crawler = $client->submit( $form ); |
|
|
177
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
178
|
+ $crawler = $client->submit($form); |
|
179
|
179
|
|
|
180
|
|
- $this->assertEquals( 1, $crawler->filter( '.basket-related-bought .product' )->count() ); |
|
|
180
|
+ $this->assertEquals(1, $crawler->filter('.basket-related-bought .product')->count()); |
|
181
|
181
|
} |
|
182
|
182
|
|
|
183
|
183
|
|
|
@@ -185,56 +185,56 @@ discard block |
|
|
block discarded – undo |
|
185
|
185
|
{ |
|
186
|
186
|
$client = static::createClient(); |
|
187
|
187
|
|
|
188
|
|
- $crawler = $client->request( 'GET', '/unittest/de/EUR/list' ); |
|
|
188
|
+ $crawler = $client->request('GET', '/unittest/de/EUR/list'); |
|
189
|
189
|
|
|
190
|
|
- $link = $crawler->filter( '.catalog-list-items .product a:contains("Unittest: Bundle")' )->link(); |
|
191
|
|
- $crawler = $client->click( $link ); |
|
|
190
|
+ $link = $crawler->filter('.catalog-list-items .product a:contains("Unittest: Bundle")')->link(); |
|
|
191
|
+ $crawler = $client->click($link); |
|
192
|
192
|
|
|
193
|
|
- $form = $crawler->filter( '.catalog-detail .addbasket .btn-action' )->form(); |
|
194
|
|
- $crawler = $client->submit( $form ); |
|
|
193
|
+ $form = $crawler->filter('.catalog-detail .addbasket .btn-action')->form(); |
|
|
194
|
+ $crawler = $client->submit($form); |
|
195
|
195
|
|
|
196
|
|
- $link = $crawler->filter( '.basket-standard .btn-back' )->link(); |
|
197
|
|
- $crawler = $client->click( $link ); |
|
|
196
|
+ $link = $crawler->filter('.basket-standard .btn-back')->link(); |
|
|
197
|
+ $crawler = $client->click($link); |
|
198
|
198
|
|
|
199
|
|
- $this->assertEquals( 1, $crawler->filter( '.catalog-detail .product:contains("Unittest: Bundle")' )->count() ); |
|
|
199
|
+ $this->assertEquals(1, $crawler->filter('.catalog-detail .product:contains("Unittest: Bundle")')->count()); |
|
200
|
200
|
} |
|
201
|
201
|
|
|
202
|
202
|
|
|
203
|
203
|
public function testMiniComponent() |
|
204
|
204
|
{ |
|
205
|
|
- $mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\BasketController' ) |
|
206
|
|
- ->setMethods( array( 'getOutput' ) ) |
|
|
205
|
+ $mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\BasketController') |
|
|
206
|
+ ->setMethods(array('getOutput')) |
|
207
|
207
|
->disableOriginalConstructor() |
|
208
|
208
|
->getMock(); |
|
209
|
209
|
|
|
210
|
|
- $mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( 'test' ) ); |
|
|
210
|
+ $mock->expects($this->once())->method('getOutput')->will($this->returnValue('test')); |
|
211
|
211
|
|
|
212
|
|
- $this->assertEquals( 'test', $mock->miniComponentAction() ); |
|
|
212
|
+ $this->assertEquals('test', $mock->miniComponentAction()); |
|
213
|
213
|
} |
|
214
|
214
|
|
|
215
|
215
|
|
|
216
|
216
|
public function testRelatedComponent() |
|
217
|
217
|
{ |
|
218
|
|
- $mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\BasketController' ) |
|
219
|
|
- ->setMethods( array( 'getOutput' ) ) |
|
|
218
|
+ $mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\BasketController') |
|
|
219
|
+ ->setMethods(array('getOutput')) |
|
220
|
220
|
->disableOriginalConstructor() |
|
221
|
221
|
->getMock(); |
|
222
|
222
|
|
|
223
|
|
- $mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( 'test' ) ); |
|
|
223
|
+ $mock->expects($this->once())->method('getOutput')->will($this->returnValue('test')); |
|
224
|
224
|
|
|
225
|
|
- $this->assertEquals( 'test', $mock->relatedComponentAction() ); |
|
|
225
|
+ $this->assertEquals('test', $mock->relatedComponentAction()); |
|
226
|
226
|
} |
|
227
|
227
|
|
|
228
|
228
|
|
|
229
|
229
|
public function testStandardComponent() |
|
230
|
230
|
{ |
|
231
|
|
- $mock = $this->getMockBuilder( 'Aimeos\ShopBundle\Controller\BasketController' ) |
|
232
|
|
- ->setMethods( array( 'getOutput' ) ) |
|
|
231
|
+ $mock = $this->getMockBuilder('Aimeos\ShopBundle\Controller\BasketController') |
|
|
232
|
+ ->setMethods(array('getOutput')) |
|
233
|
233
|
->disableOriginalConstructor() |
|
234
|
234
|
->getMock(); |
|
235
|
235
|
|
|
236
|
|
- $mock->expects( $this->once() )->method( 'getOutput' )->will( $this->returnValue( 'test' ) ); |
|
|
236
|
+ $mock->expects($this->once())->method('getOutput')->will($this->returnValue('test')); |
|
237
|
237
|
|
|
238
|
|
- $this->assertEquals( 'test', $mock->standardComponentAction() ); |
|
|
238
|
+ $this->assertEquals('test', $mock->standardComponentAction()); |
|
239
|
239
|
} |
|
240
|
240
|
} |