]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
CS
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / EntryRestControllerTest.php
CommitLineData
900c8448
NL
1<?php
2
3namespace Tests\Wallabag\ApiBundle\Controller;
4
5use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
7ab5eb95 6use Wallabag\CoreBundle\Entity\Entry;
900c8448 7use Wallabag\CoreBundle\Entity\Tag;
08f29ae7 8use Wallabag\CoreBundle\Helper\ContentProxy;
7ab5eb95 9use Wallabag\UserBundle\Entity\User;
900c8448
NL
10
11class 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
f808b016
JB
24 $this->client->request('GET', '/api/entries/' . $entry->getId() . '.json');
25 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
26
27 $content = json_decode($this->client->getResponse()->getContent(), true);
28
f808b016
JB
29 $this->assertSame($entry->getTitle(), $content['title']);
30 $this->assertSame($entry->getUrl(), $content['url']);
900c8448 31 $this->assertCount(count($entry->getTags()), $content['tags']);
f808b016
JB
32 $this->assertSame($entry->getUserName(), $content['user_name']);
33 $this->assertSame($entry->getUserEmail(), $content['user_email']);
34 $this->assertSame($entry->getUserId(), $content['user_id']);
900c8448 35
f808b016 36 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
5a619812
JB
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
f808b016
JB
50 $this->client->request('GET', '/api/entries/' . $entry->getId() . '/export.epub');
51 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
5a619812
JB
52
53 // epub format got the content type in the content
54 $this->assertContains('application/epub', $this->client->getResponse()->getContent());
f808b016 55 $this->assertSame('application/epub+zip', $this->client->getResponse()->headers->get('Content-Type'));
5a619812
JB
56
57 // re-auth client for mobi
58 $client = $this->createAuthorizedClient();
f808b016
JB
59 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.mobi');
60 $this->assertSame(200, $client->getResponse()->getStatusCode());
5a619812 61
f808b016 62 $this->assertSame('application/x-mobipocket-ebook', $client->getResponse()->headers->get('Content-Type'));
5a619812
JB
63
64 // re-auth client for pdf
65 $client = $this->createAuthorizedClient();
f808b016
JB
66 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.pdf');
67 $this->assertSame(200, $client->getResponse()->getStatusCode());
5a619812
JB
68
69 $this->assertContains('PDF-', $client->getResponse()->getContent());
f808b016 70 $this->assertSame('application/pdf', $client->getResponse()->headers->get('Content-Type'));
5a619812
JB
71
72 // re-auth client for pdf
73 $client = $this->createAuthorizedClient();
f808b016
JB
74 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.txt');
75 $this->assertSame(200, $client->getResponse()->getStatusCode());
5a619812
JB
76
77 $this->assertContains('text/plain', $client->getResponse()->headers->get('Content-Type'));
78
79 // re-auth client for pdf
80 $client = $this->createAuthorizedClient();
f808b016
JB
81 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.csv');
82 $this->assertSame(200, $client->getResponse()->getStatusCode());
5a619812
JB
83
84 $this->assertContains('application/csv', $client->getResponse()->headers->get('Content-Type'));
900c8448
NL
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
f808b016 98 $this->client->request('GET', '/api/entries/' . $entry->getId() . '.json');
900c8448 99
f808b016 100 $this->assertSame(403, $this->client->getResponse()->getStatusCode());
900c8448
NL
101 }
102
103 public function testGetEntries()
104 {
105 $this->client->request('GET', '/api/entries');
106
f808b016 107 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
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']);
f808b016 114 $this->assertSame(1, $content['page']);
900c8448
NL
115 $this->assertGreaterThanOrEqual(1, $content['pages']);
116
f808b016 117 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
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,
1112e547 131 'public' => 0,
900c8448
NL
132 ]);
133
f808b016 134 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
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']);
f808b016
JB
141 $this->assertSame(1, $content['page']);
142 $this->assertSame(2, $content['limit']);
900c8448
NL
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']);
1112e547
JB
158 $this->assertContains('public=0', $content['_links'][$link]['href']);
159 }
160
f808b016 161 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
1112e547
JB
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
f808b016 186 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1112e547
JB
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']);
f808b016
JB
193 $this->assertSame(1, $content['page']);
194 $this->assertSame(30, $content['limit']);
1112e547
JB
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']);
900c8448
NL
205 }
206
f808b016 207 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
208 }
209
b60a666d 210 public function testGetEntriesOnPageTwo()
211 {
212 $this->client->request('GET', '/api/entries', [
213 'page' => 2,
214 'perPage' => 2,
215 ]);
216
f808b016 217 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
b60a666d 218
219 $content = json_decode($this->client->getResponse()->getContent(), true);
220
221 $this->assertGreaterThanOrEqual(0, $content['total']);
f808b016
JB
222 $this->assertSame(2, $content['page']);
223 $this->assertSame(2, $content['limit']);
b60a666d 224 }
225
900c8448
NL
226 public function testGetStarredEntries()
227 {
228 $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']);
229
f808b016 230 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
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']);
f808b016 237 $this->assertSame(1, $content['page']);
900c8448
NL
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
f808b016 251 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
252 }
253
254 public function testGetArchiveEntries()
255 {
256 $this->client->request('GET', '/api/entries', ['archive' => 1]);
257
f808b016 258 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
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']);
f808b016 265 $this->assertSame(1, $content['page']);
900c8448
NL
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
f808b016 278 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
279 }
280
281 public function testGetTaggedEntries()
282 {
283 $this->client->request('GET', '/api/entries', ['tags' => 'foo,bar']);
284
f808b016 285 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
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']);
f808b016 292 $this->assertSame(1, $content['page']);
900c8448
NL
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]);
f808b016 302 $this->assertContains('tags=' . urlencode('foo,bar'), $content['_links'][$link]['href']);
900c8448
NL
303 }
304
f808b016 305 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
306 }
307
308 public function testGetDatedEntries()
309 {
310 $this->client->request('GET', '/api/entries', ['since' => 1443274283]);
311
f808b016 312 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
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']);
f808b016 319 $this->assertSame(1, $content['page']);
900c8448
NL
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
f808b016 332 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
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
f808b016 340 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
341
342 $content = json_decode($this->client->getResponse()->getContent(), true);
343
344 $this->assertGreaterThanOrEqual(1, count($content));
345 $this->assertEmpty($content['_embedded']['items']);
f808b016
JB
346 $this->assertSame(0, $content['total']);
347 $this->assertSame(1, $content['page']);
348 $this->assertSame(1, $content['pages']);
900c8448
NL
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]);
f808b016 357 $this->assertContains('since=' . ($future->getTimestamp() + 1000), $content['_links'][$link]['href']);
900c8448
NL
358 }
359
f808b016 360 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
900c8448
NL
361 }
362
363 public function testDeleteEntry()
364 {
365 $entry = $this->client->getContainer()
366 ->get('doctrine.orm.entity_manager')
367 ->getRepository('WallabagCoreBundle:Entry')
dcbebc17 368 ->findOneByUser(1, ['id' => 'asc']);
900c8448
NL
369
370 if (!$entry) {
371 $this->markTestSkipped('No content found in db.');
372 }
373
f808b016 374 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '.json');
900c8448 375
f808b016 376 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
377
378 $content = json_decode($this->client->getResponse()->getContent(), true);
379
f808b016
JB
380 $this->assertSame($entry->getTitle(), $content['title']);
381 $this->assertSame($entry->getUrl(), $content['url']);
900c8448
NL
382
383 // We'll try to delete this entry again
f808b016 384 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '.json');
900c8448 385
f808b016 386 $this->assertSame(404, $this->client->getResponse()->getStatusCode());
900c8448
NL
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',
e668a812 395 'content' => 'my content',
e9056dd9 396 'language' => 'de',
e668a812 397 'published_at' => '2016-09-08T11:55:58+0200',
fb436e8c 398 'authors' => 'bob,helen',
1112e547 399 'public' => 1,
900c8448
NL
400 ]);
401
f808b016 402 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
403
404 $content = json_decode($this->client->getResponse()->getContent(), true);
405
406 $this->assertGreaterThan(0, $content['id']);
f808b016 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']);
38520658
JB
408 $this->assertSame(0, $content['is_archived']);
409 $this->assertSame(0, $content['is_starred']);
f808b016
JB
410 $this->assertSame('New title for my article', $content['title']);
411 $this->assertSame(1, $content['user_id']);
fdd725f5 412 $this->assertCount(2, $content['tags']);
e668a812 413 $this->assertSame('my content', $content['content']);
e9056dd9 414 $this->assertSame('de', $content['language']);
e668a812 415 $this->assertSame('2016-09-08T11:55:58+0200', $content['published_at']);
fb436e8c
JB
416 $this->assertCount(2, $content['published_by']);
417 $this->assertContains('bob', $content['published_by']);
418 $this->assertContains('helen', $content['published_by']);
1112e547 419 $this->assertTrue($content['is_public'], 'A public link has been generated for that entry');
900c8448
NL
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
f808b016 430 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
431
432 $content = json_decode($this->client->getResponse()->getContent(), true);
433
434 $this->assertGreaterThan(0, $content['id']);
f808b016 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']);
38520658
JB
436 $this->assertSame(1, $content['is_archived']);
437 $this->assertSame(0, $content['is_starred']);
fdd725f5 438 $this->assertCount(3, $content['tags']);
900c8448
NL
439 }
440
08f29ae7 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
a9357a83 454 try {
455 $this->client->request('POST', '/api/entries.json', [
456 'url' => 'http://www.example.com/',
457 ]);
458
f808b016 459 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
a9357a83 460 $content = json_decode($this->client->getResponse()->getContent(), true);
461 $this->assertGreaterThan(0, $content['id']);
f808b016 462 $this->assertSame('http://www.example.com/', $content['url']);
a9357a83 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 }
08f29ae7 472 }
473
900c8448
NL
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
f808b016 482 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
483
484 $content = json_decode($this->client->getResponse()->getContent(), true);
485
486 $this->assertGreaterThan(0, $content['id']);
f808b016 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']);
38520658
JB
488 $this->assertSame(1, $content['is_archived']);
489 $this->assertSame(1, $content['is_starred']);
f808b016 490 $this->assertSame(1, $content['user_id']);
900c8448
NL
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
f808b016 501 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
502
503 $content = json_decode($this->client->getResponse()->getContent(), true);
504
505 $this->assertGreaterThan(0, $content['id']);
f808b016 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']);
38520658
JB
507 $this->assertSame(0, $content['is_archived']);
508 $this->assertSame(1, $content['is_starred']);
900c8448
NL
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
c18a2476 522 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
900c8448 523 'title' => 'New awesome title',
f808b016 524 'tags' => 'new tag ' . uniqid(),
900c8448
NL
525 'starred' => '1',
526 'archive' => '0',
e9056dd9 527 'language' => 'de_AT',
645291e8
JB
528 'preview_picture' => 'http://preview.io/picture.jpg',
529 'authors' => 'bob,sponge',
530 'content' => 'awesome',
1112e547 531 'public' => 0,
a05b6115 532 'published_at' => 1488833381,
900c8448
NL
533 ]);
534
f808b016 535 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
536
537 $content = json_decode($this->client->getResponse()->getContent(), true);
538
f808b016
JB
539 $this->assertSame($entry->getId(), $content['id']);
540 $this->assertSame($entry->getUrl(), $content['url']);
541 $this->assertSame('New awesome title', $content['title']);
a05b6115 542 $this->assertGreaterThanOrEqual(1, count($content['tags']), 'We force only one tag');
f808b016
JB
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']);
645291e8
JB
546 $this->assertContains('sponge', $content['published_by']);
547 $this->assertContains('bob', $content['published_by']);
f808b016 548 $this->assertSame('awesome', $content['content']);
1112e547 549 $this->assertFalse($content['is_public'], 'Entry is no more shared');
a05b6115 550 $this->assertContains('2017-03-06', $content['published_at']);
900c8448
NL
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
a05b6115
JB
564 $previousContent = $entry->getContent();
565 $previousLanguage = $entry->getLanguage();
900c8448 566
f808b016 567 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
900c8448 568 'title' => 'New awesome title',
f808b016 569 'tags' => 'new tag ' . uniqid(),
900c8448
NL
570 'starred' => 1,
571 'archive' => 0,
645291e8 572 'authors' => ['bob', 'sponge'],
900c8448
NL
573 ]);
574
f808b016 575 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
576
577 $content = json_decode($this->client->getResponse()->getContent(), true);
578
f808b016
JB
579 $this->assertSame($entry->getId(), $content['id']);
580 $this->assertSame($entry->getUrl(), $content['url']);
a05b6115 581 $this->assertGreaterThanOrEqual(1, count($content['tags']), 'We force only one tag');
f808b016 582 $this->assertEmpty($content['published_by'], 'Authors were not saved because of an array instead of a string');
c18a2476
JB
583 $this->assertSame($previousContent, $content['content'], 'Ensure content has not moved');
584 $this->assertSame($previousLanguage, $content['language'], 'Ensure language has not moved');
900c8448
NL
585 }
586
587 public function testGetTagsEntry()
588 {
589 $entry = $this->client->getContainer()
590 ->get('doctrine.orm.entity_manager')
591 ->getRepository('WallabagCoreBundle:Entry')
592 ->findOneWithTags($this->user->getId());
593
594 $entry = $entry[0];
595
596 if (!$entry) {
597 $this->markTestSkipped('No content found in db.');
598 }
599
600 $tags = [];
601 foreach ($entry->getTags() as $tag) {
602 $tags[] = ['id' => $tag->getId(), 'label' => $tag->getLabel(), 'slug' => $tag->getSlug()];
603 }
604
f808b016 605 $this->client->request('GET', '/api/entries/' . $entry->getId() . '/tags');
900c8448 606
f808b016 607 $this->assertSame(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
900c8448
NL
608 }
609
610 public function testPostTagsOnEntry()
611 {
612 $entry = $this->client->getContainer()
613 ->get('doctrine.orm.entity_manager')
614 ->getRepository('WallabagCoreBundle:Entry')
615 ->findOneByUser(1);
616
617 if (!$entry) {
618 $this->markTestSkipped('No content found in db.');
619 }
620
621 $nbTags = count($entry->getTags());
622
623 $newTags = 'tag1,tag2,tag3';
624
f808b016 625 $this->client->request('POST', '/api/entries/' . $entry->getId() . '/tags', ['tags' => $newTags]);
900c8448 626
f808b016 627 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
628
629 $content = json_decode($this->client->getResponse()->getContent(), true);
630
631 $this->assertArrayHasKey('tags', $content);
f808b016 632 $this->assertSame($nbTags + 3, count($content['tags']));
900c8448
NL
633
634 $entryDB = $this->client->getContainer()
635 ->get('doctrine.orm.entity_manager')
636 ->getRepository('WallabagCoreBundle:Entry')
637 ->find($entry->getId());
638
639 $tagsInDB = [];
640 foreach ($entryDB->getTags()->toArray() as $tag) {
641 $tagsInDB[$tag->getId()] = $tag->getLabel();
642 }
643
644 foreach (explode(',', $newTags) as $tag) {
645 $this->assertContains($tag, $tagsInDB);
646 }
647 }
648
649 public function testDeleteOneTagEntry()
650 {
651 $entry = $this->client->getContainer()
652 ->get('doctrine.orm.entity_manager')
653 ->getRepository('WallabagCoreBundle:Entry')
654 ->findOneWithTags($this->user->getId());
655 $entry = $entry[0];
656
657 if (!$entry) {
658 $this->markTestSkipped('No content found in db.');
659 }
660
661 // hydrate the tags relations
662 $nbTags = count($entry->getTags());
663 $tag = $entry->getTags()[0];
664
f808b016 665 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '/tags/' . $tag->getId() . '.json');
900c8448 666
f808b016 667 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
668
669 $content = json_decode($this->client->getResponse()->getContent(), true);
670
671 $this->assertArrayHasKey('tags', $content);
f808b016 672 $this->assertSame($nbTags - 1, count($content['tags']));
900c8448
NL
673 }
674
675 public function testSaveIsArchivedAfterPost()
676 {
677 $entry = $this->client->getContainer()
678 ->get('doctrine.orm.entity_manager')
679 ->getRepository('WallabagCoreBundle:Entry')
680 ->findOneBy(['user' => 1, 'isArchived' => true]);
681
682 if (!$entry) {
683 $this->markTestSkipped('No content found in db.');
684 }
685
686 $this->client->request('POST', '/api/entries.json', [
687 'url' => $entry->getUrl(),
688 ]);
689
f808b016 690 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
691
692 $content = json_decode($this->client->getResponse()->getContent(), true);
693
38520658 694 $this->assertSame(1, $content['is_archived']);
900c8448
NL
695 }
696
697 public function testSaveIsStarredAfterPost()
698 {
699 $entry = $this->client->getContainer()
700 ->get('doctrine.orm.entity_manager')
701 ->getRepository('WallabagCoreBundle:Entry')
702 ->findOneBy(['user' => 1, 'isStarred' => true]);
703
704 if (!$entry) {
705 $this->markTestSkipped('No content found in db.');
706 }
707
708 $this->client->request('POST', '/api/entries.json', [
709 'url' => $entry->getUrl(),
710 ]);
711
f808b016 712 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
713
714 $content = json_decode($this->client->getResponse()->getContent(), true);
715
38520658 716 $this->assertSame(1, $content['is_starred']);
900c8448
NL
717 }
718
719 public function testSaveIsArchivedAfterPatch()
720 {
721 $entry = $this->client->getContainer()
722 ->get('doctrine.orm.entity_manager')
723 ->getRepository('WallabagCoreBundle:Entry')
724 ->findOneBy(['user' => 1, 'isArchived' => true]);
725
726 if (!$entry) {
727 $this->markTestSkipped('No content found in db.');
728 }
729
a05b6115
JB
730 $previousTitle = $entry->getTitle();
731
c18a2476
JB
732 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
733 'title' => $entry->getTitle() . '++',
900c8448
NL
734 ]);
735
f808b016 736 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
737
738 $content = json_decode($this->client->getResponse()->getContent(), true);
739
38520658 740 $this->assertSame(1, $content['is_archived']);
c18a2476 741 $this->assertSame($previousTitle . '++', $content['title']);
900c8448
NL
742 }
743
744 public function testSaveIsStarredAfterPatch()
745 {
746 $entry = $this->client->getContainer()
747 ->get('doctrine.orm.entity_manager')
748 ->getRepository('WallabagCoreBundle:Entry')
749 ->findOneBy(['user' => 1, 'isStarred' => true]);
750
751 if (!$entry) {
752 $this->markTestSkipped('No content found in db.');
753 }
f808b016
JB
754 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
755 'title' => $entry->getTitle() . '++',
900c8448
NL
756 ]);
757
f808b016 758 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
759
760 $content = json_decode($this->client->getResponse()->getContent(), true);
761
38520658 762 $this->assertSame(1, $content['is_starred']);
900c8448
NL
763 }
764
18696f77 765 public function dataForEntriesExistWithUrl()
900c8448 766 {
18696f77
JB
767 return [
768 'with_id' => [
769 'url' => '/api/entries/exists?url=http://0.0.0.0/entry2&return_id=1',
770 'expectedValue' => 2,
771 ],
772 'without_id' => [
773 'url' => '/api/entries/exists?url=http://0.0.0.0/entry2',
774 'expectedValue' => true,
775 ],
776 ];
777 }
778
779 /**
780 * @dataProvider dataForEntriesExistWithUrl
781 */
782 public function testGetEntriesExists($url, $expectedValue)
783 {
784 $this->client->request('GET', $url);
900c8448 785
f808b016 786 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
787
788 $content = json_decode($this->client->getResponse()->getContent(), true);
789
18696f77 790 $this->assertSame($expectedValue, $content['exists']);
900c8448
NL
791 }
792
793 public function testGetEntriesExistsWithManyUrls()
18696f77
JB
794 {
795 $url1 = 'http://0.0.0.0/entry2';
796 $url2 = 'http://0.0.0.0/entry10';
f808b016 797 $this->client->request('GET', '/api/entries/exists?urls[]=' . $url1 . '&urls[]=' . $url2 . '&return_id=1');
18696f77 798
f808b016 799 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
18696f77
JB
800
801 $content = json_decode($this->client->getResponse()->getContent(), true);
802
803 $this->assertArrayHasKey($url1, $content);
804 $this->assertArrayHasKey($url2, $content);
805 $this->assertSame(2, $content[$url1]);
39ffaba3 806 $this->assertNull($content[$url2]);
18696f77
JB
807 }
808
809 public function testGetEntriesExistsWithManyUrlsReturnBool()
900c8448
NL
810 {
811 $url1 = 'http://0.0.0.0/entry2';
812 $url2 = 'http://0.0.0.0/entry10';
f808b016 813 $this->client->request('GET', '/api/entries/exists?urls[]=' . $url1 . '&urls[]=' . $url2);
900c8448 814
f808b016 815 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
816
817 $content = json_decode($this->client->getResponse()->getContent(), true);
818
819 $this->assertArrayHasKey($url1, $content);
820 $this->assertArrayHasKey($url2, $content);
39ffaba3
JB
821 $this->assertTrue($content[$url1]);
822 $this->assertFalse($content[$url2]);
900c8448
NL
823 }
824
825 public function testGetEntriesExistsWhichDoesNotExists()
826 {
827 $this->client->request('GET', '/api/entries/exists?url=http://google.com/entry2');
828
f808b016 829 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
900c8448
NL
830
831 $content = json_decode($this->client->getResponse()->getContent(), true);
832
f808b016 833 $this->assertSame(false, $content['exists']);
900c8448
NL
834 }
835
836 public function testGetEntriesExistsWithNoUrl()
837 {
838 $this->client->request('GET', '/api/entries/exists?url=');
839
f808b016 840 $this->assertSame(403, $this->client->getResponse()->getStatusCode());
900c8448 841 }
0a6f4568
JB
842
843 public function testReloadEntryErrorWhileFetching()
844 {
70584b42 845 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
0a6f4568 846 ->getRepository('WallabagCoreBundle:Entry')
70584b42 847 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
0a6f4568
JB
848
849 if (!$entry) {
850 $this->markTestSkipped('No content found in db.');
851 }
852
f808b016
JB
853 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '/reload.json');
854 $this->assertSame(304, $this->client->getResponse()->getStatusCode());
0a6f4568
JB
855 }
856
857 public function testReloadEntry()
858 {
859 $this->client->request('POST', '/api/entries.json', [
860 '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',
861 'archive' => '1',
862 'tags' => 'google, apple',
863 ]);
864
865 $json = json_decode($this->client->getResponse()->getContent(), true);
866
867 $this->setUp();
868
f808b016
JB
869 $this->client->request('PATCH', '/api/entries/' . $json['id'] . '/reload.json');
870 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
0a6f4568
JB
871
872 $content = json_decode($this->client->getResponse()->getContent(), true);
873
874 $this->assertNotEmpty($content['title']);
875
f808b016 876 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
0a6f4568 877 }
d1fc5902
NL
878
879 public function testPostEntriesTagsListAction()
880 {
80299ed2
NL
881 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
882 ->getRepository('WallabagCoreBundle:Entry')
dcbebc17 883 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
80299ed2
NL
884
885 $tags = $entry->getTags();
886
dcbebc17 887 $this->assertCount(2, $tags);
80299ed2 888
d1fc5902
NL
889 $list = [
890 [
dcbebc17 891 'url' => 'http://0.0.0.0/entry4',
80299ed2 892 'tags' => 'new tag 1, new tag 2',
d1fc5902 893 ],
80299ed2
NL
894 ];
895
f808b016 896 $this->client->request('POST', '/api/entries/tags/lists?list=' . json_encode($list));
80299ed2 897
f808b016 898 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
80299ed2
NL
899
900 $content = json_decode($this->client->getResponse()->getContent(), true);
901
902 $this->assertInternalType('int', $content[0]['entry']);
f808b016 903 $this->assertSame('http://0.0.0.0/entry4', $content[0]['url']);
80299ed2
NL
904
905 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
906 ->getRepository('WallabagCoreBundle:Entry')
dcbebc17 907 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
80299ed2
NL
908
909 $tags = $entry->getTags();
dcbebc17 910 $this->assertCount(4, $tags);
80299ed2
NL
911 }
912
a05b6115
JB
913 public function testPostEntriesTagsListActionNoList()
914 {
c18a2476 915 $this->client->request('POST', '/api/entries/tags/lists?list=' . json_encode([]));
a05b6115 916
c18a2476 917 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
a05b6115
JB
918
919 $content = json_decode($this->client->getResponse()->getContent(), true);
920
921 $this->assertEmpty($content);
922 }
923
80299ed2
NL
924 public function testDeleteEntriesTagsListAction()
925 {
7ab5eb95 926 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
927 $entry = new Entry($em->getReference(User::class, 1));
928 $entry->setUrl('http://0.0.0.0/test-entry');
929 $entry->addTag((new Tag())->setLabel('foo-tag'));
930 $entry->addTag((new Tag())->setLabel('bar-tag'));
931 $em->persist($entry);
932 $em->flush();
80299ed2 933
7ab5eb95 934 $em->clear();
80299ed2
NL
935
936 $list = [
d1fc5902 937 [
7ab5eb95 938 'url' => 'http://0.0.0.0/test-entry',
939 'tags' => 'foo-tag, bar-tag',
d1fc5902
NL
940 ],
941 ];
942
f808b016
JB
943 $this->client->request('DELETE', '/api/entries/tags/list?list=' . json_encode($list));
944 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
7ab5eb95 945
946 $entry = $em->getRepository('WallabagCoreBundle:Entry')->find($entry->getId());
947 $this->assertCount(0, $entry->getTags());
1eca7831
NL
948 }
949
a05b6115
JB
950 public function testDeleteEntriesTagsListActionNoList()
951 {
c18a2476 952 $this->client->request('DELETE', '/api/entries/tags/list?list=' . json_encode([]));
a05b6115 953
c18a2476 954 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
a05b6115
JB
955
956 $content = json_decode($this->client->getResponse()->getContent(), true);
957
958 $this->assertEmpty($content);
959 }
960
a7abcc7b 961 public function testPostEntriesListAction()
1eca7831
NL
962 {
963 $list = [
a7abcc7b 964 'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
7fa844a3 965 'http://0.0.0.0/entry2',
1eca7831
NL
966 ];
967
f808b016 968 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode($list));
d1fc5902 969
f808b016 970 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
d1fc5902
NL
971
972 $content = json_decode($this->client->getResponse()->getContent(), true);
973
80299ed2 974 $this->assertInternalType('int', $content[0]['entry']);
f808b016 975 $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']);
d1fc5902 976
1eca7831 977 $this->assertInternalType('int', $content[1]['entry']);
f808b016 978 $this->assertSame('http://0.0.0.0/entry2', $content[1]['url']);
a7abcc7b 979 }
d1fc5902 980
a05b6115
JB
981 public function testPostEntriesListActionWithNoUrls()
982 {
c18a2476 983 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode([]));
a05b6115 984
c18a2476 985 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
a05b6115
JB
986
987 $content = json_decode($this->client->getResponse()->getContent(), true);
988
989 $this->assertEmpty($content);
990 }
991
a7abcc7b
NL
992 public function testDeleteEntriesListAction()
993 {
7ab5eb95 994 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
995 $em->persist((new Entry($em->getReference(User::class, 1)))->setUrl('http://0.0.0.0/test-entry1'));
996
997 $em->flush();
998 $em->clear();
a7abcc7b 999 $list = [
7ab5eb95 1000 'http://0.0.0.0/test-entry1',
1001 'http://0.0.0.0/test-entry-not-exist',
a7abcc7b
NL
1002 ];
1003
f808b016 1004 $this->client->request('DELETE', '/api/entries/list?urls=' . json_encode($list));
d1fc5902 1005
f808b016 1006 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
a7abcc7b
NL
1007
1008 $content = json_decode($this->client->getResponse()->getContent(), true);
1009
1010 $this->assertTrue($content[0]['entry']);
f808b016 1011 $this->assertSame('http://0.0.0.0/test-entry1', $content[0]['url']);
1eca7831 1012
a7abcc7b 1013 $this->assertFalse($content[1]['entry']);
f808b016 1014 $this->assertSame('http://0.0.0.0/test-entry-not-exist', $content[1]['url']);
d1fc5902 1015 }
efd351c9 1016
a05b6115
JB
1017 public function testDeleteEntriesListActionWithNoUrls()
1018 {
c18a2476 1019 $this->client->request('DELETE', '/api/entries/list?urls=' . json_encode([]));
a05b6115 1020
c18a2476 1021 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
a05b6115
JB
1022
1023 $content = json_decode($this->client->getResponse()->getContent(), true);
1024
1025 $this->assertEmpty($content);
1026 }
1027
efd351c9
NL
1028 public function testLimitBulkAction()
1029 {
1030 $list = [
1031 'http://0.0.0.0/entry1',
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 ];
1043
f808b016 1044 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode($list));
72db15ca 1045
f808b016 1046 $this->assertSame(400, $this->client->getResponse()->getStatusCode());
72db15ca 1047 $this->assertContains('API limit reached', $this->client->getResponse()->getContent());
d1fc5902 1048 }
900c8448 1049}