]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
Fix phpcs
[github/wallabag/wallabag.git] / tests / Wallabag / CoreBundle / Controller / EntryControllerTest.php
CommitLineData
93fd4692
NL
1<?php
2
23634d5d 3namespace Tests\Wallabag\CoreBundle\Controller;
93fd4692 4
23634d5d 5use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
65cd8a4a 6use Wallabag\CoreBundle\Entity\Config;
2863bf2a 7use Wallabag\CoreBundle\Entity\Entry;
9de9f1e5 8use Wallabag\CoreBundle\Entity\SiteCredential;
93fd4692 9
769e19dc 10class EntryControllerTest extends WallabagCoreTestCase
93fd4692 11{
cc797127 12 const An_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE = 'http://www.lemonde.fr/judo/article/2017/11/11/judo-la-decima-de-teddy-riner_5213605_1556020.html';
be085c3d 13 public $downloadImagesEnabled = false;
02d17813
JB
14 public $url = 'http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html';
15
be085c3d
JB
16 /**
17 * @after
18 *
19 * Ensure download_images_enabled is disabled after each script
20 */
21 public function tearDownImagesEnabled()
22 {
23 if ($this->downloadImagesEnabled) {
24 $client = static::createClient();
25 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
26
27 $this->downloadImagesEnabled = false;
28 }
29 }
30
3b815d2d
J
31 public function testLogin()
32 {
33 $client = $this->getClient();
34
eb3bd7ef 35 $client->request('GET', '/new');
3b815d2d 36
f808b016 37 $this->assertSame(302, $client->getResponse()->getStatusCode());
3b815d2d
J
38 $this->assertContains('login', $client->getResponse()->headers->get('location'));
39 }
40
5c072d2b
NL
41 public function testQuickstart()
42 {
43 $this->logInAs('empty');
44 $client = $this->getClient();
45
46 $client->request('GET', '/unread/list');
38520658 47 $this->assertSame(302, $client->getResponse()->getStatusCode());
4f9cf232 48 $crawler = $client->followRedirect();
5c072d2b 49
f808b016 50 $this->assertSame(200, $client->getResponse()->getStatusCode());
4094ea47 51 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
24ad330b 52 $this->assertContains('quickstart.intro.title', $body[0]);
5c072d2b
NL
53
54 // Test if quickstart is disabled when user has 1 entry
55 $crawler = $client->request('GET', '/new');
56
f808b016 57 $this->assertSame(200, $client->getResponse()->getStatusCode());
5c072d2b 58
0d42217e 59 $form = $crawler->filter('form[name=entry]')->form();
5c072d2b 60
4094ea47 61 $data = [
78833672 62 'entry[url]' => $this->url,
4094ea47 63 ];
5c072d2b
NL
64
65 $client->submit($form, $data);
f808b016 66 $this->assertSame(302, $client->getResponse()->getStatusCode());
5c072d2b
NL
67 $client->followRedirect();
68
4f9cf232 69 $crawler = $client->request('GET', '/unread/list');
4094ea47 70 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4f9cf232 71 $this->assertContains('entry.list.number_on_the_page', $body[0]);
5c072d2b
NL
72 }
73
9c0c8820 74 public function testGetNew()
93fd4692 75 {
eb3bd7ef 76 $this->logInAs('admin');
7ab5eb95 77 $this->useTheme('baggy');
3b815d2d 78 $client = $this->getClient();
93fd4692 79
aa6e27cf 80 $crawler = $client->request('GET', '/new');
93fd4692 81
f808b016 82 $this->assertSame(200, $client->getResponse()->getStatusCode());
9c0c8820
J
83
84 $this->assertCount(1, $crawler->filter('input[type=url]'));
0d42217e 85 $this->assertCount(1, $crawler->filter('form[name=entry]'));
9c0c8820
J
86 }
87
880a0e1c
NL
88 public function testPostNewViaBookmarklet()
89 {
90 $this->logInAs('admin');
7ab5eb95 91 $this->useTheme('baggy');
880a0e1c
NL
92 $client = $this->getClient();
93
94 $crawler = $client->request('GET', '/');
95
96 $this->assertCount(4, $crawler->filter('div[class=entry]'));
97
98 // Good URL
4094ea47 99 $client->request('GET', '/bookmarklet', ['url' => $this->url]);
f808b016 100 $this->assertSame(302, $client->getResponse()->getStatusCode());
5c072d2b 101 $client->followRedirect();
880a0e1c
NL
102 $crawler = $client->request('GET', '/');
103 $this->assertCount(5, $crawler->filter('div[class=entry]'));
104
105 $em = $client->getContainer()
106 ->get('doctrine.orm.entity_manager');
107 $entry = $em
108 ->getRepository('WallabagCoreBundle:Entry')
78833672 109 ->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
880a0e1c
NL
110 $em->remove($entry);
111 $em->flush();
112 }
113
9c0c8820
J
114 public function testPostNewEmpty()
115 {
eb3bd7ef 116 $this->logInAs('admin');
3b815d2d 117 $client = $this->getClient();
9c0c8820
J
118
119 $crawler = $client->request('GET', '/new');
120
f808b016 121 $this->assertSame(200, $client->getResponse()->getStatusCode());
9c0c8820 122
0d42217e 123 $form = $crawler->filter('form[name=entry]')->form();
9c0c8820
J
124
125 $crawler = $client->submit($form);
126
f808b016 127 $this->assertSame(200, $client->getResponse()->getStatusCode());
4094ea47 128 $this->assertCount(1, $alert = $crawler->filter('form ul li')->extract(['_text']));
f808b016 129 $this->assertSame('This value should not be blank.', $alert[0]);
9c0c8820
J
130 }
131
8a493541 132 /**
75c48e3a 133 * This test will require an internet connection.
8a493541 134 */
9c0c8820
J
135 public function testPostNewOk()
136 {
eb3bd7ef 137 $this->logInAs('admin');
3b815d2d 138 $client = $this->getClient();
9c0c8820
J
139
140 $crawler = $client->request('GET', '/new');
141
f808b016 142 $this->assertSame(200, $client->getResponse()->getStatusCode());
9c0c8820 143
0d42217e 144 $form = $crawler->filter('form[name=entry]')->form();
9c0c8820 145
4094ea47 146 $data = [
02d17813 147 'entry[url]' => $this->url,
4094ea47 148 ];
9c0c8820
J
149
150 $client->submit($form, $data);
151
f808b016 152 $this->assertSame(302, $client->getResponse()->getStatusCode());
9c0c8820 153
a0d6ccc5
JB
154 $content = $client->getContainer()
155 ->get('doctrine.orm.entity_manager')
156 ->getRepository('WallabagCoreBundle:Entry')
157 ->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
158
7b0b3622
NL
159 $author = $content->getPublishedBy();
160
a0d6ccc5 161 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
f808b016 162 $this->assertSame($this->url, $content->getUrl());
a0d6ccc5 163 $this->assertContains('Google', $content->getTitle());
f808b016 164 $this->assertSame('fr', $content->getLanguage());
d81bf605 165 $this->assertSame('2015-03-28 11:43:19', $content->getPublishedAt()->format('Y-m-d H:i:s'));
f808b016 166 $this->assertSame('Morgane Tual', $author[0]);
dda6a6ad 167 $this->assertArrayHasKey('x-varnish1', $content->getHeaders());
a0d6ccc5 168 }
9c0c8820 169
e9c80c99
NL
170 public function testPostWithMultipleAuthors()
171 {
172 $url = 'http://www.liberation.fr/planete/2017/04/05/donald-trump-et-xi-jinping-tentative-de-flirt-en-floride_1560768';
173 $this->logInAs('admin');
174 $client = $this->getClient();
175
176 $crawler = $client->request('GET', '/new');
177
f808b016 178 $this->assertSame(200, $client->getResponse()->getStatusCode());
e9c80c99
NL
179
180 $form = $crawler->filter('form[name=entry]')->form();
181
182 $data = [
183 'entry[url]' => $url,
184 ];
185
186 $client->submit($form, $data);
187
f808b016 188 $this->assertSame(302, $client->getResponse()->getStatusCode());
e9c80c99
NL
189
190 $content = $client->getContainer()
191 ->get('doctrine.orm.entity_manager')
192 ->getRepository('WallabagCoreBundle:Entry')
193 ->findByUrlAndUserId($url, $this->getLoggedInUserId());
194
195 $authors = $content->getPublishedBy();
f808b016
JB
196 $this->assertSame('2017-04-05 19:26:13', $content->getPublishedAt()->format('Y-m-d H:i:s'));
197 $this->assertSame('fr', $content->getLanguage());
198 $this->assertSame('Raphaël Balenieri, correspondant à Pékin', $authors[0]);
199 $this->assertSame('Frédéric Autran, correspondant à New York', $authors[1]);
e9c80c99
NL
200 }
201
a0d6ccc5
JB
202 public function testPostNewOkUrlExist()
203 {
204 $this->logInAs('admin');
7ab5eb95 205
206 $entry = new Entry($this->getLoggedInUser());
207 $entry->setUrl($this->url);
208 $this->getEntityManager()->persist($entry);
209 $this->getEntityManager()->flush();
210
a0d6ccc5
JB
211 $client = $this->getClient();
212
213 $crawler = $client->request('GET', '/new');
214
f808b016 215 $this->assertSame(200, $client->getResponse()->getStatusCode());
a0d6ccc5 216
0d42217e 217 $form = $crawler->filter('form[name=entry]')->form();
a0d6ccc5 218
4094ea47 219 $data = [
a0d6ccc5 220 'entry[url]' => $this->url,
4094ea47 221 ];
a0d6ccc5
JB
222
223 $client->submit($form, $data);
224
f808b016 225 $this->assertSame(302, $client->getResponse()->getStatusCode());
a0d6ccc5 226 $this->assertContains('/view/', $client->getResponse()->getTargetUrl());
9c0c8820
J
227 }
228
19ca0b2f
JB
229 public function testPostNewOkUrlExistWithAccent()
230 {
231 $this->logInAs('admin');
232 $client = $this->getClient();
233
234 $url = 'http://www.aritylabs.com/post/106091708292/des-contr%C3%B4leurs-optionnels-gr%C3%A2ce-%C3%A0-constmissing';
235
236 $crawler = $client->request('GET', '/new');
237
f808b016 238 $this->assertSame(200, $client->getResponse()->getStatusCode());
19ca0b2f
JB
239
240 $form = $crawler->filter('form[name=entry]')->form();
241
242 $data = [
243 'entry[url]' => $url,
244 ];
245
246 $client->submit($form, $data);
247
248 $crawler = $client->request('GET', '/new');
249
f808b016 250 $this->assertSame(200, $client->getResponse()->getStatusCode());
19ca0b2f
JB
251
252 $form = $crawler->filter('form[name=entry]')->form();
253
254 $data = [
255 'entry[url]' => $url,
256 ];
a0d6ccc5
JB
257
258 $client->submit($form, $data);
259
f808b016 260 $this->assertSame(302, $client->getResponse()->getStatusCode());
a0d6ccc5 261 $this->assertContains('/view/', $client->getResponse()->getTargetUrl());
9c0c8820
J
262 }
263
958671a7
KG
264 /**
265 * This test will require an internet connection.
266 */
3be04745 267 public function testPostNewThatWillBeTagged()
958671a7
KG
268 {
269 $this->logInAs('admin');
270 $client = $this->getClient();
271
272 $crawler = $client->request('GET', '/new');
273
f808b016 274 $this->assertSame(200, $client->getResponse()->getStatusCode());
958671a7 275
0d42217e 276 $form = $crawler->filter('form[name=entry]')->form();
958671a7 277
4094ea47 278 $data = [
958671a7 279 'entry[url]' => $url = 'https://github.com/wallabag/wallabag',
4094ea47 280 ];
958671a7
KG
281
282 $client->submit($form, $data);
283
f808b016 284 $this->assertSame(302, $client->getResponse()->getStatusCode());
3be04745 285 $this->assertContains('/', $client->getResponse()->getTargetUrl());
958671a7
KG
286
287 $em = $client->getContainer()
288 ->get('doctrine.orm.entity_manager');
289 $entry = $em
290 ->getRepository('WallabagCoreBundle:Entry')
291 ->findOneByUrl($url);
69edb774
KG
292 $tags = $entry->getTags();
293
fdd725f5 294 $this->assertCount(2, $tags);
7ab5eb95 295 $this->assertContains('wallabag', $tags);
f808b016 296 $this->assertSame('en', $entry->getLanguage());
958671a7
KG
297
298 $em->remove($entry);
299 $em->flush();
3be04745
JB
300
301 // and now re-submit it to test the cascade persistence for tags after entry removal
302 // related https://github.com/wallabag/wallabag/issues/2121
303 $crawler = $client->request('GET', '/new');
304
f808b016 305 $this->assertSame(200, $client->getResponse()->getStatusCode());
3be04745
JB
306
307 $form = $crawler->filter('form[name=entry]')->form();
308
309 $data = [
310 'entry[url]' => $url = 'https://github.com/wallabag/wallabag/tree/master',
311 ];
312
313 $client->submit($form, $data);
314
f808b016 315 $this->assertSame(302, $client->getResponse()->getStatusCode());
3be04745
JB
316 $this->assertContains('/', $client->getResponse()->getTargetUrl());
317
318 $entry = $em
319 ->getRepository('WallabagCoreBundle:Entry')
320 ->findOneByUrl($url);
321
322 $tags = $entry->getTags();
323
fdd725f5 324 $this->assertCount(2, $tags);
7ab5eb95 325 $this->assertContains('wallabag', $tags);
3be04745
JB
326
327 $em->remove($entry);
328 $em->flush();
958671a7
KG
329 }
330
9c0c8820
J
331 public function testArchive()
332 {
eb3bd7ef 333 $this->logInAs('admin');
3b815d2d 334 $client = $this->getClient();
9c0c8820 335
9fb6ac83 336 $client->request('GET', '/archive/list');
9c0c8820 337
f808b016 338 $this->assertSame(200, $client->getResponse()->getStatusCode());
9c0c8820
J
339 }
340
d5d16121
NL
341 public function testUntagged()
342 {
343 $this->logInAs('admin');
344 $client = $this->getClient();
345
346 $client->request('GET', '/untagged/list');
347
f808b016 348 $this->assertSame(200, $client->getResponse()->getStatusCode());
d5d16121
NL
349 }
350
9c0c8820
J
351 public function testStarred()
352 {
eb3bd7ef 353 $this->logInAs('admin');
3b815d2d 354 $client = $this->getClient();
9c0c8820 355
9fb6ac83 356 $client->request('GET', '/starred/list');
9c0c8820 357
f808b016 358 $this->assertSame(200, $client->getResponse()->getStatusCode());
9c0c8820
J
359 }
360
671a2b88
ML
361 public function testRangeException()
362 {
363 $this->logInAs('admin');
364 $client = $this->getClient();
365
366 $client->request('GET', '/all/list/900');
367
f808b016
JB
368 $this->assertSame(302, $client->getResponse()->getStatusCode());
369 $this->assertSame('/all/list', $client->getResponse()->getTargetUrl());
671a2b88
ML
370 }
371
9c0c8820
J
372 public function testView()
373 {
eb3bd7ef 374 $this->logInAs('admin');
3b815d2d 375 $client = $this->getClient();
9c0c8820 376
7ab5eb95 377 $entry = new Entry($this->getLoggedInUser());
378 $entry->setUrl('http://example.com/foo');
379 $entry->setTitle('title foo');
380 $entry->setContent('foo bar baz');
381 $this->getEntityManager()->persist($entry);
382 $this->getEntityManager()->flush();
9c0c8820 383
f808b016 384 $crawler = $client->request('GET', '/view/' . $entry->getId());
9c0c8820 385
f808b016 386 $this->assertSame(200, $client->getResponse()->getStatusCode());
4094ea47 387 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
7ab5eb95 388 $this->assertContains($entry->getTitle(), $body[0]);
93fd4692 389 }
eb3bd7ef 390
831b02aa 391 /**
831b02aa
JB
392 * This test will require an internet connection.
393 */
394 public function testReload()
395 {
396 $this->logInAs('admin');
397 $client = $this->getClient();
398
7ab5eb95 399 $entry = new Entry($this->getLoggedInUser());
400 $entry->setUrl($this->url);
401 $entry->setTitle('title foo');
402 $entry->setContent('');
403 $this->getEntityManager()->persist($entry);
404 $this->getEntityManager()->flush();
405 $this->getEntityManager()->clear();
ac8cf632 406
f808b016 407 $client->request('GET', '/reload/' . $entry->getId());
831b02aa 408
f808b016 409 $this->assertSame(302, $client->getResponse()->getStatusCode());
831b02aa 410
7ab5eb95 411 $entry = $this->getEntityManager()
831b02aa 412 ->getRepository('WallabagCoreBundle:Entry')
7ab5eb95 413 ->find($entry->getId());
831b02aa 414
7ab5eb95 415 $this->assertNotEmpty($entry->getContent());
831b02aa
JB
416 }
417
2297d60f
JB
418 public function testReloadWithFetchingFailed()
419 {
420 $this->logInAs('admin');
421 $client = $this->getClient();
422
7ab5eb95 423 $entry = new Entry($this->getLoggedInUser());
424 $entry->setUrl('http://0.0.0.0/failed.html');
425 $this->getEntityManager()->persist($entry);
426 $this->getEntityManager()->flush();
2297d60f 427
f808b016 428 $client->request('GET', '/reload/' . $entry->getId());
2297d60f 429
f808b016 430 $this->assertSame(302, $client->getResponse()->getStatusCode());
2297d60f
JB
431
432 // force EntityManager to clear previous entity
433 // otherwise, retrieve the same entity will retrieve change from the previous request :0
7ab5eb95 434 $this->getEntityManager()->clear();
435 $newContent = $this->getEntityManager()
2297d60f 436 ->getRepository('WallabagCoreBundle:Entry')
7ab5eb95 437 ->find($entry->getId());
2297d60f 438
f808b016 439 $this->assertNotSame($client->getContainer()->getParameter('wallabag_core.fetching_error_message'), $newContent->getContent());
2297d60f
JB
440 }
441
82d6d9cb
JB
442 public function testEdit()
443 {
444 $this->logInAs('admin');
445 $client = $this->getClient();
446
7ab5eb95 447 $entry = new Entry($this->getLoggedInUser());
448 $entry->setUrl($this->url);
449 $this->getEntityManager()->persist($entry);
450 $this->getEntityManager()->flush();
82d6d9cb 451
f808b016 452 $crawler = $client->request('GET', '/edit/' . $entry->getId());
82d6d9cb 453
f808b016 454 $this->assertSame(200, $client->getResponse()->getStatusCode());
82d6d9cb
JB
455
456 $this->assertCount(1, $crawler->filter('input[id=entry_title]'));
457 $this->assertCount(1, $crawler->filter('button[id=entry_save]'));
458 }
459
460 public function testEditUpdate()
461 {
462 $this->logInAs('admin');
463 $client = $this->getClient();
464
7ab5eb95 465 $entry = new Entry($this->getLoggedInUser());
466 $entry->setUrl($this->url);
467 $this->getEntityManager()->persist($entry);
468 $this->getEntityManager()->flush();
82d6d9cb 469
f808b016 470 $crawler = $client->request('GET', '/edit/' . $entry->getId());
82d6d9cb 471
f808b016 472 $this->assertSame(200, $client->getResponse()->getStatusCode());
82d6d9cb
JB
473
474 $form = $crawler->filter('button[type=submit]')->form();
475
4094ea47 476 $data = [
82d6d9cb 477 'entry[title]' => 'My updated title hehe :)',
97444566 478 'entry[origin_url]' => 'https://example.io',
4094ea47 479 ];
82d6d9cb
JB
480
481 $client->submit($form, $data);
482
f808b016 483 $this->assertSame(302, $client->getResponse()->getStatusCode());
82d6d9cb
JB
484
485 $crawler = $client->followRedirect();
486
97444566
KD
487 $this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text']));
488 $this->assertContains('My updated title hehe :)', $title[0]);
489 $this->assertGreaterThan(1, $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']));
490 $this->assertContains('example.io', trim($stats[1]));
491 }
492
493 public function testEditRemoveOriginUrl()
494 {
495 $this->logInAs('admin');
496 $client = $this->getClient();
497
498 $entry = new Entry($this->getLoggedInUser());
499 $entry->setUrl($this->url);
500 $this->getEntityManager()->persist($entry);
501 $this->getEntityManager()->flush();
502
503 $crawler = $client->request('GET', '/edit/' . $entry->getId());
504
505 $this->assertSame(200, $client->getResponse()->getStatusCode());
506
507 $form = $crawler->filter('button[type=submit]')->form();
508
509 $data = [
510 'entry[title]' => 'My updated title hehe :)',
511 'entry[origin_url]' => '',
512 ];
513
514 $client->submit($form, $data);
515
516 $this->assertSame(302, $client->getResponse()->getStatusCode());
517
518 $crawler = $client->followRedirect();
519
520 $this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text']));
521 $this->assertContains('My updated title hehe :)', $title[0]);
eae8138b 522 $this->assertSame(1, count($stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text'])));
97444566 523 $this->assertNotContains('example.io', trim($stats[0]));
82d6d9cb
JB
524 }
525
eb3bd7ef
J
526 public function testToggleArchive()
527 {
528 $this->logInAs('admin');
529 $client = $this->getClient();
530
7ab5eb95 531 $entry = new Entry($this->getLoggedInUser());
532 $entry->setUrl($this->url);
533 $this->getEntityManager()->persist($entry);
534 $this->getEntityManager()->flush();
535 $this->getEntityManager()->clear();
eb3bd7ef 536
f808b016 537 $client->request('GET', '/archive/' . $entry->getId());
eb3bd7ef 538
f808b016 539 $this->assertSame(302, $client->getResponse()->getStatusCode());
eb3bd7ef
J
540
541 $res = $client->getContainer()
542 ->get('doctrine.orm.entity_manager')
543 ->getRepository('WallabagCoreBundle:Entry')
7ab5eb95 544 ->find($entry->getId());
eb3bd7ef 545
38520658 546 $this->assertSame(1, $res->isArchived());
eb3bd7ef
J
547 }
548
549 public function testToggleStar()
550 {
551 $this->logInAs('admin');
552 $client = $this->getClient();
553
7ab5eb95 554 $entry = new Entry($this->getLoggedInUser());
555 $entry->setUrl($this->url);
556 $this->getEntityManager()->persist($entry);
557 $this->getEntityManager()->flush();
558 $this->getEntityManager()->clear();
eb3bd7ef 559
f808b016 560 $client->request('GET', '/star/' . $entry->getId());
eb3bd7ef 561
f808b016 562 $this->assertSame(302, $client->getResponse()->getStatusCode());
eb3bd7ef
J
563
564 $res = $client->getContainer()
565 ->get('doctrine.orm.entity_manager')
566 ->getRepository('WallabagCoreBundle:Entry')
7ab5eb95 567 ->findOneById($entry->getId());
eb3bd7ef 568
38520658 569 $this->assertSame(1, $res->isStarred());
eb3bd7ef
J
570 }
571
572 public function testDelete()
573 {
574 $this->logInAs('admin');
575 $client = $this->getClient();
576
7ab5eb95 577 $entry = new Entry($this->getLoggedInUser());
578 $entry->setUrl($this->url);
579 $this->getEntityManager()->persist($entry);
580 $this->getEntityManager()->flush();
eb3bd7ef 581
f808b016 582 $client->request('GET', '/delete/' . $entry->getId());
eb3bd7ef 583
f808b016 584 $this->assertSame(302, $client->getResponse()->getStatusCode());
eb3bd7ef 585
f808b016 586 $client->request('GET', '/delete/' . $entry->getId());
eb3bd7ef 587
f808b016 588 $this->assertSame(404, $client->getResponse()->getStatusCode());
eb3bd7ef 589 }
3d2b2d62 590
2863bf2a
JB
591 /**
592 * It will create a new entry.
593 * Browse to it.
594 * Then remove it.
595 *
596 * And it'll check that user won't be redirected to the view page of the content when it had been removed
597 */
598 public function testViewAndDelete()
599 {
600 $this->logInAs('admin');
601 $client = $this->getClient();
602
ac8cf632
JB
603 $em = $client->getContainer()
604 ->get('doctrine.orm.entity_manager');
605
2863bf2a 606 // add a new content to be removed later
ac8cf632 607 $user = $em
2863bf2a
JB
608 ->getRepository('WallabagUserBundle:User')
609 ->findOneByUserName('admin');
610
611 $content = new Entry($user);
612 $content->setUrl('http://1.1.1.1/entry');
613 $content->setReadingTime(12);
614 $content->setDomainName('domain.io');
615 $content->setMimetype('text/html');
616 $content->setTitle('test title entry');
617 $content->setContent('This is my content /o/');
618 $content->setArchived(true);
619 $content->setLanguage('fr');
620
ac8cf632
JB
621 $em->persist($content);
622 $em->flush();
2863bf2a 623
f808b016
JB
624 $client->request('GET', '/view/' . $content->getId());
625 $this->assertSame(200, $client->getResponse()->getStatusCode());
2863bf2a 626
f808b016
JB
627 $client->request('GET', '/delete/' . $content->getId());
628 $this->assertSame(302, $client->getResponse()->getStatusCode());
2863bf2a
JB
629
630 $client->followRedirect();
f808b016 631 $this->assertSame(200, $client->getResponse()->getStatusCode());
2863bf2a
JB
632 }
633
3d2b2d62
J
634 public function testViewOtherUserEntry()
635 {
159986c4 636 $this->logInAs('admin');
3d2b2d62
J
637 $client = $this->getClient();
638
639 $content = $client->getContainer()
640 ->get('doctrine.orm.entity_manager')
641 ->getRepository('WallabagCoreBundle:Entry')
159986c4 642 ->findOneByUsernameAndNotArchived('bob');
3d2b2d62 643
f808b016 644 $client->request('GET', '/view/' . $content->getId());
3d2b2d62 645
f808b016 646 $this->assertSame(403, $client->getResponse()->getStatusCode());
3d2b2d62 647 }
26864574 648
3f357ee2 649 public function testFilterOnReadingTime()
26864574
NL
650 {
651 $this->logInAs('admin');
7ab5eb95 652 $this->useTheme('baggy');
26864574 653 $client = $this->getClient();
7ab5eb95 654 $entry = new Entry($this->getLoggedInUser());
655 $entry->setUrl($this->url);
656 $entry->setReadingTime(22);
657 $this->getEntityManager()->persist($entry);
658 $this->getEntityManager()->flush();
26864574
NL
659
660 $crawler = $client->request('GET', '/unread/list');
661
662 $form = $crawler->filter('button[id=submit-filter]')->form();
663
4094ea47 664 $data = [
d6a9e139
NL
665 'entry_filter[readingTime][right_number]' => 22,
666 'entry_filter[readingTime][left_number]' => 22,
4094ea47 667 ];
26864574
NL
668
669 $crawler = $client->submit($form, $data);
670
671 $this->assertCount(1, $crawler->filter('div[class=entry]'));
672 }
ab2c93c7 673
1b164717
JB
674 public function testFilterOnReadingTimeWithNegativeValue()
675 {
676 $this->logInAs('admin');
677 $client = $this->getClient();
678
679 $crawler = $client->request('GET', '/unread/list');
680
681 $form = $crawler->filter('button[id=submit-filter]')->form();
682
683 $data = [
684 'entry_filter[readingTime][right_number]' => -22,
685 'entry_filter[readingTime][left_number]' => -22,
686 ];
687
688 $crawler = $client->submit($form, $data);
689
690 // forcing negative value results in no entry displayed
691 $this->assertCount(0, $crawler->filter('div[class=entry]'));
692 }
693
95859e54
JB
694 public function testFilterOnReadingTimeOnlyUpper()
695 {
696 $this->logInAs('admin');
7ab5eb95 697 $this->useTheme('baggy');
95859e54
JB
698 $client = $this->getClient();
699
7ab5eb95 700 $crawler = $client->request('GET', '/all/list');
701 $this->assertCount(5, $crawler->filter('div[class=entry]'));
702
703 $entry = new Entry($this->getLoggedInUser());
704 $entry->setUrl($this->url);
705 $entry->setReadingTime(23);
706 $this->getEntityManager()->persist($entry);
707 $this->getEntityManager()->flush();
708
709 $crawler = $client->request('GET', '/all/list');
710 $this->assertCount(6, $crawler->filter('div[class=entry]'));
95859e54
JB
711
712 $form = $crawler->filter('button[id=submit-filter]')->form();
713
714 $data = [
715 'entry_filter[readingTime][right_number]' => 22,
716 ];
717
718 $crawler = $client->submit($form, $data);
719
7ab5eb95 720 $this->assertCount(5, $crawler->filter('div[class=entry]'));
95859e54
JB
721 }
722
723 public function testFilterOnReadingTimeOnlyLower()
724 {
725 $this->logInAs('admin');
7ab5eb95 726 $this->useTheme('baggy');
95859e54
JB
727 $client = $this->getClient();
728
729 $crawler = $client->request('GET', '/unread/list');
730
731 $form = $crawler->filter('button[id=submit-filter]')->form();
732
733 $data = [
734 'entry_filter[readingTime][left_number]' => 22,
735 ];
736
737 $crawler = $client->submit($form, $data);
738
7ab5eb95 739 $this->assertCount(0, $crawler->filter('div[class=entry]'));
740
741 $entry = new Entry($this->getLoggedInUser());
742 $entry->setUrl($this->url);
743 $entry->setReadingTime(23);
744 $this->getEntityManager()->persist($entry);
745 $this->getEntityManager()->flush();
746
747 $crawler = $client->submit($form, $data);
748 $this->assertCount(1, $crawler->filter('div[class=entry]'));
95859e54
JB
749 }
750
30334567
DB
751 public function testFilterOnUnreadStatus()
752 {
753 $this->logInAs('admin');
7ab5eb95 754 $this->useTheme('baggy');
30334567
DB
755 $client = $this->getClient();
756
757 $crawler = $client->request('GET', '/all/list');
758
759 $form = $crawler->filter('button[id=submit-filter]')->form();
760
761 $data = [
762 'entry_filter[isUnread]' => true,
763 ];
764
765 $crawler = $client->submit($form, $data);
766
7ab5eb95 767 $this->assertCount(4, $crawler->filter('div[class=entry]'));
768
769 $entry = new Entry($this->getLoggedInUser());
770 $entry->setUrl($this->url);
771 $entry->setArchived(false);
772 $this->getEntityManager()->persist($entry);
773 $this->getEntityManager()->flush();
774
775 $crawler = $client->submit($form, $data);
776
e9c80c99 777 $this->assertCount(5, $crawler->filter('div[class=entry]'));
30334567
DB
778 }
779
3f357ee2
NL
780 public function testFilterOnCreationDate()
781 {
782 $this->logInAs('admin');
7ab5eb95 783 $this->useTheme('baggy');
3f357ee2
NL
784 $client = $this->getClient();
785
786 $crawler = $client->request('GET', '/unread/list');
787
788 $form = $crawler->filter('button[id=submit-filter]')->form();
789
4094ea47 790 $data = [
3f357ee2 791 'entry_filter[createdAt][left_date]' => date('d/m/Y'),
8ce32af6 792 'entry_filter[createdAt][right_date]' => date('d/m/Y', strtotime('+1 day')),
4094ea47 793 ];
3f357ee2
NL
794
795 $crawler = $client->submit($form, $data);
796
7ab5eb95 797 $this->assertCount(5, $crawler->filter('div[class=entry]'));
3f357ee2 798
4094ea47 799 $data = [
f90af145
JB
800 'entry_filter[createdAt][left_date]' => date('d/m/Y'),
801 'entry_filter[createdAt][right_date]' => date('d/m/Y'),
4094ea47 802 ];
f90af145
JB
803
804 $crawler = $client->submit($form, $data);
805
7ab5eb95 806 $this->assertCount(5, $crawler->filter('div[class=entry]'));
f90af145 807
4094ea47 808 $data = [
3f357ee2 809 'entry_filter[createdAt][left_date]' => '01/01/1970',
8ce32af6 810 'entry_filter[createdAt][right_date]' => '01/01/1970',
4094ea47 811 ];
3f357ee2
NL
812
813 $crawler = $client->submit($form, $data);
814
815 $this->assertCount(0, $crawler->filter('div[class=entry]'));
3f357ee2
NL
816 }
817
ab2c93c7
NL
818 public function testPaginationWithFilter()
819 {
820 $this->logInAs('admin');
821 $client = $this->getClient();
ab2c93c7
NL
822 $crawler = $client->request('GET', '/config');
823
824 $form = $crawler->filter('button[id=config_save]')->form();
825
4094ea47 826 $data = [
ab2c93c7 827 'config[items_per_page]' => '1',
4094ea47 828 ];
ab2c93c7
NL
829
830 $client->submit($form, $data);
831
76cd8dbb 832 $parameters = '?entry_filter%5BreadingTime%5D%5Bleft_number%5D=&entry_filter%5BreadingTime%5D%5Bright_number%5D=';
ab2c93c7 833
f808b016 834 $client->request('GET', 'unread/list' . $parameters);
ab2c93c7
NL
835
836 $this->assertContains($parameters, $client->getResponse()->getContent());
e1779760
NL
837
838 // reset pagination
839 $crawler = $client->request('GET', '/config');
840 $form = $crawler->filter('button[id=config_save]')->form();
4094ea47 841 $data = [
e1779760 842 'config[items_per_page]' => '12',
4094ea47 843 ];
e1779760 844 $client->submit($form, $data);
ab2c93c7 845 }
443cecd2
NL
846
847 public function testFilterOnDomainName()
848 {
849 $this->logInAs('admin');
7ab5eb95 850 $this->useTheme('baggy');
443cecd2
NL
851 $client = $this->getClient();
852
853 $crawler = $client->request('GET', '/unread/list');
854 $form = $crawler->filter('button[id=submit-filter]')->form();
4094ea47 855 $data = [
02d17813 856 'entry_filter[domainName]' => 'domain',
4094ea47 857 ];
443cecd2
NL
858
859 $crawler = $client->submit($form, $data);
02d17813 860 $this->assertCount(5, $crawler->filter('div[class=entry]'));
443cecd2 861
00fc2b44
KD
862 $crawler = $client->request('GET', '/unread/list');
863 $form = $crawler->filter('button[id=submit-filter]')->form();
864 $data = [
865 'entry_filter[domainName]' => 'dOmain',
866 ];
867
868 $crawler = $client->submit($form, $data);
869 $this->assertCount(5, $crawler->filter('div[class=entry]'));
870
443cecd2 871 $form = $crawler->filter('button[id=submit-filter]')->form();
4094ea47 872 $data = [
8ce32af6 873 'entry_filter[domainName]' => 'wallabag',
4094ea47 874 ];
443cecd2
NL
875
876 $crawler = $client->submit($form, $data);
877 $this->assertCount(0, $crawler->filter('div[class=entry]'));
878 }
e1779760
NL
879
880 public function testFilterOnStatus()
881 {
882 $this->logInAs('admin');
7ab5eb95 883 $this->useTheme('baggy');
e1779760
NL
884 $client = $this->getClient();
885
886 $crawler = $client->request('GET', '/unread/list');
887 $form = $crawler->filter('button[id=submit-filter]')->form();
888 $form['entry_filter[isArchived]']->tick();
889 $form['entry_filter[isStarred]']->untick();
890
891 $crawler = $client->submit($form);
159986c4 892 $this->assertCount(1, $crawler->filter('div[class=entry]'));
e1779760
NL
893
894 $form = $crawler->filter('button[id=submit-filter]')->form();
895 $form['entry_filter[isArchived]']->untick();
896 $form['entry_filter[isStarred]']->tick();
897
898 $crawler = $client->submit($form);
02d17813 899 $this->assertCount(1, $crawler->filter('div[class=entry]'));
e1779760 900 }
497e0cad 901
e8911f7c
JB
902 public function testFilterOnIsPublic()
903 {
904 $this->logInAs('admin');
905 $this->useTheme('baggy');
906 $client = $this->getClient();
907
908 $crawler = $client->request('GET', '/unread/list');
909 $form = $crawler->filter('button[id=submit-filter]')->form();
910 $form['entry_filter[isPublic]']->tick();
911
912 $crawler = $client->submit($form);
913 $this->assertCount(0, $crawler->filter('div[class=entry]'));
914 }
915
497e0cad
NL
916 public function testPreviewPictureFilter()
917 {
918 $this->logInAs('admin');
7ab5eb95 919 $this->useTheme('baggy');
497e0cad
NL
920 $client = $this->getClient();
921
922 $crawler = $client->request('GET', '/unread/list');
923 $form = $crawler->filter('button[id=submit-filter]')->form();
924 $form['entry_filter[previewPicture]']->tick();
925
926 $crawler = $client->submit($form);
7ab5eb95 927 $this->assertCount(1, $crawler->filter('div[class=entry]'));
497e0cad 928 }
d4ebe5c5
JB
929
930 public function testFilterOnLanguage()
931 {
932 $this->logInAs('admin');
7ab5eb95 933 $this->useTheme('baggy');
d4ebe5c5
JB
934 $client = $this->getClient();
935
7ab5eb95 936 $entry = new Entry($this->getLoggedInUser());
937 $entry->setUrl($this->url);
938 $entry->setLanguage('fr');
939 $this->getEntityManager()->persist($entry);
940 $this->getEntityManager()->flush();
941
d4ebe5c5
JB
942 $crawler = $client->request('GET', '/unread/list');
943 $form = $crawler->filter('button[id=submit-filter]')->form();
4094ea47 944 $data = [
159986c4 945 'entry_filter[language]' => 'fr',
4094ea47 946 ];
d4ebe5c5
JB
947
948 $crawler = $client->submit($form, $data);
e9c80c99 949 $this->assertCount(3, $crawler->filter('div[class=entry]'));
d4ebe5c5
JB
950
951 $form = $crawler->filter('button[id=submit-filter]')->form();
4094ea47 952 $data = [
d4ebe5c5 953 'entry_filter[language]' => 'en',
4094ea47 954 ];
d4ebe5c5
JB
955
956 $crawler = $client->submit($form, $data);
957 $this->assertCount(2, $crawler->filter('div[class=entry]'));
958 }
a7e2218e 959
21d82c3c 960 public function testShareEntryPublicly()
a7e2218e
NL
961 {
962 $this->logInAs('admin');
963 $client = $this->getClient();
964
7ab5eb95 965 // sharing is enabled
966 $client->getContainer()->get('craue_config')->set('share_public', 1);
967
968 $content = new Entry($this->getLoggedInUser());
969 $content->setUrl($this->url);
970 $this->getEntityManager()->persist($content);
971 $this->getEntityManager()->flush();
972 $this->getEntityManager()->clear();
a7e2218e 973
7239082a 974 // no uid
f808b016
JB
975 $client->request('GET', '/share/' . $content->getUid());
976 $this->assertSame(404, $client->getResponse()->getStatusCode());
eddda878 977
7239082a 978 // generating the uid
f808b016
JB
979 $client->request('GET', '/share/' . $content->getId());
980 $this->assertSame(302, $client->getResponse()->getStatusCode());
eddda878 981
7239082a 982 // follow link with uid
eddda878 983 $crawler = $client->followRedirect();
f808b016 984 $this->assertSame(200, $client->getResponse()->getStatusCode());
eddda878
JB
985 $this->assertContains('max-age=25200', $client->getResponse()->headers->get('cache-control'));
986 $this->assertContains('public', $client->getResponse()->headers->get('cache-control'));
987 $this->assertContains('s-maxage=25200', $client->getResponse()->headers->get('cache-control'));
a7e2218e 988 $this->assertNotContains('no-cache', $client->getResponse()->headers->get('cache-control'));
21d82c3c
NL
989 $this->assertContains('og:title', $client->getResponse()->getContent());
990 $this->assertContains('og:type', $client->getResponse()->getContent());
991 $this->assertContains('og:url', $client->getResponse()->getContent());
d5c45d52 992 $this->assertContains('og:image', $client->getResponse()->getContent());
a7e2218e 993
eddda878
JB
994 // sharing is now disabled
995 $client->getContainer()->get('craue_config')->set('share_public', 0);
f808b016
JB
996 $client->request('GET', '/share/' . $content->getUid());
997 $this->assertSame(404, $client->getResponse()->getStatusCode());
eddda878 998
f808b016 999 $client->request('GET', '/view/' . $content->getId());
a7e2218e 1000 $this->assertContains('no-cache', $client->getResponse()->headers->get('cache-control'));
eddda878
JB
1001
1002 // removing the share
f808b016
JB
1003 $client->request('GET', '/share/delete/' . $content->getId());
1004 $this->assertSame(302, $client->getResponse()->getStatusCode());
eddda878
JB
1005
1006 // share is now disable
f808b016
JB
1007 $client->request('GET', '/share/' . $content->getUid());
1008 $this->assertSame(404, $client->getResponse()->getStatusCode());
a7e2218e 1009 }
d1495dd0
JB
1010
1011 public function testNewEntryWithDownloadImagesEnabled()
1012 {
be085c3d 1013 $this->downloadImagesEnabled = true;
d1495dd0
JB
1014 $this->logInAs('admin');
1015 $client = $this->getClient();
1016
d81bf605 1017 $url = self::An_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE;
d1495dd0
JB
1018 $client->getContainer()->get('craue_config')->set('download_images_enabled', 1);
1019
1020 $crawler = $client->request('GET', '/new');
1021
f808b016 1022 $this->assertSame(200, $client->getResponse()->getStatusCode());
d1495dd0
JB
1023
1024 $form = $crawler->filter('form[name=entry]')->form();
1025
1026 $data = [
1027 'entry[url]' => $url,
1028 ];
1029
1030 $client->submit($form, $data);
1031
f808b016 1032 $this->assertSame(302, $client->getResponse()->getStatusCode());
d1495dd0
JB
1033
1034 $em = $client->getContainer()
1035 ->get('doctrine.orm.entity_manager');
1036
1037 $entry = $em
1038 ->getRepository('WallabagCoreBundle:Entry')
1039 ->findByUrlAndUserId($url, $this->getLoggedInUserId());
1040
1041 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $entry);
f808b016 1042 $this->assertSame($url, $entry->getUrl());
d81bf605 1043 $this->assertContains('Judo', $entry->getTitle());
be085c3d 1044 // instead of checking for the filename (which might change) check that the image is now local
d81bf605 1045 $this->assertContains(rtrim($client->getContainer()->getParameter('domain_name'), '/') . '/assets/images/', $entry->getContent());
d1495dd0 1046
e0597476
JB
1047 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
1048 }
1049
1050 /**
1051 * @depends testNewEntryWithDownloadImagesEnabled
1052 */
1053 public function testRemoveEntryWithDownloadImagesEnabled()
1054 {
be085c3d 1055 $this->downloadImagesEnabled = true;
e0597476
JB
1056 $this->logInAs('admin');
1057 $client = $this->getClient();
1058
d81bf605 1059 $url = self::An_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE;
e0597476
JB
1060 $client->getContainer()->get('craue_config')->set('download_images_enabled', 1);
1061
7ab5eb95 1062 $crawler = $client->request('GET', '/new');
1063
f808b016 1064 $this->assertSame(200, $client->getResponse()->getStatusCode());
7ab5eb95 1065
1066 $form = $crawler->filter('form[name=entry]')->form();
1067
1068 $data = [
1069 'entry[url]' => $url,
1070 ];
1071
1072 $client->submit($form, $data);
1073
f808b016 1074 $this->assertSame(302, $client->getResponse()->getStatusCode());
7ab5eb95 1075
e0597476
JB
1076 $content = $client->getContainer()
1077 ->get('doctrine.orm.entity_manager')
1078 ->getRepository('WallabagCoreBundle:Entry')
1079 ->findByUrlAndUserId($url, $this->getLoggedInUserId());
1080
f808b016 1081 $client->request('GET', '/delete/' . $content->getId());
e0597476 1082
f808b016 1083 $this->assertSame(302, $client->getResponse()->getStatusCode());
d1495dd0
JB
1084
1085 $client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
1086 }
65cd8a4a
NL
1087
1088 public function testRedirectToHomepage()
1089 {
1090 $this->logInAs('empty');
1091 $client = $this->getClient();
1092
65cd8a4a 1093 // Redirect to homepage
7ab5eb95 1094 $config = $this->getLoggedInUser()->getConfig();
65cd8a4a 1095 $config->setActionMarkAsRead(Config::REDIRECT_TO_HOMEPAGE);
7ab5eb95 1096 $this->getEntityManager()->persist($config);
65cd8a4a 1097
7ab5eb95 1098 $entry = new Entry($this->getLoggedInUser());
1099 $entry->setUrl($this->url);
1100 $this->getEntityManager()->persist($entry);
65cd8a4a 1101
7ab5eb95 1102 $this->getEntityManager()->flush();
1103
f808b016
JB
1104 $client->request('GET', '/view/' . $entry->getId());
1105 $client->request('GET', '/archive/' . $entry->getId());
65cd8a4a 1106
f808b016
JB
1107 $this->assertSame(302, $client->getResponse()->getStatusCode());
1108 $this->assertSame('/', $client->getResponse()->headers->get('location'));
65cd8a4a
NL
1109 }
1110
1111 public function testRedirectToCurrentPage()
1112 {
1113 $this->logInAs('empty');
1114 $client = $this->getClient();
1115
65cd8a4a 1116 // Redirect to current page
7ab5eb95 1117 $config = $this->getLoggedInUser()->getConfig();
65cd8a4a 1118 $config->setActionMarkAsRead(Config::REDIRECT_TO_CURRENT_PAGE);
7ab5eb95 1119 $this->getEntityManager()->persist($config);
65cd8a4a 1120
7ab5eb95 1121 $entry = new Entry($this->getLoggedInUser());
1122 $entry->setUrl($this->url);
1123 $this->getEntityManager()->persist($entry);
65cd8a4a 1124
7ab5eb95 1125 $this->getEntityManager()->flush();
1126
f808b016
JB
1127 $client->request('GET', '/view/' . $entry->getId());
1128 $client->request('GET', '/archive/' . $entry->getId());
65cd8a4a 1129
f808b016
JB
1130 $this->assertSame(302, $client->getResponse()->getStatusCode());
1131 $this->assertContains('/view/' . $entry->getId(), $client->getResponse()->headers->get('location'));
65cd8a4a 1132 }
10b35097
NL
1133
1134 public function testFilterOnHttpStatus()
1135 {
1136 $this->logInAs('admin');
7ab5eb95 1137 $this->useTheme('baggy');
10b35097
NL
1138 $client = $this->getClient();
1139
7ab5eb95 1140 $entry = new Entry($this->getLoggedInUser());
1141 $entry->setUrl('http://www.lemonde.fr/incorrect-url/');
1142 $entry->setHttpStatus(404);
1143 $this->getEntityManager()->persist($entry);
10b35097 1144
7ab5eb95 1145 $this->getEntityManager()->flush();
10b35097
NL
1146
1147 $crawler = $client->request('GET', '/all/list');
1148 $form = $crawler->filter('button[id=submit-filter]')->form();
1149
1150 $data = [
1151 'entry_filter[httpStatus]' => 404,
1152 ];
1153
1154 $crawler = $client->submit($form, $data);
1155
1156 $this->assertCount(1, $crawler->filter('div[class=entry]'));
1157
7ab5eb95 1158 $entry = new Entry($this->getLoggedInUser());
1159 $entry->setUrl($this->url);
1160 $entry->setHttpStatus(200);
1161 $this->getEntityManager()->persist($entry);
10b35097 1162
7ab5eb95 1163 $entry = new Entry($this->getLoggedInUser());
1164 $entry->setUrl('http://www.nextinpact.com/news/101235-wallabag-alternative-libre-a-pocket-creuse-petit-a-petit-son-nid.htm');
1165 $entry->setHttpStatus(200);
1166 $this->getEntityManager()->persist($entry);
10b35097 1167
7ab5eb95 1168 $this->getEntityManager()->flush();
10b35097
NL
1169
1170 $crawler = $client->request('GET', '/all/list');
1171 $form = $crawler->filter('button[id=submit-filter]')->form();
1172
1173 $data = [
1174 'entry_filter[httpStatus]' => 200,
1175 ];
1176
1177 $crawler = $client->submit($form, $data);
1178
e9c80c99 1179 $this->assertCount(2, $crawler->filter('div[class=entry]'));
d215273c
NL
1180
1181 $crawler = $client->request('GET', '/all/list');
1182 $form = $crawler->filter('button[id=submit-filter]')->form();
1183
1184 $data = [
1185 'entry_filter[httpStatus]' => 1024,
1186 ];
1187
1188 $crawler = $client->submit($form, $data);
1189
e9c80c99 1190 $this->assertCount(8, $crawler->filter('div[class=entry]'));
10b35097 1191 }
32f455c1
NL
1192
1193 public function testSearch()
1194 {
1195 $this->logInAs('admin');
7ab5eb95 1196 $this->useTheme('baggy');
32f455c1
NL
1197 $client = $this->getClient();
1198
7ab5eb95 1199 $entry = new Entry($this->getLoggedInUser());
1200 $entry->setUrl($this->url);
1201 $entry->setTitle('test');
1202 $this->getEntityManager()->persist($entry);
1203 $this->getEntityManager()->flush();
1204
32f455c1
NL
1205 // Search on unread list
1206 $crawler = $client->request('GET', '/unread/list');
1207
1208 $form = $crawler->filter('form[name=search]')->form();
1209 $data = [
1210 'search_entry[term]' => 'title',
1211 ];
1212
1213 $crawler = $client->submit($form, $data);
1214
7ab5eb95 1215 $this->assertCount(4, $crawler->filter('div[class=entry]'));
32f455c1
NL
1216
1217 // Search on starred list
1218 $crawler = $client->request('GET', '/starred/list');
1219
7ab5eb95 1220 $entry = new Entry($this->getLoggedInUser());
1221 $entry->setUrl('http://localhost/foo/bar');
1222 $entry->setTitle('testeur');
1223 $entry->setStarred(true);
1224 $this->getEntityManager()->persist($entry);
1225 $this->getEntityManager()->flush();
1226
32f455c1
NL
1227 $form = $crawler->filter('form[name=search]')->form();
1228 $data = [
7ab5eb95 1229 'search_entry[term]' => 'testeur',
32f455c1
NL
1230 ];
1231
1232 $crawler = $client->submit($form, $data);
1233
1234 $this->assertCount(1, $crawler->filter('div[class=entry]'));
1235
32f455c1
NL
1236 $crawler = $client->request('GET', '/archive/list');
1237
7ab5eb95 1238 // Added new article to test on archive list
1239 $entry = new Entry($this->getLoggedInUser());
1240 $entry->setUrl('http://0.0.0.0/foo/baz/qux');
1241 $entry->setTitle('Le manège');
1242 $entry->setArchived(true);
1243 $this->getEntityManager()->persist($entry);
1244 $this->getEntityManager()->flush();
1245
32f455c1
NL
1246 $form = $crawler->filter('form[name=search]')->form();
1247 $data = [
1248 'search_entry[term]' => 'manège',
1249 ];
1250
1251 $crawler = $client->submit($form, $data);
1252
1253 $this->assertCount(1, $crawler->filter('div[class=entry]'));
f808b016 1254 $client->request('GET', '/delete/' . $entry->getId());
32f455c1
NL
1255
1256 // test on list of all articles
1257 $crawler = $client->request('GET', '/all/list');
1258
1259 $form = $crawler->filter('form[name=search]')->form();
1260 $data = [
995c2044 1261 'search_entry[term]' => 'wxcvbnqsdf', // a string not available in the database
32f455c1
NL
1262 ];
1263
1264 $crawler = $client->submit($form, $data);
1265
1266 $this->assertCount(0, $crawler->filter('div[class=entry]'));
eac09b48
KD
1267
1268 // test url search on list of all articles
7ab5eb95 1269 $entry = new Entry($this->getLoggedInUser());
1270 $entry->setUrl('http://domain/qux');
1271 $entry->setTitle('Le manège');
1272 $entry->setArchived(true);
1273 $this->getEntityManager()->persist($entry);
1274 $this->getEntityManager()->flush();
1275
eac09b48
KD
1276 $crawler = $client->request('GET', '/all/list');
1277
1278 $form = $crawler->filter('form[name=search]')->form();
1279 $data = [
1280 'search_entry[term]' => 'domain', // the search will match an entry with 'domain' in its url
1281 ];
1282
1283 $crawler = $client->submit($form, $data);
1284
1285 $this->assertCount(1, $crawler->filter('div[class=entry]'));
1286
1287 // same as previous test but for case-sensitivity
1288 $crawler = $client->request('GET', '/all/list');
1289
1290 $form = $crawler->filter('form[name=search]')->form();
1291 $data = [
1292 'search_entry[term]' => 'doMain', // the search will match an entry with 'domain' in its url
1293 ];
1294
1295 $crawler = $client->submit($form, $data);
1296
1297 $this->assertCount(1, $crawler->filter('div[class=entry]'));
32f455c1 1298 }
42f3bb2c
JB
1299
1300 public function dataForLanguage()
1301 {
1302 return [
1303 'ru' => [
1304 'https://www.pravda.ru/world/09-06-2017/1337283-qatar-0/',
1305 'ru',
1306 ],
80e49ba7 1307 'fr-FR' => [
f40c88eb 1308 'https://www.zataz.com/90-des-dossiers-medicaux-des-coreens-du-sud-vendus-a-des-entreprises-privees/',
80e49ba7 1309 'fr_FR',
42f3bb2c
JB
1310 ],
1311 'de' => [
1312 'http://www.bild.de/politik/ausland/theresa-may/wahlbeben-grossbritannien-analyse-52108924.bild.html',
1313 'de',
1314 ],
1315 'it' => [
1316 'http://www.ansa.it/sito/notizie/mondo/europa/2017/06/08/voto-gb-seggi-aperti-misure-sicurezza-rafforzate_0cb71f7f-e23b-4d5f-95ca-bc12296419f0.html',
1317 'it',
1318 ],
1319 'zh_CN' => [
1320 'http://www.hao123.com/shequ?__noscript__-=1',
1321 'zh_CN',
1322 ],
1323 'de_AT' => [
1324 'https://buy.garmin.com/de-AT/AT/catalog/product/compareResult.ep?compareProduct=112885&compareProduct=36728',
1325 'de_AT',
1326 ],
1327 'ru_RU' => [
1328 'http://netler.ru/ikt/windows-error-reporting.htm',
1329 'ru_RU',
1330 ],
1331 'pt_BR' => [
1332 'http://precodoscombustiveis.com.br/postos/cidade/4121/pr/maringa',
1333 'pt_BR',
1334 ],
80e49ba7 1335 'fucked_list_of_languages' => [
42f3bb2c 1336 'http://geocatalog.webservice-energy.org/geonetwork/srv/eng/main.home',
38520658 1337 null,
42f3bb2c 1338 ],
80e49ba7 1339 'es-ES' => [
f40c88eb 1340 'https://www.muylinux.com/2015/04/17/odf-reino-unido-microsoft-google/',
80e49ba7
JB
1341 'es_ES',
1342 ],
42f3bb2c
JB
1343 ];
1344 }
1345
1346 /**
1347 * @dataProvider dataForLanguage
1348 */
1349 public function testLanguageValidation($url, $expectedLanguage)
1350 {
1351 $this->logInAs('admin');
1352 $client = $this->getClient();
1353
1354 $crawler = $client->request('GET', '/new');
1355
f808b016 1356 $this->assertSame(200, $client->getResponse()->getStatusCode());
42f3bb2c
JB
1357
1358 $form = $crawler->filter('form[name=entry]')->form();
1359
1360 $data = [
1361 'entry[url]' => $url,
1362 ];
1363
1364 $client->submit($form, $data);
1365
f808b016 1366 $this->assertSame(302, $client->getResponse()->getStatusCode());
42f3bb2c
JB
1367
1368 $content = $client->getContainer()
1369 ->get('doctrine.orm.entity_manager')
1370 ->getRepository('WallabagCoreBundle:Entry')
1371 ->findByUrlAndUserId($url, $this->getLoggedInUserId());
1372
1373 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
f808b016
JB
1374 $this->assertSame($url, $content->getUrl());
1375 $this->assertSame($expectedLanguage, $content->getLanguage());
42f3bb2c 1376 }
9de9f1e5
JB
1377
1378 /**
1379 * This test will require an internet connection.
1380 */
1381 public function testRestrictedArticle()
1382 {
f645d371 1383 $url = 'https://www.monde-diplomatique.fr/2017/05/BONNET/57475';
9de9f1e5
JB
1384 $this->logInAs('admin');
1385 $client = $this->getClient();
1386 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
1387
1388 // enable restricted access
1389 $client->getContainer()->get('craue_config')->set('restricted_access', 1);
1390
1391 // create a new site_credential
1392 $user = $client->getContainer()->get('security.token_storage')->getToken()->getUser();
1393 $credential = new SiteCredential($user);
1394 $credential->setHost('monde-diplomatique.fr');
bead8b42 1395 $credential->setUsername($client->getContainer()->get('wallabag_core.helper.crypto_proxy')->crypt('foo'));
906424c1 1396 $credential->setPassword($client->getContainer()->get('wallabag_core.helper.crypto_proxy')->crypt('bar'));
9de9f1e5
JB
1397
1398 $em->persist($credential);
1399 $em->flush();
1400
1401 $crawler = $client->request('GET', '/new');
1402
f808b016 1403 $this->assertSame(200, $client->getResponse()->getStatusCode());
9de9f1e5
JB
1404
1405 $form = $crawler->filter('form[name=entry]')->form();
1406
1407 $data = [
1408 'entry[url]' => $url,
1409 ];
1410
1411 $client->submit($form, $data);
1412
f808b016 1413 $this->assertSame(302, $client->getResponse()->getStatusCode());
9de9f1e5
JB
1414
1415 $crawler = $client->followRedirect();
1416
f808b016 1417 $this->assertSame(200, $client->getResponse()->getStatusCode());
9de9f1e5
JB
1418 $this->assertContains('flashes.entry.notice.entry_saved', $crawler->filter('body')->extract(['_text'])[0]);
1419
1420 $content = $em
1421 ->getRepository('WallabagCoreBundle:Entry')
1422 ->findByUrlAndUserId($url, $this->getLoggedInUserId());
1423
1424 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
1425 $this->assertSame('Crimes et réformes aux Philippines', $content->getTitle());
1426
1427 $client->getContainer()->get('craue_config')->set('restricted_access', 0);
1428 }
93fd4692 1429}