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