]> git.immae.eu Git - github/wallabag/wallabag.git/blob - tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
0647bb2399549fe09fee114f8352413c937c34fa
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / EntryRestControllerTest.php
1 <?php
2
3 namespace Tests\Wallabag\ApiBundle\Controller;
4
5 use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
6 use Wallabag\CoreBundle\Entity\Entry;
7 use Wallabag\CoreBundle\Entity\Tag;
8 use Wallabag\CoreBundle\Helper\ContentProxy;
9 use Wallabag\UserBundle\Entity\User;
10
11 class EntryRestControllerTest extends WallabagApiTestCase
12 {
13 public function testGetOneEntry()
14 {
15 $entry = $this->client->getContainer()
16 ->get('doctrine.orm.entity_manager')
17 ->getRepository('WallabagCoreBundle:Entry')
18 ->findOneBy(['user' => 1, 'isArchived' => false]);
19
20 if (!$entry) {
21 $this->markTestSkipped('No content found in db.');
22 }
23
24 $this->client->request('GET', '/api/entries/' . $entry->getId() . '.json');
25 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
26
27 $content = json_decode($this->client->getResponse()->getContent(), true);
28
29 $this->assertSame($entry->getTitle(), $content['title']);
30 $this->assertSame($entry->getUrl(), $content['url']);
31 $this->assertCount(count($entry->getTags()), $content['tags']);
32 $this->assertSame($entry->getUserName(), $content['user_name']);
33 $this->assertSame($entry->getUserEmail(), $content['user_email']);
34 $this->assertSame($entry->getUserId(), $content['user_id']);
35
36 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
37 }
38
39 public function testExportEntry()
40 {
41 $entry = $this->client->getContainer()
42 ->get('doctrine.orm.entity_manager')
43 ->getRepository('WallabagCoreBundle:Entry')
44 ->findOneBy(['user' => 1, 'isArchived' => false]);
45
46 if (!$entry) {
47 $this->markTestSkipped('No content found in db.');
48 }
49
50 $this->client->request('GET', '/api/entries/' . $entry->getId() . '/export.epub');
51 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
52
53 // epub format got the content type in the content
54 $this->assertContains('application/epub', $this->client->getResponse()->getContent());
55 $this->assertSame('application/epub+zip', $this->client->getResponse()->headers->get('Content-Type'));
56
57 // re-auth client for mobi
58 $client = $this->createAuthorizedClient();
59 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.mobi');
60 $this->assertSame(200, $client->getResponse()->getStatusCode());
61
62 $this->assertSame('application/x-mobipocket-ebook', $client->getResponse()->headers->get('Content-Type'));
63
64 // re-auth client for pdf
65 $client = $this->createAuthorizedClient();
66 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.pdf');
67 $this->assertSame(200, $client->getResponse()->getStatusCode());
68
69 $this->assertContains('PDF-', $client->getResponse()->getContent());
70 $this->assertSame('application/pdf', $client->getResponse()->headers->get('Content-Type'));
71
72 // re-auth client for pdf
73 $client = $this->createAuthorizedClient();
74 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.txt');
75 $this->assertSame(200, $client->getResponse()->getStatusCode());
76
77 $this->assertContains('text/plain', $client->getResponse()->headers->get('Content-Type'));
78
79 // re-auth client for pdf
80 $client = $this->createAuthorizedClient();
81 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.csv');
82 $this->assertSame(200, $client->getResponse()->getStatusCode());
83
84 $this->assertContains('application/csv', $client->getResponse()->headers->get('Content-Type'));
85 }
86
87 public function testGetOneEntryWrongUser()
88 {
89 $entry = $this->client->getContainer()
90 ->get('doctrine.orm.entity_manager')
91 ->getRepository('WallabagCoreBundle:Entry')
92 ->findOneBy(['user' => 2, 'isArchived' => false]);
93
94 if (!$entry) {
95 $this->markTestSkipped('No content found in db.');
96 }
97
98 $this->client->request('GET', '/api/entries/' . $entry->getId() . '.json');
99
100 $this->assertSame(403, $this->client->getResponse()->getStatusCode());
101 }
102
103 public function testGetEntries()
104 {
105 $this->client->request('GET', '/api/entries');
106
107 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
108
109 $content = json_decode($this->client->getResponse()->getContent(), true);
110
111 $this->assertGreaterThanOrEqual(1, count($content));
112 $this->assertNotEmpty($content['_embedded']['items']);
113 $this->assertGreaterThanOrEqual(1, $content['total']);
114 $this->assertSame(1, $content['page']);
115 $this->assertGreaterThanOrEqual(1, $content['pages']);
116
117 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
118 }
119
120 public function testGetEntriesWithFullOptions()
121 {
122 $this->client->request('GET', '/api/entries', [
123 'archive' => 1,
124 'starred' => 1,
125 'sort' => 'updated',
126 'order' => 'asc',
127 'page' => 1,
128 'perPage' => 2,
129 'tags' => 'foo',
130 'since' => 1443274283,
131 'public' => 0,
132 ]);
133
134 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
135
136 $content = json_decode($this->client->getResponse()->getContent(), true);
137
138 $this->assertGreaterThanOrEqual(1, count($content));
139 $this->assertArrayHasKey('items', $content['_embedded']);
140 $this->assertGreaterThanOrEqual(0, $content['total']);
141 $this->assertSame(1, $content['page']);
142 $this->assertSame(2, $content['limit']);
143 $this->assertGreaterThanOrEqual(1, $content['pages']);
144
145 $this->assertArrayHasKey('_links', $content);
146 $this->assertArrayHasKey('self', $content['_links']);
147 $this->assertArrayHasKey('first', $content['_links']);
148 $this->assertArrayHasKey('last', $content['_links']);
149
150 foreach (['self', 'first', 'last'] as $link) {
151 $this->assertArrayHasKey('href', $content['_links'][$link]);
152 $this->assertContains('archive=1', $content['_links'][$link]['href']);
153 $this->assertContains('starred=1', $content['_links'][$link]['href']);
154 $this->assertContains('sort=updated', $content['_links'][$link]['href']);
155 $this->assertContains('order=asc', $content['_links'][$link]['href']);
156 $this->assertContains('tags=foo', $content['_links'][$link]['href']);
157 $this->assertContains('since=1443274283', $content['_links'][$link]['href']);
158 $this->assertContains('public=0', $content['_links'][$link]['href']);
159 }
160
161 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
162 }
163
164 public function testGetEntriesPublicOnly()
165 {
166 $entry = $this->client->getContainer()
167 ->get('doctrine.orm.entity_manager')
168 ->getRepository('WallabagCoreBundle:Entry')
169 ->findOneByUser(1);
170
171 if (!$entry) {
172 $this->markTestSkipped('No content found in db.');
173 }
174
175 // generate at least one public entry
176 $entry->generateUid();
177
178 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
179 $em->persist($entry);
180 $em->flush();
181
182 $this->client->request('GET', '/api/entries', [
183 'public' => 1,
184 ]);
185
186 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
187
188 $content = json_decode($this->client->getResponse()->getContent(), true);
189
190 $this->assertGreaterThanOrEqual(1, count($content));
191 $this->assertArrayHasKey('items', $content['_embedded']);
192 $this->assertGreaterThanOrEqual(1, $content['total']);
193 $this->assertSame(1, $content['page']);
194 $this->assertSame(30, $content['limit']);
195 $this->assertGreaterThanOrEqual(1, $content['pages']);
196
197 $this->assertArrayHasKey('_links', $content);
198 $this->assertArrayHasKey('self', $content['_links']);
199 $this->assertArrayHasKey('first', $content['_links']);
200 $this->assertArrayHasKey('last', $content['_links']);
201
202 foreach (['self', 'first', 'last'] as $link) {
203 $this->assertArrayHasKey('href', $content['_links'][$link]);
204 $this->assertContains('public=1', $content['_links'][$link]['href']);
205 }
206
207 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
208 }
209
210 public function testGetEntriesOnPageTwo()
211 {
212 $this->client->request('GET', '/api/entries', [
213 'page' => 2,
214 'perPage' => 2,
215 ]);
216
217 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
218
219 $content = json_decode($this->client->getResponse()->getContent(), true);
220
221 $this->assertGreaterThanOrEqual(0, $content['total']);
222 $this->assertSame(2, $content['page']);
223 $this->assertSame(2, $content['limit']);
224 }
225
226 public function testGetStarredEntries()
227 {
228 $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']);
229
230 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
231
232 $content = json_decode($this->client->getResponse()->getContent(), true);
233
234 $this->assertGreaterThanOrEqual(1, count($content));
235 $this->assertNotEmpty($content['_embedded']['items']);
236 $this->assertGreaterThanOrEqual(1, $content['total']);
237 $this->assertSame(1, $content['page']);
238 $this->assertGreaterThanOrEqual(1, $content['pages']);
239
240 $this->assertArrayHasKey('_links', $content);
241 $this->assertArrayHasKey('self', $content['_links']);
242 $this->assertArrayHasKey('first', $content['_links']);
243 $this->assertArrayHasKey('last', $content['_links']);
244
245 foreach (['self', 'first', 'last'] as $link) {
246 $this->assertArrayHasKey('href', $content['_links'][$link]);
247 $this->assertContains('starred=1', $content['_links'][$link]['href']);
248 $this->assertContains('sort=updated', $content['_links'][$link]['href']);
249 }
250
251 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
252 }
253
254 public function testGetArchiveEntries()
255 {
256 $this->client->request('GET', '/api/entries', ['archive' => 1]);
257
258 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
259
260 $content = json_decode($this->client->getResponse()->getContent(), true);
261
262 $this->assertGreaterThanOrEqual(1, count($content));
263 $this->assertNotEmpty($content['_embedded']['items']);
264 $this->assertGreaterThanOrEqual(1, $content['total']);
265 $this->assertSame(1, $content['page']);
266 $this->assertGreaterThanOrEqual(1, $content['pages']);
267
268 $this->assertArrayHasKey('_links', $content);
269 $this->assertArrayHasKey('self', $content['_links']);
270 $this->assertArrayHasKey('first', $content['_links']);
271 $this->assertArrayHasKey('last', $content['_links']);
272
273 foreach (['self', 'first', 'last'] as $link) {
274 $this->assertArrayHasKey('href', $content['_links'][$link]);
275 $this->assertContains('archive=1', $content['_links'][$link]['href']);
276 }
277
278 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
279 }
280
281 public function testGetTaggedEntries()
282 {
283 $this->client->request('GET', '/api/entries', ['tags' => 'foo,bar']);
284
285 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
286
287 $content = json_decode($this->client->getResponse()->getContent(), true);
288
289 $this->assertGreaterThanOrEqual(1, count($content));
290 $this->assertNotEmpty($content['_embedded']['items']);
291 $this->assertGreaterThanOrEqual(1, $content['total']);
292 $this->assertSame(1, $content['page']);
293 $this->assertGreaterThanOrEqual(1, $content['pages']);
294
295 $this->assertArrayHasKey('_links', $content);
296 $this->assertArrayHasKey('self', $content['_links']);
297 $this->assertArrayHasKey('first', $content['_links']);
298 $this->assertArrayHasKey('last', $content['_links']);
299
300 foreach (['self', 'first', 'last'] as $link) {
301 $this->assertArrayHasKey('href', $content['_links'][$link]);
302 $this->assertContains('tags=' . urlencode('foo,bar'), $content['_links'][$link]['href']);
303 }
304
305 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
306 }
307
308 public function testGetDatedEntries()
309 {
310 $this->client->request('GET', '/api/entries', ['since' => 1443274283]);
311
312 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
313
314 $content = json_decode($this->client->getResponse()->getContent(), true);
315
316 $this->assertGreaterThanOrEqual(1, count($content));
317 $this->assertNotEmpty($content['_embedded']['items']);
318 $this->assertGreaterThanOrEqual(1, $content['total']);
319 $this->assertSame(1, $content['page']);
320 $this->assertGreaterThanOrEqual(1, $content['pages']);
321
322 $this->assertArrayHasKey('_links', $content);
323 $this->assertArrayHasKey('self', $content['_links']);
324 $this->assertArrayHasKey('first', $content['_links']);
325 $this->assertArrayHasKey('last', $content['_links']);
326
327 foreach (['self', 'first', 'last'] as $link) {
328 $this->assertArrayHasKey('href', $content['_links'][$link]);
329 $this->assertContains('since=1443274283', $content['_links'][$link]['href']);
330 }
331
332 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
333 }
334
335 public function testGetDatedSupEntries()
336 {
337 $future = new \DateTime(date('Y-m-d H:i:s'));
338 $this->client->request('GET', '/api/entries', ['since' => $future->getTimestamp() + 1000]);
339
340 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
341
342 $content = json_decode($this->client->getResponse()->getContent(), true);
343
344 $this->assertGreaterThanOrEqual(1, count($content));
345 $this->assertEmpty($content['_embedded']['items']);
346 $this->assertSame(0, $content['total']);
347 $this->assertSame(1, $content['page']);
348 $this->assertSame(1, $content['pages']);
349
350 $this->assertArrayHasKey('_links', $content);
351 $this->assertArrayHasKey('self', $content['_links']);
352 $this->assertArrayHasKey('first', $content['_links']);
353 $this->assertArrayHasKey('last', $content['_links']);
354
355 foreach (['self', 'first', 'last'] as $link) {
356 $this->assertArrayHasKey('href', $content['_links'][$link]);
357 $this->assertContains('since=' . ($future->getTimestamp() + 1000), $content['_links'][$link]['href']);
358 }
359
360 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
361 }
362
363 public function testDeleteEntry()
364 {
365 $entry = $this->client->getContainer()
366 ->get('doctrine.orm.entity_manager')
367 ->getRepository('WallabagCoreBundle:Entry')
368 ->findOneByUser(1, ['id' => 'asc']);
369
370 if (!$entry) {
371 $this->markTestSkipped('No content found in db.');
372 }
373
374 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '.json');
375
376 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
377
378 $content = json_decode($this->client->getResponse()->getContent(), true);
379
380 $this->assertSame($entry->getTitle(), $content['title']);
381 $this->assertSame($entry->getUrl(), $content['url']);
382
383 // We'll try to delete this entry again
384 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '.json');
385
386 $this->assertSame(404, $this->client->getResponse()->getStatusCode());
387 }
388
389 public function testPostEntry()
390 {
391 $this->client->request('POST', '/api/entries.json', [
392 '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',
393 'tags' => 'google',
394 'title' => 'New title for my article',
395 'content' => 'my content',
396 'language' => 'de',
397 'published_at' => '2016-09-08T11:55:58+0200',
398 'authors' => 'bob,helen',
399 'public' => 1,
400 ]);
401
402 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
403
404 $content = json_decode($this->client->getResponse()->getContent(), true);
405
406 $this->assertGreaterThan(0, $content['id']);
407 $this->assertSame('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', $content['url']);
408 $this->assertSame(0, $content['is_archived']);
409 $this->assertSame(0, $content['is_starred']);
410 $this->assertSame('New title for my article', $content['title']);
411 $this->assertSame(1, $content['user_id']);
412 $this->assertCount(2, $content['tags']);
413 $this->assertSame('my content', $content['content']);
414 $this->assertSame('de', $content['language']);
415 $this->assertSame('2016-09-08T11:55:58+0200', $content['published_at']);
416 $this->assertCount(2, $content['published_by']);
417 $this->assertContains('bob', $content['published_by']);
418 $this->assertContains('helen', $content['published_by']);
419 $this->assertTrue($content['is_public'], 'A public link has been generated for that entry');
420 }
421
422 public function testPostSameEntry()
423 {
424 $this->client->request('POST', '/api/entries.json', [
425 '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',
426 'archive' => '1',
427 'tags' => 'google, apple',
428 ]);
429
430 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
431
432 $content = json_decode($this->client->getResponse()->getContent(), true);
433
434 $this->assertGreaterThan(0, $content['id']);
435 $this->assertSame('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', $content['url']);
436 $this->assertSame(1, $content['is_archived']);
437 $this->assertSame(0, $content['is_starred']);
438 $this->assertCount(3, $content['tags']);
439 }
440
441 public function testPostEntryWhenFetchContentFails()
442 {
443 /** @var \Symfony\Component\DependencyInjection\Container $container */
444 $container = $this->client->getContainer();
445 $contentProxy = $this->getMockBuilder(ContentProxy::class)
446 ->disableOriginalConstructor()
447 ->setMethods(['updateEntry'])
448 ->getMock();
449 $contentProxy->expects($this->any())
450 ->method('updateEntry')
451 ->willThrowException(new \Exception('Test Fetch content fails'));
452 $container->set('wallabag_core.content_proxy', $contentProxy);
453
454 try {
455 $this->client->request('POST', '/api/entries.json', [
456 'url' => 'http://www.example.com/',
457 ]);
458
459 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
460 $content = json_decode($this->client->getResponse()->getContent(), true);
461 $this->assertGreaterThan(0, $content['id']);
462 $this->assertSame('http://www.example.com/', $content['url']);
463 } finally {
464 // Remove the created entry to avoid side effects on other tests
465 if (isset($content['id'])) {
466 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
467 $entry = $em->getReference('WallabagCoreBundle:Entry', $content['id']);
468 $em->remove($entry);
469 $em->flush();
470 }
471 }
472 }
473
474 public function testPostArchivedAndStarredEntry()
475 {
476 $this->client->request('POST', '/api/entries.json', [
477 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
478 'archive' => '1',
479 'starred' => '1',
480 ]);
481
482 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
483
484 $content = json_decode($this->client->getResponse()->getContent(), true);
485
486 $this->assertGreaterThan(0, $content['id']);
487 $this->assertSame('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
488 $this->assertSame(1, $content['is_archived']);
489 $this->assertSame(1, $content['is_starred']);
490 $this->assertSame(1, $content['user_id']);
491 }
492
493 public function testPostArchivedAndStarredEntryWithoutQuotes()
494 {
495 $this->client->request('POST', '/api/entries.json', [
496 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
497 'archive' => 0,
498 'starred' => 1,
499 ]);
500
501 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
502
503 $content = json_decode($this->client->getResponse()->getContent(), true);
504
505 $this->assertGreaterThan(0, $content['id']);
506 $this->assertSame('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
507 $this->assertSame(0, $content['is_archived']);
508 $this->assertSame(1, $content['is_starred']);
509 }
510
511 public function testPatchEntry()
512 {
513 $entry = $this->client->getContainer()
514 ->get('doctrine.orm.entity_manager')
515 ->getRepository('WallabagCoreBundle:Entry')
516 ->findOneByUser(1);
517
518 if (!$entry) {
519 $this->markTestSkipped('No content found in db.');
520 }
521
522 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
523 'title' => 'New awesome title',
524 'tags' => 'new tag ' . uniqid(),
525 'starred' => '1',
526 'archive' => '0',
527 'language' => 'de_AT',
528 'preview_picture' => 'http://preview.io/picture.jpg',
529 'authors' => 'bob,sponge',
530 'content' => 'awesome',
531 'public' => 0,
532 'published_at' => 1488833381,
533 ]);
534
535 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
536
537 $content = json_decode($this->client->getResponse()->getContent(), true);
538
539 $this->assertSame($entry->getId(), $content['id']);
540 $this->assertSame($entry->getUrl(), $content['url']);
541 $this->assertSame('New awesome title', $content['title']);
542 $this->assertGreaterThanOrEqual(1, count($content['tags']), 'We force only one tag');
543 $this->assertSame(1, $content['user_id']);
544 $this->assertSame('de_AT', $content['language']);
545 $this->assertSame('http://preview.io/picture.jpg', $content['preview_picture']);
546 $this->assertContains('sponge', $content['published_by']);
547 $this->assertContains('bob', $content['published_by']);
548 $this->assertSame('awesome', $content['content']);
549 $this->assertFalse($content['is_public'], 'Entry is no more shared');
550 $this->assertContains('2017-03-06', $content['published_at']);
551 }
552
553 public function testPatchEntryWithoutQuotes()
554 {
555 $entry = $this->client->getContainer()
556 ->get('doctrine.orm.entity_manager')
557 ->getRepository('WallabagCoreBundle:Entry')
558 ->findOneByUser(1);
559
560 if (!$entry) {
561 $this->markTestSkipped('No content found in db.');
562 }
563
564 $previousContent = $entry->getContent();
565 $previousLanguage = $entry->getLanguage();
566
567 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
568 'title' => 'New awesome title',
569 'tags' => 'new tag ' . uniqid(),
570 'starred' => 1,
571 'archive' => 0,
572 'authors' => ['bob', 'sponge'],
573 ]);
574
575 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
576
577 $content = json_decode($this->client->getResponse()->getContent(), true);
578
579 $this->assertSame($entry->getId(), $content['id']);
580 $this->assertSame($entry->getUrl(), $content['url']);
581 $this->assertGreaterThanOrEqual(1, count($content['tags']), 'We force only one tag');
582 $this->assertGreaterThan($nbTags, count($content['tags']));
583 $this->assertEmpty($content['published_by'], 'Authors were not saved because of an array instead of a string');
584 $this->assertEquals($previousContent, $content['content'], 'Ensure content has not moved');
585 $this->assertEquals($previousLanguage, $content['language'], 'Ensure language has not moved');
586 }
587
588 public function testGetTagsEntry()
589 {
590 $entry = $this->client->getContainer()
591 ->get('doctrine.orm.entity_manager')
592 ->getRepository('WallabagCoreBundle:Entry')
593 ->findOneWithTags($this->user->getId());
594
595 $entry = $entry[0];
596
597 if (!$entry) {
598 $this->markTestSkipped('No content found in db.');
599 }
600
601 $tags = [];
602 foreach ($entry->getTags() as $tag) {
603 $tags[] = ['id' => $tag->getId(), 'label' => $tag->getLabel(), 'slug' => $tag->getSlug()];
604 }
605
606 $this->client->request('GET', '/api/entries/' . $entry->getId() . '/tags');
607
608 $this->assertSame(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
609 }
610
611 public function testPostTagsOnEntry()
612 {
613 $entry = $this->client->getContainer()
614 ->get('doctrine.orm.entity_manager')
615 ->getRepository('WallabagCoreBundle:Entry')
616 ->findOneByUser(1);
617
618 if (!$entry) {
619 $this->markTestSkipped('No content found in db.');
620 }
621
622 $nbTags = count($entry->getTags());
623
624 $newTags = 'tag1,tag2,tag3';
625
626 $this->client->request('POST', '/api/entries/' . $entry->getId() . '/tags', ['tags' => $newTags]);
627
628 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
629
630 $content = json_decode($this->client->getResponse()->getContent(), true);
631
632 $this->assertArrayHasKey('tags', $content);
633 $this->assertSame($nbTags + 3, count($content['tags']));
634
635 $entryDB = $this->client->getContainer()
636 ->get('doctrine.orm.entity_manager')
637 ->getRepository('WallabagCoreBundle:Entry')
638 ->find($entry->getId());
639
640 $tagsInDB = [];
641 foreach ($entryDB->getTags()->toArray() as $tag) {
642 $tagsInDB[$tag->getId()] = $tag->getLabel();
643 }
644
645 foreach (explode(',', $newTags) as $tag) {
646 $this->assertContains($tag, $tagsInDB);
647 }
648 }
649
650 public function testDeleteOneTagEntry()
651 {
652 $entry = $this->client->getContainer()
653 ->get('doctrine.orm.entity_manager')
654 ->getRepository('WallabagCoreBundle:Entry')
655 ->findOneWithTags($this->user->getId());
656 $entry = $entry[0];
657
658 if (!$entry) {
659 $this->markTestSkipped('No content found in db.');
660 }
661
662 // hydrate the tags relations
663 $nbTags = count($entry->getTags());
664 $tag = $entry->getTags()[0];
665
666 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '/tags/' . $tag->getId() . '.json');
667
668 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
669
670 $content = json_decode($this->client->getResponse()->getContent(), true);
671
672 $this->assertArrayHasKey('tags', $content);
673 $this->assertSame($nbTags - 1, count($content['tags']));
674 }
675
676 public function testSaveIsArchivedAfterPost()
677 {
678 $entry = $this->client->getContainer()
679 ->get('doctrine.orm.entity_manager')
680 ->getRepository('WallabagCoreBundle:Entry')
681 ->findOneBy(['user' => 1, 'isArchived' => true]);
682
683 if (!$entry) {
684 $this->markTestSkipped('No content found in db.');
685 }
686
687 $this->client->request('POST', '/api/entries.json', [
688 'url' => $entry->getUrl(),
689 ]);
690
691 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
692
693 $content = json_decode($this->client->getResponse()->getContent(), true);
694
695 $this->assertSame(1, $content['is_archived']);
696 }
697
698 public function testSaveIsStarredAfterPost()
699 {
700 $entry = $this->client->getContainer()
701 ->get('doctrine.orm.entity_manager')
702 ->getRepository('WallabagCoreBundle:Entry')
703 ->findOneBy(['user' => 1, 'isStarred' => true]);
704
705 if (!$entry) {
706 $this->markTestSkipped('No content found in db.');
707 }
708
709 $this->client->request('POST', '/api/entries.json', [
710 'url' => $entry->getUrl(),
711 ]);
712
713 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
714
715 $content = json_decode($this->client->getResponse()->getContent(), true);
716
717 $this->assertSame(1, $content['is_starred']);
718 }
719
720 public function testSaveIsArchivedAfterPatch()
721 {
722 $entry = $this->client->getContainer()
723 ->get('doctrine.orm.entity_manager')
724 ->getRepository('WallabagCoreBundle:Entry')
725 ->findOneBy(['user' => 1, 'isArchived' => true]);
726
727 if (!$entry) {
728 $this->markTestSkipped('No content found in db.');
729 }
730
731 $previousTitle = $entry->getTitle();
732
733 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
734 'title' => $entry->getTitle().'++',
735 ]);
736
737 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
738
739 $content = json_decode($this->client->getResponse()->getContent(), true);
740
741 $this->assertSame(1, $content['is_archived']);
742 $this->assertEquals($previousTitle.'++', $content['title']);
743 }
744
745 public function testSaveIsStarredAfterPatch()
746 {
747 $entry = $this->client->getContainer()
748 ->get('doctrine.orm.entity_manager')
749 ->getRepository('WallabagCoreBundle:Entry')
750 ->findOneBy(['user' => 1, 'isStarred' => true]);
751
752 if (!$entry) {
753 $this->markTestSkipped('No content found in db.');
754 }
755 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
756 'title' => $entry->getTitle() . '++',
757 ]);
758
759 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
760
761 $content = json_decode($this->client->getResponse()->getContent(), true);
762
763 $this->assertSame(1, $content['is_starred']);
764 }
765
766 public function dataForEntriesExistWithUrl()
767 {
768 return [
769 'with_id' => [
770 'url' => '/api/entries/exists?url=http://0.0.0.0/entry2&return_id=1',
771 'expectedValue' => 2,
772 ],
773 'without_id' => [
774 'url' => '/api/entries/exists?url=http://0.0.0.0/entry2',
775 'expectedValue' => true,
776 ],
777 ];
778 }
779
780 /**
781 * @dataProvider dataForEntriesExistWithUrl
782 */
783 public function testGetEntriesExists($url, $expectedValue)
784 {
785 $this->client->request('GET', $url);
786
787 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
788
789 $content = json_decode($this->client->getResponse()->getContent(), true);
790
791 $this->assertSame($expectedValue, $content['exists']);
792 }
793
794 public function testGetEntriesExistsWithManyUrls()
795 {
796 $url1 = 'http://0.0.0.0/entry2';
797 $url2 = 'http://0.0.0.0/entry10';
798 $this->client->request('GET', '/api/entries/exists?urls[]=' . $url1 . '&urls[]=' . $url2 . '&return_id=1');
799
800 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
801
802 $content = json_decode($this->client->getResponse()->getContent(), true);
803
804 $this->assertArrayHasKey($url1, $content);
805 $this->assertArrayHasKey($url2, $content);
806 $this->assertSame(2, $content[$url1]);
807 $this->assertNull($content[$url2]);
808 }
809
810 public function testGetEntriesExistsWithManyUrlsReturnBool()
811 {
812 $url1 = 'http://0.0.0.0/entry2';
813 $url2 = 'http://0.0.0.0/entry10';
814 $this->client->request('GET', '/api/entries/exists?urls[]=' . $url1 . '&urls[]=' . $url2);
815
816 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
817
818 $content = json_decode($this->client->getResponse()->getContent(), true);
819
820 $this->assertArrayHasKey($url1, $content);
821 $this->assertArrayHasKey($url2, $content);
822 $this->assertTrue($content[$url1]);
823 $this->assertFalse($content[$url2]);
824 }
825
826 public function testGetEntriesExistsWhichDoesNotExists()
827 {
828 $this->client->request('GET', '/api/entries/exists?url=http://google.com/entry2');
829
830 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
831
832 $content = json_decode($this->client->getResponse()->getContent(), true);
833
834 $this->assertSame(false, $content['exists']);
835 }
836
837 public function testGetEntriesExistsWithNoUrl()
838 {
839 $this->client->request('GET', '/api/entries/exists?url=');
840
841 $this->assertSame(403, $this->client->getResponse()->getStatusCode());
842 }
843
844 public function testReloadEntryErrorWhileFetching()
845 {
846 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
847 ->getRepository('WallabagCoreBundle:Entry')
848 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
849
850 if (!$entry) {
851 $this->markTestSkipped('No content found in db.');
852 }
853
854 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '/reload.json');
855 $this->assertSame(304, $this->client->getResponse()->getStatusCode());
856 }
857
858 public function testReloadEntry()
859 {
860 $this->client->request('POST', '/api/entries.json', [
861 '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',
862 'archive' => '1',
863 'tags' => 'google, apple',
864 ]);
865
866 $json = json_decode($this->client->getResponse()->getContent(), true);
867
868 $this->setUp();
869
870 $this->client->request('PATCH', '/api/entries/' . $json['id'] . '/reload.json');
871 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
872
873 $content = json_decode($this->client->getResponse()->getContent(), true);
874
875 $this->assertNotEmpty($content['title']);
876
877 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
878 }
879
880 public function testPostEntriesTagsListAction()
881 {
882 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
883 ->getRepository('WallabagCoreBundle:Entry')
884 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
885
886 $tags = $entry->getTags();
887
888 $this->assertCount(2, $tags);
889
890 $list = [
891 [
892 'url' => 'http://0.0.0.0/entry4',
893 'tags' => 'new tag 1, new tag 2',
894 ],
895 ];
896
897 $this->client->request('POST', '/api/entries/tags/lists?list=' . json_encode($list));
898
899 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900
901 $content = json_decode($this->client->getResponse()->getContent(), true);
902
903 $this->assertInternalType('int', $content[0]['entry']);
904 $this->assertSame('http://0.0.0.0/entry4', $content[0]['url']);
905
906 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
907 ->getRepository('WallabagCoreBundle:Entry')
908 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
909
910 $tags = $entry->getTags();
911 $this->assertCount(4, $tags);
912 }
913
914 public function testPostEntriesTagsListActionNoList()
915 {
916 $this->client->request('POST', '/api/entries/tags/lists?list='.json_encode([]));
917
918 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
919
920 $content = json_decode($this->client->getResponse()->getContent(), true);
921
922 $this->assertEmpty($content);
923 }
924
925 public function testDeleteEntriesTagsListAction()
926 {
927 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
928 $entry = new Entry($em->getReference(User::class, 1));
929 $entry->setUrl('http://0.0.0.0/test-entry');
930 $entry->addTag((new Tag())->setLabel('foo-tag'));
931 $entry->addTag((new Tag())->setLabel('bar-tag'));
932 $em->persist($entry);
933 $em->flush();
934
935 $em->clear();
936
937 $list = [
938 [
939 'url' => 'http://0.0.0.0/test-entry',
940 'tags' => 'foo-tag, bar-tag',
941 ],
942 ];
943
944 $this->client->request('DELETE', '/api/entries/tags/list?list=' . json_encode($list));
945 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
946
947 $entry = $em->getRepository('WallabagCoreBundle:Entry')->find($entry->getId());
948 $this->assertCount(0, $entry->getTags());
949 }
950
951 public function testDeleteEntriesTagsListActionNoList()
952 {
953 $this->client->request('DELETE', '/api/entries/tags/list?list='.json_encode([]));
954
955 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
956
957 $content = json_decode($this->client->getResponse()->getContent(), true);
958
959 $this->assertEmpty($content);
960 }
961
962 public function testPostEntriesListAction()
963 {
964 $list = [
965 'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
966 'http://0.0.0.0/entry2',
967 ];
968
969 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode($list));
970
971 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
972
973 $content = json_decode($this->client->getResponse()->getContent(), true);
974
975 $this->assertInternalType('int', $content[0]['entry']);
976 $this->assertSame('http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html', $content[0]['url']);
977
978 $this->assertInternalType('int', $content[1]['entry']);
979 $this->assertSame('http://0.0.0.0/entry2', $content[1]['url']);
980 }
981
982 public function testPostEntriesListActionWithNoUrls()
983 {
984 $this->client->request('POST', '/api/entries/lists?urls='.json_encode([]));
985
986 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
987
988 $content = json_decode($this->client->getResponse()->getContent(), true);
989
990 $this->assertEmpty($content);
991 }
992
993 public function testDeleteEntriesListAction()
994 {
995 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
996 $em->persist((new Entry($em->getReference(User::class, 1)))->setUrl('http://0.0.0.0/test-entry1'));
997
998 $em->flush();
999 $em->clear();
1000 $list = [
1001 'http://0.0.0.0/test-entry1',
1002 'http://0.0.0.0/test-entry-not-exist',
1003 ];
1004
1005 $this->client->request('DELETE', '/api/entries/list?urls=' . json_encode($list));
1006
1007 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1008
1009 $content = json_decode($this->client->getResponse()->getContent(), true);
1010
1011 $this->assertTrue($content[0]['entry']);
1012 $this->assertSame('http://0.0.0.0/test-entry1', $content[0]['url']);
1013
1014 $this->assertFalse($content[1]['entry']);
1015 $this->assertSame('http://0.0.0.0/test-entry-not-exist', $content[1]['url']);
1016 }
1017
1018 public function testDeleteEntriesListActionWithNoUrls()
1019 {
1020 $this->client->request('DELETE', '/api/entries/list?urls='.json_encode([]));
1021
1022 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
1023
1024 $content = json_decode($this->client->getResponse()->getContent(), true);
1025
1026 $this->assertEmpty($content);
1027 }
1028
1029 public function testLimitBulkAction()
1030 {
1031 $list = [
1032 'http://0.0.0.0/entry1',
1033 'http://0.0.0.0/entry1',
1034 'http://0.0.0.0/entry1',
1035 'http://0.0.0.0/entry1',
1036 'http://0.0.0.0/entry1',
1037 'http://0.0.0.0/entry1',
1038 'http://0.0.0.0/entry1',
1039 'http://0.0.0.0/entry1',
1040 'http://0.0.0.0/entry1',
1041 'http://0.0.0.0/entry1',
1042 'http://0.0.0.0/entry1',
1043 ];
1044
1045 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode($list));
1046
1047 $this->assertSame(400, $this->client->getResponse()->getStatusCode());
1048 $this->assertContains('API limit reached', $this->client->getResponse()->getContent());
1049 }
1050 }