]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Tests/Controller/ConfigControllerTest.php
fix tests for FosUser
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Tests / Controller / ConfigControllerTest.php
1 <?php
2
3 namespace Wallabag\CoreBundle\Tests\Controller;
4
5 use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
6
7 class ConfigControllerTest extends WallabagCoreTestCase
8 {
9 public function testLogin()
10 {
11 $client = $this->getClient();
12
13 $client->request('GET', '/new');
14
15 $this->assertEquals(302, $client->getResponse()->getStatusCode());
16 $this->assertContains('login', $client->getResponse()->headers->get('location'));
17 }
18
19 public function testIndex()
20 {
21 $this->logInAs('admin');
22 $client = $this->getClient();
23
24 $crawler = $client->request('GET', '/config');
25
26 $this->assertEquals(200, $client->getResponse()->getStatusCode());
27
28 $this->assertCount(1, $crawler->filter('button[id=config_save]'));
29 $this->assertCount(1, $crawler->filter('button[id=change_passwd_save]'));
30 $this->assertCount(1, $crawler->filter('button[id=update_user_save]'));
31 $this->assertCount(1, $crawler->filter('button[id=new_user_save]'));
32 $this->assertCount(1, $crawler->filter('button[id=rss_config_save]'));
33 }
34
35 public function testUpdate()
36 {
37 $this->logInAs('admin');
38 $client = $this->getClient();
39
40 $crawler = $client->request('GET', '/config');
41
42 $this->assertEquals(200, $client->getResponse()->getStatusCode());
43
44 $form = $crawler->filter('button[id=config_save]')->form();
45
46 $data = array(
47 'config[theme]' => 0,
48 'config[items_per_page]' => '30',
49 'config[language]' => 'fr_FR',
50 );
51
52 $client->submit($form, $data);
53
54 $this->assertEquals(302, $client->getResponse()->getStatusCode());
55
56 $crawler = $client->followRedirect();
57
58 $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
59 $this->assertContains('Config saved', $alert[0]);
60 }
61
62 public function dataForUpdateFailed()
63 {
64 return array(
65 array(array(
66 'config[theme]' => 0,
67 'config[items_per_page]' => '',
68 'config[language]' => 'fr_FR',
69 )),
70 array(array(
71 'config[theme]' => 0,
72 'config[items_per_page]' => '12',
73 'config[language]' => '',
74 )),
75 );
76 }
77
78 /**
79 * @dataProvider dataForUpdateFailed
80 */
81 public function testUpdateFailed($data)
82 {
83 $this->logInAs('admin');
84 $client = $this->getClient();
85
86 $crawler = $client->request('GET', '/config');
87
88 $this->assertEquals(200, $client->getResponse()->getStatusCode());
89
90 $form = $crawler->filter('button[id=config_save]')->form();
91
92 $crawler = $client->submit($form, $data);
93
94 $this->assertEquals(200, $client->getResponse()->getStatusCode());
95
96 $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(array('_text')));
97 $this->assertContains('This value should not be blank', $alert[0]);
98 }
99
100 public function dataForChangePasswordFailed()
101 {
102 return array(
103 array(
104 array(
105 'change_passwd[old_password]' => 'material',
106 'change_passwd[new_password][first]' => '',
107 'change_passwd[new_password][second]' => '',
108 ),
109 'Wrong value for your current password',
110 ),
111 array(
112 array(
113 'change_passwd[old_password]' => 'mypassword',
114 'change_passwd[new_password][first]' => '',
115 'change_passwd[new_password][second]' => '',
116 ),
117 'This value should not be blank',
118 ),
119 array(
120 array(
121 'change_passwd[old_password]' => 'mypassword',
122 'change_passwd[new_password][first]' => 'hop',
123 'change_passwd[new_password][second]' => '',
124 ),
125 'The password fields must match',
126 ),
127 array(
128 array(
129 'change_passwd[old_password]' => 'mypassword',
130 'change_passwd[new_password][first]' => 'hop',
131 'change_passwd[new_password][second]' => 'hop',
132 ),
133 'Password should by at least',
134 ),
135 );
136 }
137
138 /**
139 * @dataProvider dataForChangePasswordFailed
140 */
141 public function testChangePasswordFailed($data, $expectedMessage)
142 {
143 $this->logInAs('admin');
144 $client = $this->getClient();
145
146 $crawler = $client->request('GET', '/config');
147
148 $this->assertEquals(200, $client->getResponse()->getStatusCode());
149
150 $form = $crawler->filter('button[id=change_passwd_save]')->form();
151
152 $crawler = $client->submit($form, $data);
153
154 $this->assertEquals(200, $client->getResponse()->getStatusCode());
155
156 $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(array('_text')));
157 $this->assertContains($expectedMessage, $alert[0]);
158 }
159
160 public function testChangePassword()
161 {
162 $this->logInAs('admin');
163 $client = $this->getClient();
164
165 $crawler = $client->request('GET', '/config');
166
167 $this->assertEquals(200, $client->getResponse()->getStatusCode());
168
169 $form = $crawler->filter('button[id=change_passwd_save]')->form();
170
171 $data = array(
172 'change_passwd[old_password]' => 'mypassword',
173 'change_passwd[new_password][first]' => 'mypassword',
174 'change_passwd[new_password][second]' => 'mypassword',
175 );
176
177 $client->submit($form, $data);
178
179 $this->assertEquals(302, $client->getResponse()->getStatusCode());
180
181 $crawler = $client->followRedirect();
182
183 $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
184 $this->assertContains('Password updated', $alert[0]);
185 }
186
187 public function dataForUserFailed()
188 {
189 return array(
190 array(
191 array(
192 'update_user[name]' => '',
193 'update_user[email]' => '',
194 ),
195 'Please enter an email',
196 ),
197 array(
198 array(
199 'update_user[name]' => '',
200 'update_user[email]' => 'test',
201 ),
202 'The email is not valid',
203 ),
204 );
205 }
206
207 /**
208 * @dataProvider dataForUserFailed
209 */
210 public function testUserFailed($data, $expectedMessage)
211 {
212 $this->logInAs('admin');
213 $client = $this->getClient();
214
215 $crawler = $client->request('GET', '/config');
216
217 $this->assertEquals(200, $client->getResponse()->getStatusCode());
218
219 $form = $crawler->filter('button[id=update_user_save]')->form();
220
221 $crawler = $client->submit($form, $data);
222
223 $this->assertEquals(200, $client->getResponse()->getStatusCode());
224
225 $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(array('_text')));
226 $this->assertContains($expectedMessage, $alert[0]);
227 }
228
229 public function testUserUpdate()
230 {
231 $this->logInAs('admin');
232 $client = $this->getClient();
233
234 $crawler = $client->request('GET', '/config');
235
236 $this->assertEquals(200, $client->getResponse()->getStatusCode());
237
238 $form = $crawler->filter('button[id=update_user_save]')->form();
239
240 $data = array(
241 'update_user[name]' => 'new name',
242 'update_user[email]' => 'admin@wallabag.io',
243 );
244
245 $client->submit($form, $data);
246
247 $this->assertEquals(302, $client->getResponse()->getStatusCode());
248
249 $crawler = $client->followRedirect();
250
251 $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
252 $this->assertContains('Information updated', $alert[0]);
253 }
254
255 public function dataForNewUserFailed()
256 {
257 return array(
258 array(
259 array(
260 'new_user[username]' => '',
261 'new_user[password]' => '',
262 'new_user[email]' => '',
263 ),
264 'Please enter a username',
265 ),
266 array(
267 array(
268 'new_user[username]' => 'a',
269 'new_user[password]' => 'mypassword',
270 'new_user[email]' => '',
271 ),
272 'The username is too short',
273 ),
274 array(
275 array(
276 'new_user[username]' => 'wallace',
277 'new_user[password]' => 'mypassword',
278 'new_user[email]' => 'test',
279 ),
280 'The email is not valid',
281 ),
282 array(
283 array(
284 'new_user[username]' => 'admin',
285 'new_user[password]' => 'wallacewallace',
286 'new_user[email]' => 'wallace@wallace.me',
287 ),
288 'The username is already used',
289 ),
290 );
291 }
292
293 /**
294 * @dataProvider dataForNewUserFailed
295 */
296 public function testNewUserFailed($data, $expectedMessage)
297 {
298 $this->logInAs('admin');
299 $client = $this->getClient();
300
301 $crawler = $client->request('GET', '/config');
302
303 $this->assertEquals(200, $client->getResponse()->getStatusCode());
304
305 $form = $crawler->filter('button[id=new_user_save]')->form();
306
307 $crawler = $client->submit($form, $data);
308
309 $this->assertEquals(200, $client->getResponse()->getStatusCode());
310
311 $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(array('_text')));
312 $this->assertContains($expectedMessage, $alert[0]);
313 }
314
315 public function testNewUserCreated()
316 {
317 $this->logInAs('admin');
318 $client = $this->getClient();
319
320 $crawler = $client->request('GET', '/config');
321
322 $this->assertEquals(200, $client->getResponse()->getStatusCode());
323
324 $form = $crawler->filter('button[id=new_user_save]')->form();
325
326 $data = array(
327 'new_user[username]' => 'wallace',
328 'new_user[password]' => 'wallace1',
329 'new_user[email]' => 'wallace@wallace.me',
330 );
331
332 $client->submit($form, $data);
333
334 $this->assertEquals(302, $client->getResponse()->getStatusCode());
335
336 $crawler = $client->followRedirect();
337
338 $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
339 $this->assertContains('User "wallace" added', $alert[0]);
340 }
341
342 public function testRssUpdateResetToken()
343 {
344 $this->logInAs('admin');
345 $client = $this->getClient();
346
347 // reset the token
348 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
349 $user = $em
350 ->getRepository('WallabagCoreBundle:User')
351 ->findOneByUsername('admin');
352
353 if (!$user) {
354 $this->markTestSkipped('No user found in db.');
355 }
356
357 $config = $user->getConfig();
358 $config->setRssToken(null);
359 $em->persist($config);
360 $em->flush();
361
362 $crawler = $client->request('GET', '/config');
363
364 $this->assertEquals(200, $client->getResponse()->getStatusCode());
365
366 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(array('_text')));
367 $this->assertContains('You need to generate a token first.', $body[0]);
368
369 $client->request('GET', '/generate-token');
370 $this->assertEquals(302, $client->getResponse()->getStatusCode());
371
372 $crawler = $client->followRedirect();
373
374 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(array('_text')));
375 $this->assertNotContains('You need to generate a token first.', $body[0]);
376 }
377
378 public function testGenerateTokenAjax()
379 {
380 $this->logInAs('admin');
381 $client = $this->getClient();
382
383 $client->request(
384 'GET',
385 '/generate-token',
386 array(),
387 array(),
388 array('HTTP_X-Requested-With' => 'XMLHttpRequest')
389 );
390
391 $this->assertEquals(200, $client->getResponse()->getStatusCode());
392 $content = json_decode($client->getResponse()->getContent(), true);
393 $this->assertArrayHasKey('token', $content);
394 }
395
396 public function testRssUpdate()
397 {
398 $this->logInAs('admin');
399 $client = $this->getClient();
400
401 $crawler = $client->request('GET', '/config');
402
403 if (500 == $client->getResponse()->getStatusCode()) {
404 var_export($client->getResponse()->getContent());
405 die();
406 }
407
408 $this->assertEquals(200, $client->getResponse()->getStatusCode());
409
410 $form = $crawler->filter('button[id=rss_config_save]')->form();
411
412 $data = array(
413 'rss_config[rss_limit]' => 12,
414 );
415
416 $client->submit($form, $data);
417
418 $this->assertEquals(302, $client->getResponse()->getStatusCode());
419
420 $crawler = $client->followRedirect();
421
422 $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text')));
423 $this->assertContains('RSS information updated', $alert[0]);
424 }
425
426 public function dataForRssFailed()
427 {
428 return array(
429 array(
430 array(
431 'rss_config[rss_limit]' => 0,
432 ),
433 'This value should be 1 or more.',
434 ),
435 array(
436 array(
437 'rss_config[rss_limit]' => 1000000000000,
438 ),
439 'This will certainly kill the app',
440 ),
441 );
442 }
443
444 /**
445 * @dataProvider dataForRssFailed
446 */
447 public function testRssFailed($data, $expectedMessage)
448 {
449 $this->logInAs('admin');
450 $client = $this->getClient();
451
452 $crawler = $client->request('GET', '/config');
453
454 $this->assertEquals(200, $client->getResponse()->getStatusCode());
455
456 $form = $crawler->filter('button[id=rss_config_save]')->form();
457
458 $crawler = $client->submit($form, $data);
459
460 $this->assertEquals(200, $client->getResponse()->getStatusCode());
461
462 $this->assertGreaterThan(1, $alert = $crawler->filter('body')->extract(array('_text')));
463 $this->assertContains($expectedMessage, $alert[0]);
464 }
465 }