]> git.immae.eu Git - github/wallabag/wallabag.git/blob - tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php
Merge pull request #2372 from pmartin/api-get-entry-as-epub
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / WallabagRestControllerTest.php
1 <?php
2
3 namespace Tests\Wallabag\ApiBundle\Controller;
4
5 use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
6 use Wallabag\CoreBundle\Entity\Tag;
7
8 class WallabagRestControllerTest extends WallabagApiTestCase
9 {
10 protected static $salt;
11
12 public function testGetOneEntry()
13 {
14 $entry = $this->client->getContainer()
15 ->get('doctrine.orm.entity_manager')
16 ->getRepository('WallabagCoreBundle:Entry')
17 ->findOneBy(['user' => 1, 'isArchived' => false]);
18
19 if (!$entry) {
20 $this->markTestSkipped('No content found in db.');
21 }
22
23 $this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
24 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
25
26 $content = json_decode($this->client->getResponse()->getContent(), true);
27
28 $this->assertEquals($entry->getTitle(), $content['title']);
29 $this->assertEquals($entry->getUrl(), $content['url']);
30 $this->assertCount(count($entry->getTags()), $content['tags']);
31 $this->assertEquals($entry->getUserName(), $content['user_name']);
32 $this->assertEquals($entry->getUserEmail(), $content['user_email']);
33 $this->assertEquals($entry->getUserId(), $content['user_id']);
34
35 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
36 }
37
38 public function testExportEntry()
39 {
40 $entry = $this->client->getContainer()
41 ->get('doctrine.orm.entity_manager')
42 ->getRepository('WallabagCoreBundle:Entry')
43 ->findOneBy(['user' => 1, 'isArchived' => false]);
44
45 if (!$entry) {
46 $this->markTestSkipped('No content found in db.');
47 }
48
49 $this->client->request('GET', '/api/entries/'.$entry->getId().'/export.epub');
50 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
51
52 // epub format got the content type in the content
53 $this->assertContains('application/epub', $this->client->getResponse()->getContent());
54 $this->assertEquals('application/epub+zip', $this->client->getResponse()->headers->get('Content-Type'));
55
56 // re-auth client for mobi
57 $client = $this->createAuthorizedClient();
58 $client->request('GET', '/api/entries/'.$entry->getId().'/export.mobi');
59 $this->assertEquals(200, $client->getResponse()->getStatusCode());
60
61 $this->assertEquals('application/x-mobipocket-ebook', $client->getResponse()->headers->get('Content-Type'));
62
63 // re-auth client for pdf
64 $client = $this->createAuthorizedClient();
65 $client->request('GET', '/api/entries/'.$entry->getId().'/export.pdf');
66 $this->assertEquals(200, $client->getResponse()->getStatusCode());
67
68 $this->assertContains('PDF-', $client->getResponse()->getContent());
69 $this->assertEquals('application/pdf', $client->getResponse()->headers->get('Content-Type'));
70
71 // re-auth client for pdf
72 $client = $this->createAuthorizedClient();
73 $client->request('GET', '/api/entries/'.$entry->getId().'/export.txt');
74 $this->assertEquals(200, $client->getResponse()->getStatusCode());
75
76 $this->assertContains('text/plain', $client->getResponse()->headers->get('Content-Type'));
77
78 // re-auth client for pdf
79 $client = $this->createAuthorizedClient();
80 $client->request('GET', '/api/entries/'.$entry->getId().'/export.csv');
81 $this->assertEquals(200, $client->getResponse()->getStatusCode());
82
83 $this->assertContains('application/csv', $client->getResponse()->headers->get('Content-Type'));
84 }
85
86 public function testGetOneEntryWrongUser()
87 {
88 $entry = $this->client->getContainer()
89 ->get('doctrine.orm.entity_manager')
90 ->getRepository('WallabagCoreBundle:Entry')
91 ->findOneBy(['user' => 2, 'isArchived' => false]);
92
93 if (!$entry) {
94 $this->markTestSkipped('No content found in db.');
95 }
96
97 $this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
98
99 $this->assertEquals(403, $this->client->getResponse()->getStatusCode());
100 }
101
102 public function testGetEntries()
103 {
104 $this->client->request('GET', '/api/entries');
105
106 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
107
108 $content = json_decode($this->client->getResponse()->getContent(), true);
109
110 $this->assertGreaterThanOrEqual(1, count($content));
111 $this->assertNotEmpty($content['_embedded']['items']);
112 $this->assertGreaterThanOrEqual(1, $content['total']);
113 $this->assertEquals(1, $content['page']);
114 $this->assertGreaterThanOrEqual(1, $content['pages']);
115
116 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
117 }
118
119 public function testGetEntriesWithFullOptions()
120 {
121 $this->client->request('GET', '/api/entries', [
122 'archive' => 1,
123 'starred' => 1,
124 'sort' => 'updated',
125 'order' => 'asc',
126 'page' => 1,
127 'perPage' => 2,
128 'tags' => 'foo',
129 'since' => 1443274283,
130 ]);
131
132 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
133
134 $content = json_decode($this->client->getResponse()->getContent(), true);
135
136 $this->assertGreaterThanOrEqual(1, count($content));
137 $this->assertArrayHasKey('items', $content['_embedded']);
138 $this->assertGreaterThanOrEqual(0, $content['total']);
139 $this->assertEquals(1, $content['page']);
140 $this->assertEquals(2, $content['limit']);
141 $this->assertGreaterThanOrEqual(1, $content['pages']);
142
143 $this->assertArrayHasKey('_links', $content);
144 $this->assertArrayHasKey('self', $content['_links']);
145 $this->assertArrayHasKey('first', $content['_links']);
146 $this->assertArrayHasKey('last', $content['_links']);
147
148 foreach (['self', 'first', 'last'] as $link) {
149 $this->assertArrayHasKey('href', $content['_links'][$link]);
150 $this->assertContains('archive=1', $content['_links'][$link]['href']);
151 $this->assertContains('starred=1', $content['_links'][$link]['href']);
152 $this->assertContains('sort=updated', $content['_links'][$link]['href']);
153 $this->assertContains('order=asc', $content['_links'][$link]['href']);
154 $this->assertContains('tags=foo', $content['_links'][$link]['href']);
155 $this->assertContains('since=1443274283', $content['_links'][$link]['href']);
156 }
157
158 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
159 }
160
161 public function testGetStarredEntries()
162 {
163 $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']);
164
165 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
166
167 $content = json_decode($this->client->getResponse()->getContent(), true);
168
169 $this->assertGreaterThanOrEqual(1, count($content));
170 $this->assertNotEmpty($content['_embedded']['items']);
171 $this->assertGreaterThanOrEqual(1, $content['total']);
172 $this->assertEquals(1, $content['page']);
173 $this->assertGreaterThanOrEqual(1, $content['pages']);
174
175 $this->assertArrayHasKey('_links', $content);
176 $this->assertArrayHasKey('self', $content['_links']);
177 $this->assertArrayHasKey('first', $content['_links']);
178 $this->assertArrayHasKey('last', $content['_links']);
179
180 foreach (['self', 'first', 'last'] as $link) {
181 $this->assertArrayHasKey('href', $content['_links'][$link]);
182 $this->assertContains('starred=1', $content['_links'][$link]['href']);
183 $this->assertContains('sort=updated', $content['_links'][$link]['href']);
184 }
185
186 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
187 }
188
189 public function testGetArchiveEntries()
190 {
191 $this->client->request('GET', '/api/entries', ['archive' => 1]);
192
193 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
194
195 $content = json_decode($this->client->getResponse()->getContent(), true);
196
197 $this->assertGreaterThanOrEqual(1, count($content));
198 $this->assertNotEmpty($content['_embedded']['items']);
199 $this->assertGreaterThanOrEqual(1, $content['total']);
200 $this->assertEquals(1, $content['page']);
201 $this->assertGreaterThanOrEqual(1, $content['pages']);
202
203 $this->assertArrayHasKey('_links', $content);
204 $this->assertArrayHasKey('self', $content['_links']);
205 $this->assertArrayHasKey('first', $content['_links']);
206 $this->assertArrayHasKey('last', $content['_links']);
207
208 foreach (['self', 'first', 'last'] as $link) {
209 $this->assertArrayHasKey('href', $content['_links'][$link]);
210 $this->assertContains('archive=1', $content['_links'][$link]['href']);
211 }
212
213 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
214 }
215
216 public function testGetTaggedEntries()
217 {
218 $this->client->request('GET', '/api/entries', ['tags' => 'foo,bar']);
219
220 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
221
222 $content = json_decode($this->client->getResponse()->getContent(), true);
223
224 $this->assertGreaterThanOrEqual(1, count($content));
225 $this->assertNotEmpty($content['_embedded']['items']);
226 $this->assertGreaterThanOrEqual(1, $content['total']);
227 $this->assertEquals(1, $content['page']);
228 $this->assertGreaterThanOrEqual(1, $content['pages']);
229
230 $this->assertArrayHasKey('_links', $content);
231 $this->assertArrayHasKey('self', $content['_links']);
232 $this->assertArrayHasKey('first', $content['_links']);
233 $this->assertArrayHasKey('last', $content['_links']);
234
235 foreach (['self', 'first', 'last'] as $link) {
236 $this->assertArrayHasKey('href', $content['_links'][$link]);
237 $this->assertContains('tags='.urlencode('foo,bar'), $content['_links'][$link]['href']);
238 }
239
240 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
241 }
242
243 public function testGetDatedEntries()
244 {
245 $this->client->request('GET', '/api/entries', ['since' => 1443274283]);
246
247 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
248
249 $content = json_decode($this->client->getResponse()->getContent(), true);
250
251 $this->assertGreaterThanOrEqual(1, count($content));
252 $this->assertNotEmpty($content['_embedded']['items']);
253 $this->assertGreaterThanOrEqual(1, $content['total']);
254 $this->assertEquals(1, $content['page']);
255 $this->assertGreaterThanOrEqual(1, $content['pages']);
256
257 $this->assertArrayHasKey('_links', $content);
258 $this->assertArrayHasKey('self', $content['_links']);
259 $this->assertArrayHasKey('first', $content['_links']);
260 $this->assertArrayHasKey('last', $content['_links']);
261
262 foreach (['self', 'first', 'last'] as $link) {
263 $this->assertArrayHasKey('href', $content['_links'][$link]);
264 $this->assertContains('since=1443274283', $content['_links'][$link]['href']);
265 }
266
267 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
268 }
269
270 public function testGetDatedSupEntries()
271 {
272 $future = new \DateTime(date('Y-m-d H:i:s'));
273 $this->client->request('GET', '/api/entries', ['since' => $future->getTimestamp() + 1000]);
274
275 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
276
277 $content = json_decode($this->client->getResponse()->getContent(), true);
278
279 $this->assertGreaterThanOrEqual(1, count($content));
280 $this->assertEmpty($content['_embedded']['items']);
281 $this->assertEquals(0, $content['total']);
282 $this->assertEquals(1, $content['page']);
283 $this->assertEquals(1, $content['pages']);
284
285 $this->assertArrayHasKey('_links', $content);
286 $this->assertArrayHasKey('self', $content['_links']);
287 $this->assertArrayHasKey('first', $content['_links']);
288 $this->assertArrayHasKey('last', $content['_links']);
289
290 foreach (['self', 'first', 'last'] as $link) {
291 $this->assertArrayHasKey('href', $content['_links'][$link]);
292 $this->assertContains('since='.($future->getTimestamp() + 1000), $content['_links'][$link]['href']);
293 }
294
295 $this->assertEquals('application/json', $this->client->getResponse()->headers->get('Content-Type'));
296 }
297
298 public function testDeleteEntry()
299 {
300 $entry = $this->client->getContainer()
301 ->get('doctrine.orm.entity_manager')
302 ->getRepository('WallabagCoreBundle:Entry')
303 ->findOneByUser(1);
304
305 if (!$entry) {
306 $this->markTestSkipped('No content found in db.');
307 }
308
309 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
310
311 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
312
313 $content = json_decode($this->client->getResponse()->getContent(), true);
314
315 $this->assertEquals($entry->getTitle(), $content['title']);
316 $this->assertEquals($entry->getUrl(), $content['url']);
317
318 // We'll try to delete this entry again
319 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
320
321 $this->assertEquals(404, $this->client->getResponse()->getStatusCode());
322 }
323
324 public function testPostEntry()
325 {
326 $this->client->request('POST', '/api/entries.json', [
327 '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',
328 'tags' => 'google',
329 'title' => 'New title for my article',
330 ]);
331
332 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
333
334 $content = json_decode($this->client->getResponse()->getContent(), true);
335
336 $this->assertGreaterThan(0, $content['id']);
337 $this->assertEquals('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']);
338 $this->assertEquals(false, $content['is_archived']);
339 $this->assertEquals(false, $content['is_starred']);
340 $this->assertEquals('New title for my article', $content['title']);
341 $this->assertEquals(1, $content['user_id']);
342 $this->assertCount(1, $content['tags']);
343 }
344
345 public function testPostSameEntry()
346 {
347 $this->client->request('POST', '/api/entries.json', [
348 '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',
349 'archive' => '1',
350 'tags' => 'google, apple',
351 ]);
352
353 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
354
355 $content = json_decode($this->client->getResponse()->getContent(), true);
356
357 $this->assertGreaterThan(0, $content['id']);
358 $this->assertEquals('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']);
359 $this->assertEquals(true, $content['is_archived']);
360 $this->assertEquals(false, $content['is_starred']);
361 $this->assertCount(2, $content['tags']);
362 }
363
364 public function testPostArchivedAndStarredEntry()
365 {
366 $this->client->request('POST', '/api/entries.json', [
367 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
368 'archive' => '1',
369 'starred' => '1',
370 ]);
371
372 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
373
374 $content = json_decode($this->client->getResponse()->getContent(), true);
375
376 $this->assertGreaterThan(0, $content['id']);
377 $this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
378 $this->assertEquals(true, $content['is_archived']);
379 $this->assertEquals(true, $content['is_starred']);
380 $this->assertEquals(1, $content['user_id']);
381 }
382
383 public function testPostArchivedAndStarredEntryWithoutQuotes()
384 {
385 $this->client->request('POST', '/api/entries.json', [
386 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
387 'archive' => 0,
388 'starred' => 1,
389 ]);
390
391 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
392
393 $content = json_decode($this->client->getResponse()->getContent(), true);
394
395 $this->assertGreaterThan(0, $content['id']);
396 $this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
397 $this->assertEquals(false, $content['is_archived']);
398 $this->assertEquals(true, $content['is_starred']);
399 }
400
401 public function testPatchEntry()
402 {
403 $entry = $this->client->getContainer()
404 ->get('doctrine.orm.entity_manager')
405 ->getRepository('WallabagCoreBundle:Entry')
406 ->findOneByUser(1);
407
408 if (!$entry) {
409 $this->markTestSkipped('No content found in db.');
410 }
411
412 // hydrate the tags relations
413 $nbTags = count($entry->getTags());
414
415 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
416 'title' => 'New awesome title',
417 'tags' => 'new tag '.uniqid(),
418 'starred' => '1',
419 'archive' => '0',
420 ]);
421
422 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
423
424 $content = json_decode($this->client->getResponse()->getContent(), true);
425
426 $this->assertEquals($entry->getId(), $content['id']);
427 $this->assertEquals($entry->getUrl(), $content['url']);
428 $this->assertEquals('New awesome title', $content['title']);
429 $this->assertGreaterThan($nbTags, count($content['tags']));
430 $this->assertEquals(1, $content['user_id']);
431 }
432
433 public function testPatchEntryWithoutQuotes()
434 {
435 $entry = $this->client->getContainer()
436 ->get('doctrine.orm.entity_manager')
437 ->getRepository('WallabagCoreBundle:Entry')
438 ->findOneByUser(1);
439
440 if (!$entry) {
441 $this->markTestSkipped('No content found in db.');
442 }
443
444 // hydrate the tags relations
445 $nbTags = count($entry->getTags());
446
447 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
448 'title' => 'New awesome title',
449 'tags' => 'new tag '.uniqid(),
450 'starred' => 1,
451 'archive' => 0,
452 ]);
453
454 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
455
456 $content = json_decode($this->client->getResponse()->getContent(), true);
457
458 $this->assertEquals($entry->getId(), $content['id']);
459 $this->assertEquals($entry->getUrl(), $content['url']);
460 $this->assertEquals('New awesome title', $content['title']);
461 $this->assertGreaterThan($nbTags, count($content['tags']));
462 }
463
464 public function testGetTagsEntry()
465 {
466 $entry = $this->client->getContainer()
467 ->get('doctrine.orm.entity_manager')
468 ->getRepository('WallabagCoreBundle:Entry')
469 ->findOneWithTags($this->user->getId());
470
471 $entry = $entry[0];
472
473 if (!$entry) {
474 $this->markTestSkipped('No content found in db.');
475 }
476
477 $tags = [];
478 foreach ($entry->getTags() as $tag) {
479 $tags[] = ['id' => $tag->getId(), 'label' => $tag->getLabel(), 'slug' => $tag->getSlug()];
480 }
481
482 $this->client->request('GET', '/api/entries/'.$entry->getId().'/tags');
483
484 $this->assertEquals(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
485 }
486
487 public function testPostTagsOnEntry()
488 {
489 $entry = $this->client->getContainer()
490 ->get('doctrine.orm.entity_manager')
491 ->getRepository('WallabagCoreBundle:Entry')
492 ->findOneByUser(1);
493
494 if (!$entry) {
495 $this->markTestSkipped('No content found in db.');
496 }
497
498 $nbTags = count($entry->getTags());
499
500 $newTags = 'tag1,tag2,tag3';
501
502 $this->client->request('POST', '/api/entries/'.$entry->getId().'/tags', ['tags' => $newTags]);
503
504 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
505
506 $content = json_decode($this->client->getResponse()->getContent(), true);
507
508 $this->assertArrayHasKey('tags', $content);
509 $this->assertEquals($nbTags + 3, count($content['tags']));
510
511 $entryDB = $this->client->getContainer()
512 ->get('doctrine.orm.entity_manager')
513 ->getRepository('WallabagCoreBundle:Entry')
514 ->find($entry->getId());
515
516 $tagsInDB = [];
517 foreach ($entryDB->getTags()->toArray() as $tag) {
518 $tagsInDB[$tag->getId()] = $tag->getLabel();
519 }
520
521 foreach (explode(',', $newTags) as $tag) {
522 $this->assertContains($tag, $tagsInDB);
523 }
524 }
525
526 public function testDeleteOneTagEntry()
527 {
528 $entry = $this->client->getContainer()
529 ->get('doctrine.orm.entity_manager')
530 ->getRepository('WallabagCoreBundle:Entry')
531 ->findOneWithTags($this->user->getId());
532 $entry = $entry[0];
533
534 if (!$entry) {
535 $this->markTestSkipped('No content found in db.');
536 }
537
538 // hydrate the tags relations
539 $nbTags = count($entry->getTags());
540 $tag = $entry->getTags()[0];
541
542 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'/tags/'.$tag->getId().'.json');
543
544 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
545
546 $content = json_decode($this->client->getResponse()->getContent(), true);
547
548 $this->assertArrayHasKey('tags', $content);
549 $this->assertEquals($nbTags - 1, count($content['tags']));
550 }
551
552 public function testGetUserTags()
553 {
554 $this->client->request('GET', '/api/tags.json');
555
556 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
557
558 $content = json_decode($this->client->getResponse()->getContent(), true);
559
560 $this->assertGreaterThan(0, $content);
561 $this->assertArrayHasKey('id', $content[0]);
562 $this->assertArrayHasKey('label', $content[0]);
563
564 return end($content);
565 }
566
567 /**
568 * @depends testGetUserTags
569 */
570 public function testDeleteUserTag($tag)
571 {
572 $tagName = $tag['label'];
573
574 $this->client->request('DELETE', '/api/tags/'.$tag['id'].'.json');
575
576 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
577
578 $content = json_decode($this->client->getResponse()->getContent(), true);
579
580 $this->assertArrayHasKey('label', $content);
581 $this->assertEquals($tag['label'], $content['label']);
582 $this->assertEquals($tag['slug'], $content['slug']);
583
584 $entries = $this->client->getContainer()
585 ->get('doctrine.orm.entity_manager')
586 ->getRepository('WallabagCoreBundle:Entry')
587 ->findAllByTagId($this->user->getId(), $tag['id']);
588
589 $this->assertCount(0, $entries);
590
591 $tag = $this->client->getContainer()
592 ->get('doctrine.orm.entity_manager')
593 ->getRepository('WallabagCoreBundle:Tag')
594 ->findOneByLabel($tagName);
595
596 $this->assertNull($tag, $tagName.' was removed because it begun an orphan tag');
597 }
598
599 public function testDeleteTagByLabel()
600 {
601 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
602 $entry = $this->client->getContainer()
603 ->get('doctrine.orm.entity_manager')
604 ->getRepository('WallabagCoreBundle:Entry')
605 ->findOneWithTags($this->user->getId());
606
607 $entry = $entry[0];
608
609 $tag = new Tag();
610 $tag->setLabel('Awesome tag for test');
611 $em->persist($tag);
612
613 $entry->addTag($tag);
614
615 $em->persist($entry);
616 $em->flush();
617
618 $this->client->request('DELETE', '/api/tag/label.json', ['tag' => $tag->getLabel()]);
619
620 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
621
622 $content = json_decode($this->client->getResponse()->getContent(), true);
623
624 $this->assertArrayHasKey('label', $content);
625 $this->assertEquals($tag->getLabel(), $content['label']);
626 $this->assertEquals($tag->getSlug(), $content['slug']);
627
628 $entries = $this->client->getContainer()
629 ->get('doctrine.orm.entity_manager')
630 ->getRepository('WallabagCoreBundle:Entry')
631 ->findAllByTagId($this->user->getId(), $tag->getId());
632
633 $this->assertCount(0, $entries);
634 }
635
636 public function testDeleteTagByLabelNotFound()
637 {
638 $this->client->request('DELETE', '/api/tag/label.json', ['tag' => 'does not exist']);
639
640 $this->assertEquals(404, $this->client->getResponse()->getStatusCode());
641 }
642
643 public function testDeleteTagsByLabel()
644 {
645 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
646 $entry = $this->client->getContainer()
647 ->get('doctrine.orm.entity_manager')
648 ->getRepository('WallabagCoreBundle:Entry')
649 ->findOneWithTags($this->user->getId());
650
651 $entry = $entry[0];
652
653 $tag = new Tag();
654 $tag->setLabel('Awesome tag for tagsLabel');
655 $em->persist($tag);
656
657 $tag2 = new Tag();
658 $tag2->setLabel('Awesome tag for tagsLabel 2');
659 $em->persist($tag2);
660
661 $entry->addTag($tag);
662 $entry->addTag($tag2);
663
664 $em->persist($entry);
665 $em->flush();
666
667 $this->client->request('DELETE', '/api/tags/label.json', ['tags' => $tag->getLabel().','.$tag2->getLabel()]);
668
669 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
670
671 $content = json_decode($this->client->getResponse()->getContent(), true);
672
673 $this->assertCount(2, $content);
674
675 $this->assertArrayHasKey('label', $content[0]);
676 $this->assertEquals($tag->getLabel(), $content[0]['label']);
677 $this->assertEquals($tag->getSlug(), $content[0]['slug']);
678
679 $this->assertArrayHasKey('label', $content[1]);
680 $this->assertEquals($tag2->getLabel(), $content[1]['label']);
681 $this->assertEquals($tag2->getSlug(), $content[1]['slug']);
682
683 $entries = $this->client->getContainer()
684 ->get('doctrine.orm.entity_manager')
685 ->getRepository('WallabagCoreBundle:Entry')
686 ->findAllByTagId($this->user->getId(), $tag->getId());
687
688 $this->assertCount(0, $entries);
689
690 $entries = $this->client->getContainer()
691 ->get('doctrine.orm.entity_manager')
692 ->getRepository('WallabagCoreBundle:Entry')
693 ->findAllByTagId($this->user->getId(), $tag2->getId());
694
695 $this->assertCount(0, $entries);
696 }
697
698 public function testDeleteTagsByLabelNotFound()
699 {
700 $this->client->request('DELETE', '/api/tags/label.json', ['tags' => 'does not exist']);
701
702 $this->assertEquals(404, $this->client->getResponse()->getStatusCode());
703 }
704
705 public function testGetVersion()
706 {
707 $this->client->request('GET', '/api/version');
708
709 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
710
711 $content = json_decode($this->client->getResponse()->getContent(), true);
712
713 $this->assertEquals($this->client->getContainer()->getParameter('wallabag_core.version'), $content);
714 }
715
716 public function testSaveIsArchivedAfterPost()
717 {
718 $entry = $this->client->getContainer()
719 ->get('doctrine.orm.entity_manager')
720 ->getRepository('WallabagCoreBundle:Entry')
721 ->findOneBy(['user' => 1, 'isArchived' => true]);
722
723 if (!$entry) {
724 $this->markTestSkipped('No content found in db.');
725 }
726
727 $this->client->request('POST', '/api/entries.json', [
728 'url' => $entry->getUrl(),
729 ]);
730
731 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
732
733 $content = json_decode($this->client->getResponse()->getContent(), true);
734
735 $this->assertEquals(true, $content['is_archived']);
736 }
737
738 public function testSaveIsStarredAfterPost()
739 {
740 $entry = $this->client->getContainer()
741 ->get('doctrine.orm.entity_manager')
742 ->getRepository('WallabagCoreBundle:Entry')
743 ->findOneBy(['user' => 1, 'isStarred' => true]);
744
745 if (!$entry) {
746 $this->markTestSkipped('No content found in db.');
747 }
748
749 $this->client->request('POST', '/api/entries.json', [
750 'url' => $entry->getUrl(),
751 ]);
752
753 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
754
755 $content = json_decode($this->client->getResponse()->getContent(), true);
756
757 $this->assertEquals(true, $content['is_starred']);
758 }
759
760 public function testSaveIsArchivedAfterPatch()
761 {
762 $entry = $this->client->getContainer()
763 ->get('doctrine.orm.entity_manager')
764 ->getRepository('WallabagCoreBundle:Entry')
765 ->findOneBy(['user' => 1, 'isArchived' => true]);
766
767 if (!$entry) {
768 $this->markTestSkipped('No content found in db.');
769 }
770
771 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
772 'title' => $entry->getTitle().'++',
773 ]);
774
775 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
776
777 $content = json_decode($this->client->getResponse()->getContent(), true);
778
779 $this->assertEquals(true, $content['is_archived']);
780 }
781
782 public function testSaveIsStarredAfterPatch()
783 {
784 $entry = $this->client->getContainer()
785 ->get('doctrine.orm.entity_manager')
786 ->getRepository('WallabagCoreBundle:Entry')
787 ->findOneBy(['user' => 1, 'isStarred' => true]);
788
789 if (!$entry) {
790 $this->markTestSkipped('No content found in db.');
791 }
792 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
793 'title' => $entry->getTitle().'++',
794 ]);
795
796 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
797
798 $content = json_decode($this->client->getResponse()->getContent(), true);
799
800 $this->assertEquals(true, $content['is_starred']);
801 }
802
803 public function testGetEntriesExists()
804 {
805 $this->client->request('GET', '/api/entries/exists?url=http://0.0.0.0/entry2');
806
807 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
808
809 $content = json_decode($this->client->getResponse()->getContent(), true);
810
811 $this->assertEquals(true, $content['exists']);
812 }
813
814 public function testGetEntriesExistsWithManyUrls()
815 {
816 $url1 = 'http://0.0.0.0/entry2';
817 $url2 = 'http://0.0.0.0/entry10';
818 $this->client->request('GET', '/api/entries/exists?urls[]='.$url1.'&urls[]='.$url2);
819
820 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
821
822 $content = json_decode($this->client->getResponse()->getContent(), true);
823
824 $this->assertArrayHasKey($url1, $content);
825 $this->assertArrayHasKey($url2, $content);
826 $this->assertEquals(true, $content[$url1]);
827 $this->assertEquals(false, $content[$url2]);
828 }
829
830 public function testGetEntriesExistsWhichDoesNotExists()
831 {
832 $this->client->request('GET', '/api/entries/exists?url=http://google.com/entry2');
833
834 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
835
836 $content = json_decode($this->client->getResponse()->getContent(), true);
837
838 $this->assertEquals(false, $content['exists']);
839 }
840
841 public function testGetEntriesExistsWithNoUrl()
842 {
843 $this->client->request('GET', '/api/entries/exists?url=');
844
845 $this->assertEquals(403, $this->client->getResponse()->getStatusCode());
846 }
847 }