]> git.immae.eu Git - github/wallabag/wallabag.git/blob - tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
Merge pull request #3442 from wallabag/empty-entry
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / EntryRestControllerTest.php
1 <?php
2
3 namespace Tests\Wallabag\ApiBundle\Controller;
4
5 use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
6 use Wallabag\CoreBundle\Entity\Entry;
7 use Wallabag\CoreBundle\Entity\Tag;
8 use Wallabag\CoreBundle\Helper\ContentProxy;
9 use Wallabag\UserBundle\Entity\User;
10
11 class EntryRestControllerTest extends WallabagApiTestCase
12 {
13 public function testGetOneEntry()
14 {
15 $entry = $this->client->getContainer()
16 ->get('doctrine.orm.entity_manager')
17 ->getRepository('WallabagCoreBundle:Entry')
18 ->findOneBy(['user' => 1, 'isArchived' => false]);
19
20 if (!$entry) {
21 $this->markTestSkipped('No content found in db.');
22 }
23
24 $this->client->request('GET', '/api/entries/' . $entry->getId() . '.json');
25 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
26
27 $content = json_decode($this->client->getResponse()->getContent(), true);
28
29 $this->assertSame($entry->getTitle(), $content['title']);
30 $this->assertSame($entry->getUrl(), $content['url']);
31 $this->assertCount(count($entry->getTags()), $content['tags']);
32 $this->assertSame($entry->getUserName(), $content['user_name']);
33 $this->assertSame($entry->getUserEmail(), $content['user_email']);
34 $this->assertSame($entry->getUserId(), $content['user_id']);
35
36 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
37 }
38
39 public function 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
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
69 $this->client->request('GET', '/api/entries/' . $entry->getId() . '/export.epub');
70 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
71
72 // epub format got the content type in the content
73 $this->assertContains('application/epub', $this->client->getResponse()->getContent());
74 $this->assertSame('application/epub+zip', $this->client->getResponse()->headers->get('Content-Type'));
75
76 // re-auth client for mobi
77 $client = $this->createAuthorizedClient();
78 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.mobi');
79 $this->assertSame(200, $client->getResponse()->getStatusCode());
80
81 $this->assertSame('application/x-mobipocket-ebook', $client->getResponse()->headers->get('Content-Type'));
82
83 // re-auth client for pdf
84 $client = $this->createAuthorizedClient();
85 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.pdf');
86 $this->assertSame(200, $client->getResponse()->getStatusCode());
87
88 $this->assertContains('PDF-', $client->getResponse()->getContent());
89 $this->assertSame('application/pdf', $client->getResponse()->headers->get('Content-Type'));
90
91 // re-auth client for pdf
92 $client = $this->createAuthorizedClient();
93 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.txt');
94 $this->assertSame(200, $client->getResponse()->getStatusCode());
95
96 $this->assertContains('text/plain', $client->getResponse()->headers->get('Content-Type'));
97
98 // re-auth client for pdf
99 $client = $this->createAuthorizedClient();
100 $client->request('GET', '/api/entries/' . $entry->getId() . '/export.csv');
101 $this->assertSame(200, $client->getResponse()->getStatusCode());
102
103 $this->assertContains('application/csv', $client->getResponse()->headers->get('Content-Type'));
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
117 $this->client->request('GET', '/api/entries/' . $entry->getId() . '.json');
118
119 $this->assertSame(403, $this->client->getResponse()->getStatusCode());
120 }
121
122 public function testGetEntries()
123 {
124 $this->client->request('GET', '/api/entries');
125
126 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
133 $this->assertSame(1, $content['page']);
134 $this->assertGreaterThanOrEqual(1, $content['pages']);
135
136 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
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,
150 'public' => 0,
151 ]);
152
153 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
160 $this->assertSame(1, $content['page']);
161 $this->assertSame(2, $content['limit']);
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']);
177 $this->assertContains('public=0', $content['_links'][$link]['href']);
178 }
179
180 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
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
205 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
212 $this->assertSame(1, $content['page']);
213 $this->assertSame(30, $content['limit']);
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']);
224 }
225
226 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
227 }
228
229 public function testGetEntriesOnPageTwo()
230 {
231 $this->client->request('GET', '/api/entries', [
232 'page' => 2,
233 'perPage' => 2,
234 ]);
235
236 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
237
238 $content = json_decode($this->client->getResponse()->getContent(), true);
239
240 $this->assertGreaterThanOrEqual(0, $content['total']);
241 $this->assertSame(2, $content['page']);
242 $this->assertSame(2, $content['limit']);
243 }
244
245 public function testGetStarredEntries()
246 {
247 $this->client->request('GET', '/api/entries', ['starred' => 1, 'sort' => 'updated']);
248
249 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
256 $this->assertSame(1, $content['page']);
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
270 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
271 }
272
273 public function testGetArchiveEntries()
274 {
275 $this->client->request('GET', '/api/entries', ['archive' => 1]);
276
277 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
284 $this->assertSame(1, $content['page']);
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
297 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
298 }
299
300 public function testGetTaggedEntries()
301 {
302 $this->client->request('GET', '/api/entries', ['tags' => 'foo,bar']);
303
304 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
311 $this->assertSame(1, $content['page']);
312 $this->assertGreaterThanOrEqual(1, $content['pages']);
313
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
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]);
324 $this->assertContains('tags=' . urlencode('foo,bar'), $content['_links'][$link]['href']);
325 }
326
327 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
328 }
329
330 public function testGetTaggedEntriesWithBadParams()
331 {
332 $this->client->request('GET', '/api/entries', ['tags' => ['foo', 'bar']]);
333
334 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
335 }
336
337 public function testGetDatedEntries()
338 {
339 $this->client->request('GET', '/api/entries', ['since' => 1443274283]);
340
341 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
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']);
348 $this->assertSame(1, $content['page']);
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
361 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
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
369 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
370
371 $content = json_decode($this->client->getResponse()->getContent(), true);
372
373 $this->assertGreaterThanOrEqual(1, count($content));
374 $this->assertEmpty($content['_embedded']['items']);
375 $this->assertSame(0, $content['total']);
376 $this->assertSame(1, $content['page']);
377 $this->assertSame(1, $content['pages']);
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]);
386 $this->assertContains('since=' . ($future->getTimestamp() + 1000), $content['_links'][$link]['href']);
387 }
388
389 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
390 }
391
392 public function testDeleteEntry()
393 {
394 $entry = $this->client->getContainer()
395 ->get('doctrine.orm.entity_manager')
396 ->getRepository('WallabagCoreBundle:Entry')
397 ->findOneByUser(1, ['id' => 'asc']);
398
399 if (!$entry) {
400 $this->markTestSkipped('No content found in db.');
401 }
402
403 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '.json');
404
405 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
406
407 $content = json_decode($this->client->getResponse()->getContent(), true);
408
409 $this->assertSame($entry->getTitle(), $content['title']);
410 $this->assertSame($entry->getUrl(), $content['url']);
411
412 // We'll try to delete this entry again
413 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '.json');
414
415 $this->assertSame(404, $this->client->getResponse()->getStatusCode());
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',
424 'content' => 'my content',
425 'language' => 'de',
426 'published_at' => '2016-09-08T11:55:58+0200',
427 'authors' => 'bob,helen',
428 'public' => 1,
429 ]);
430
431 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
432
433 $content = json_decode($this->client->getResponse()->getContent(), true);
434
435 $this->assertGreaterThan(0, $content['id']);
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']);
437 $this->assertSame(0, $content['is_archived']);
438 $this->assertSame(0, $content['is_starred']);
439 $this->assertNull($content['starred_at']);
440 $this->assertSame('New title for my article', $content['title']);
441 $this->assertSame(1, $content['user_id']);
442 $this->assertCount(2, $content['tags']);
443 $this->assertNull($content['origin_url']);
444 $this->assertSame('my content', $content['content']);
445 $this->assertSame('de', $content['language']);
446 $this->assertSame('2016-09-08T11:55:58+0200', $content['published_at']);
447 $this->assertCount(2, $content['published_by']);
448 $this->assertContains('bob', $content['published_by']);
449 $this->assertContains('helen', $content['published_by']);
450 $this->assertTrue($content['is_public'], 'A public link has been generated for that entry');
451 }
452
453 public function testPostSameEntry()
454 {
455 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
456 $entry = new Entry($em->getReference(User::class, 1));
457 $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');
458 $entry->setArchived(true);
459 $entry->addTag((new Tag())->setLabel('google'));
460 $entry->addTag((new Tag())->setLabel('apple'));
461 $em->persist($entry);
462 $em->flush();
463 $em->clear();
464
465 $this->client->request('POST', '/api/entries.json', [
466 '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',
467 'archive' => '1',
468 'tags' => 'google, apple',
469 ]);
470
471 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
472
473 $content = json_decode($this->client->getResponse()->getContent(), true);
474
475 $this->assertGreaterThan(0, $content['id']);
476 $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']);
477 $this->assertSame(1, $content['is_archived']);
478 $this->assertSame(0, $content['is_starred']);
479 $this->assertCount(3, $content['tags']);
480 }
481
482 public function testPostEntryWhenFetchContentFails()
483 {
484 /** @var \Symfony\Component\DependencyInjection\Container $container */
485 $container = $this->client->getContainer();
486 $contentProxy = $this->getMockBuilder(ContentProxy::class)
487 ->disableOriginalConstructor()
488 ->setMethods(['updateEntry'])
489 ->getMock();
490 $contentProxy->expects($this->any())
491 ->method('updateEntry')
492 ->willThrowException(new \Exception('Test Fetch content fails'));
493 $container->set('wallabag_core.content_proxy', $contentProxy);
494
495 try {
496 $this->client->request('POST', '/api/entries.json', [
497 'url' => 'http://www.example.com/',
498 ]);
499
500 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
501 $content = json_decode($this->client->getResponse()->getContent(), true);
502 $this->assertGreaterThan(0, $content['id']);
503 $this->assertSame('http://www.example.com/', $content['url']);
504 $this->assertSame('www.example.com', $content['domain_name']);
505 $this->assertSame('www.example.com', $content['title']);
506 } finally {
507 // Remove the created entry to avoid side effects on other tests
508 if (isset($content['id'])) {
509 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
510 $entry = $em->getReference('WallabagCoreBundle:Entry', $content['id']);
511 $em->remove($entry);
512 $em->flush();
513 }
514 }
515 }
516
517 public function testPostArchivedAndStarredEntry()
518 {
519 $now = new \DateTime();
520 $this->client->request('POST', '/api/entries.json', [
521 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
522 'archive' => '1',
523 'starred' => '1',
524 ]);
525
526 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
527
528 $content = json_decode($this->client->getResponse()->getContent(), true);
529
530 $this->assertGreaterThan(0, $content['id']);
531 $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']);
532 $this->assertSame(1, $content['is_archived']);
533 $this->assertSame(1, $content['is_starred']);
534 $this->assertGreaterThanOrEqual($now->getTimestamp(), (new \DateTime($content['starred_at']))->getTimestamp());
535 $this->assertSame(1, $content['user_id']);
536 }
537
538 public function testPostArchivedAndStarredEntryWithoutQuotes()
539 {
540 $this->client->request('POST', '/api/entries.json', [
541 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
542 'archive' => 0,
543 'starred' => 1,
544 ]);
545
546 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
547
548 $content = json_decode($this->client->getResponse()->getContent(), true);
549
550 $this->assertGreaterThan(0, $content['id']);
551 $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']);
552 $this->assertSame(0, $content['is_archived']);
553 $this->assertSame(1, $content['is_starred']);
554 }
555
556 public function testPostEntryWithOriginUrl()
557 {
558 $this->client->request('POST', '/api/entries.json', [
559 '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',
560 'tags' => 'google',
561 'title' => 'New title for my article',
562 'content' => 'my content',
563 'language' => 'de',
564 'published_at' => '2016-09-08T11:55:58+0200',
565 'authors' => 'bob,helen',
566 'public' => 1,
567 'origin_url' => 'http://mysource.tld',
568 ]);
569
570 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
571
572 $content = json_decode($this->client->getResponse()->getContent(), true);
573
574 $this->assertGreaterThan(0, $content['id']);
575 $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']);
576 $this->assertSame('http://mysource.tld', $content['origin_url']);
577 }
578
579 public function testPatchEntry()
580 {
581 $entry = $this->client->getContainer()
582 ->get('doctrine.orm.entity_manager')
583 ->getRepository('WallabagCoreBundle:Entry')
584 ->findOneByUser(1);
585
586 if (!$entry) {
587 $this->markTestSkipped('No content found in db.');
588 }
589
590 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
591 'title' => 'New awesome title',
592 'tags' => 'new tag ' . uniqid(),
593 'starred' => '1',
594 'archive' => '0',
595 'language' => 'de_AT',
596 'preview_picture' => 'http://preview.io/picture.jpg',
597 'authors' => 'bob,sponge',
598 'content' => 'awesome',
599 'public' => 0,
600 'published_at' => 1488833381,
601 ]);
602
603 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
604
605 $content = json_decode($this->client->getResponse()->getContent(), true);
606
607 $this->assertSame($entry->getId(), $content['id']);
608 $this->assertSame($entry->getUrl(), $content['url']);
609 $this->assertSame('New awesome title', $content['title']);
610 $this->assertGreaterThanOrEqual(1, count($content['tags']), 'We force only one tag');
611 $this->assertSame(1, $content['user_id']);
612 $this->assertSame('de_AT', $content['language']);
613 $this->assertSame('http://preview.io/picture.jpg', $content['preview_picture']);
614 $this->assertContains('sponge', $content['published_by']);
615 $this->assertContains('bob', $content['published_by']);
616 $this->assertSame('awesome', $content['content']);
617 $this->assertFalse($content['is_public'], 'Entry is no more shared');
618 $this->assertContains('2017-03-06', $content['published_at']);
619 }
620
621 public function testPatchEntryWithoutQuotes()
622 {
623 $entry = $this->client->getContainer()
624 ->get('doctrine.orm.entity_manager')
625 ->getRepository('WallabagCoreBundle:Entry')
626 ->findOneByUser(1);
627
628 if (!$entry) {
629 $this->markTestSkipped('No content found in db.');
630 }
631
632 $previousContent = $entry->getContent();
633 $previousLanguage = $entry->getLanguage();
634
635 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
636 'title' => 'New awesome title',
637 'tags' => 'new tag ' . uniqid(),
638 'starred' => 1,
639 'archive' => 0,
640 'authors' => ['bob', 'sponge'],
641 ]);
642
643 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
644
645 $content = json_decode($this->client->getResponse()->getContent(), true);
646
647 $this->assertSame($entry->getId(), $content['id']);
648 $this->assertSame($entry->getUrl(), $content['url']);
649 $this->assertGreaterThanOrEqual(1, count($content['tags']), 'We force only one tag');
650 $this->assertEmpty($content['published_by'], 'Authors were not saved because of an array instead of a string');
651 $this->assertSame($previousContent, $content['content'], 'Ensure content has not moved');
652 $this->assertSame($previousLanguage, $content['language'], 'Ensure language has not moved');
653 }
654
655 public function testPatchEntryWithOriginUrl()
656 {
657 $entry = $this->client->getContainer()
658 ->get('doctrine.orm.entity_manager')
659 ->getRepository('WallabagCoreBundle:Entry')
660 ->findOneByUser(1);
661
662 if (!$entry) {
663 $this->markTestSkipped('No content found in db.');
664 }
665
666 $previousContent = $entry->getContent();
667 $previousLanguage = $entry->getLanguage();
668
669 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
670 'title' => 'Another awesome title just for profit',
671 'origin_url' => 'https://myawesomesource.example.com',
672 ]);
673
674 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
675
676 $content = json_decode($this->client->getResponse()->getContent(), true);
677
678 $this->assertSame($entry->getId(), $content['id']);
679 $this->assertSame($entry->getUrl(), $content['url']);
680 $this->assertSame('https://myawesomesource.example.com', $content['origin_url']);
681 $this->assertEmpty($content['published_by'], 'Authors were not saved because of an array instead of a string');
682 $this->assertSame($previousContent, $content['content'], 'Ensure content has not moved');
683 $this->assertSame($previousLanguage, $content['language'], 'Ensure language has not moved');
684 }
685
686 public function testPatchEntryRemoveOriginUrl()
687 {
688 $entry = $this->client->getContainer()
689 ->get('doctrine.orm.entity_manager')
690 ->getRepository('WallabagCoreBundle:Entry')
691 ->findOneByUser(1);
692
693 if (!$entry) {
694 $this->markTestSkipped('No content found in db.');
695 }
696
697 $previousContent = $entry->getContent();
698 $previousLanguage = $entry->getLanguage();
699 $previousTitle = $entry->getTitle();
700
701 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
702 'origin_url' => '',
703 ]);
704
705 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
706
707 $content = json_decode($this->client->getResponse()->getContent(), true);
708
709 $this->assertSame($entry->getId(), $content['id']);
710 $this->assertSame($entry->getUrl(), $content['url']);
711 $this->assertEmpty($content['origin_url']);
712 $this->assertEmpty($content['published_by'], 'Authors were not saved because of an array instead of a string');
713 $this->assertSame($previousContent, $content['content'], 'Ensure content has not moved');
714 $this->assertSame($previousLanguage, $content['language'], 'Ensure language has not moved');
715 $this->assertSame($previousTitle, $content['title'], 'Ensure title has not moved');
716 }
717
718 public function testPatchEntryNullOriginUrl()
719 {
720 $entry = $this->client->getContainer()
721 ->get('doctrine.orm.entity_manager')
722 ->getRepository('WallabagCoreBundle:Entry')
723 ->findOneByUser(1);
724
725 if (!$entry) {
726 $this->markTestSkipped('No content found in db.');
727 }
728
729 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
730 'origin_url' => null,
731 ]);
732
733 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
734
735 $content = json_decode($this->client->getResponse()->getContent(), true);
736
737 $this->assertNull($content['origin_url']);
738 }
739
740 public function testGetTagsEntry()
741 {
742 $entry = $this->client->getContainer()
743 ->get('doctrine.orm.entity_manager')
744 ->getRepository('WallabagCoreBundle:Entry')
745 ->findOneWithTags($this->user->getId());
746
747 $entry = $entry[0];
748
749 if (!$entry) {
750 $this->markTestSkipped('No content found in db.');
751 }
752
753 $tags = [];
754 foreach ($entry->getTags() as $tag) {
755 $tags[] = ['id' => $tag->getId(), 'label' => $tag->getLabel(), 'slug' => $tag->getSlug()];
756 }
757
758 $this->client->request('GET', '/api/entries/' . $entry->getId() . '/tags');
759
760 $this->assertSame(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
761 }
762
763 public function testPostTagsOnEntry()
764 {
765 $entry = $this->client->getContainer()
766 ->get('doctrine.orm.entity_manager')
767 ->getRepository('WallabagCoreBundle:Entry')
768 ->findOneByUser(1);
769
770 if (!$entry) {
771 $this->markTestSkipped('No content found in db.');
772 }
773
774 $nbTags = count($entry->getTags());
775
776 $newTags = 'tag1,tag2,tag3';
777
778 $this->client->request('POST', '/api/entries/' . $entry->getId() . '/tags', ['tags' => $newTags]);
779
780 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
781
782 $content = json_decode($this->client->getResponse()->getContent(), true);
783
784 $this->assertArrayHasKey('tags', $content);
785 $this->assertSame($nbTags + 3, count($content['tags']));
786
787 $entryDB = $this->client->getContainer()
788 ->get('doctrine.orm.entity_manager')
789 ->getRepository('WallabagCoreBundle:Entry')
790 ->find($entry->getId());
791
792 $tagsInDB = [];
793 foreach ($entryDB->getTags()->toArray() as $tag) {
794 $tagsInDB[$tag->getId()] = $tag->getLabel();
795 }
796
797 foreach (explode(',', $newTags) as $tag) {
798 $this->assertContains($tag, $tagsInDB);
799 }
800 }
801
802 public function testDeleteOneTagEntry()
803 {
804 $entry = $this->client->getContainer()
805 ->get('doctrine.orm.entity_manager')
806 ->getRepository('WallabagCoreBundle:Entry')
807 ->findOneWithTags($this->user->getId());
808 $entry = $entry[0];
809
810 if (!$entry) {
811 $this->markTestSkipped('No content found in db.');
812 }
813
814 // hydrate the tags relations
815 $nbTags = count($entry->getTags());
816 $tag = $entry->getTags()[0];
817
818 $this->client->request('DELETE', '/api/entries/' . $entry->getId() . '/tags/' . $tag->getId() . '.json');
819
820 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
821
822 $content = json_decode($this->client->getResponse()->getContent(), true);
823
824 $this->assertArrayHasKey('tags', $content);
825 $this->assertSame($nbTags - 1, count($content['tags']));
826 }
827
828 public function testSaveIsArchivedAfterPost()
829 {
830 $entry = $this->client->getContainer()
831 ->get('doctrine.orm.entity_manager')
832 ->getRepository('WallabagCoreBundle:Entry')
833 ->findOneBy(['user' => 1, 'isArchived' => true]);
834
835 if (!$entry) {
836 $this->markTestSkipped('No content found in db.');
837 }
838
839 $this->client->request('POST', '/api/entries.json', [
840 'url' => $entry->getUrl(),
841 ]);
842
843 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
844
845 $content = json_decode($this->client->getResponse()->getContent(), true);
846
847 $this->assertSame(1, $content['is_archived']);
848 }
849
850 public function testSaveIsStarredAfterPost()
851 {
852 $entry = $this->client->getContainer()
853 ->get('doctrine.orm.entity_manager')
854 ->getRepository('WallabagCoreBundle:Entry')
855 ->findOneBy(['user' => 1, 'isStarred' => true]);
856
857 if (!$entry) {
858 $this->markTestSkipped('No content found in db.');
859 }
860
861 $this->client->request('POST', '/api/entries.json', [
862 'url' => $entry->getUrl(),
863 ]);
864
865 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
866
867 $content = json_decode($this->client->getResponse()->getContent(), true);
868
869 $this->assertSame(1, $content['is_starred']);
870 }
871
872 public function testSaveIsArchivedAfterPatch()
873 {
874 $entry = $this->client->getContainer()
875 ->get('doctrine.orm.entity_manager')
876 ->getRepository('WallabagCoreBundle:Entry')
877 ->findOneBy(['user' => 1, 'isArchived' => true]);
878
879 if (!$entry) {
880 $this->markTestSkipped('No content found in db.');
881 }
882
883 $previousTitle = $entry->getTitle();
884
885 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
886 'title' => $entry->getTitle() . '++',
887 ]);
888
889 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
890
891 $content = json_decode($this->client->getResponse()->getContent(), true);
892
893 $this->assertSame(1, $content['is_archived']);
894 $this->assertSame($previousTitle . '++', $content['title']);
895 }
896
897 public function testSaveIsStarredAfterPatch()
898 {
899 $now = new \DateTime();
900 $entry = $this->client->getContainer()
901 ->get('doctrine.orm.entity_manager')
902 ->getRepository('WallabagCoreBundle:Entry')
903 ->findOneBy(['user' => 1, 'isStarred' => true]);
904
905 if (!$entry) {
906 $this->markTestSkipped('No content found in db.');
907 }
908 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '.json', [
909 'title' => $entry->getTitle() . '++',
910 ]);
911
912 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
913
914 $content = json_decode($this->client->getResponse()->getContent(), true);
915
916 $this->assertSame(1, $content['is_starred']);
917 $this->assertGreaterThanOrEqual($now->getTimestamp(), (new \DateTime($content['starred_at']))->getTimestamp());
918 }
919
920 public function dataForEntriesExistWithUrl()
921 {
922 return [
923 'with_id' => [
924 'url' => '/api/entries/exists?url=http://0.0.0.0/entry2&return_id=1',
925 'expectedValue' => 2,
926 ],
927 'without_id' => [
928 'url' => '/api/entries/exists?url=http://0.0.0.0/entry2',
929 'expectedValue' => true,
930 ],
931 ];
932 }
933
934 /**
935 * @dataProvider dataForEntriesExistWithUrl
936 */
937 public function testGetEntriesExists($url, $expectedValue)
938 {
939 $this->client->request('GET', $url);
940
941 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
942
943 $content = json_decode($this->client->getResponse()->getContent(), true);
944
945 $this->assertSame($expectedValue, $content['exists']);
946 }
947
948 public function testGetEntriesExistsWithManyUrls()
949 {
950 $url1 = 'http://0.0.0.0/entry2';
951 $url2 = 'http://0.0.0.0/entry10';
952 $this->client->request('GET', '/api/entries/exists?urls[]=' . $url1 . '&urls[]=' . $url2 . '&return_id=1');
953
954 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
955
956 $content = json_decode($this->client->getResponse()->getContent(), true);
957
958 $this->assertArrayHasKey($url1, $content);
959 $this->assertArrayHasKey($url2, $content);
960 $this->assertSame(2, $content[$url1]);
961 $this->assertNull($content[$url2]);
962 }
963
964 public function testGetEntriesExistsWithManyUrlsReturnBool()
965 {
966 $url1 = 'http://0.0.0.0/entry2';
967 $url2 = 'http://0.0.0.0/entry10';
968 $this->client->request('GET', '/api/entries/exists?urls[]=' . $url1 . '&urls[]=' . $url2);
969
970 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
971
972 $content = json_decode($this->client->getResponse()->getContent(), true);
973
974 $this->assertArrayHasKey($url1, $content);
975 $this->assertArrayHasKey($url2, $content);
976 $this->assertTrue($content[$url1]);
977 $this->assertFalse($content[$url2]);
978 }
979
980 public function testGetEntriesExistsWhichDoesNotExists()
981 {
982 $this->client->request('GET', '/api/entries/exists?url=http://google.com/entry2');
983
984 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
985
986 $content = json_decode($this->client->getResponse()->getContent(), true);
987
988 $this->assertFalse($content['exists']);
989 }
990
991 public function testGetEntriesExistsWithNoUrl()
992 {
993 $this->client->request('GET', '/api/entries/exists?url=');
994
995 $this->assertSame(403, $this->client->getResponse()->getStatusCode());
996 }
997
998 public function testReloadEntryErrorWhileFetching()
999 {
1000 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
1001 ->getRepository('WallabagCoreBundle:Entry')
1002 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
1003
1004 if (!$entry) {
1005 $this->markTestSkipped('No content found in db.');
1006 }
1007
1008 $this->client->request('PATCH', '/api/entries/' . $entry->getId() . '/reload.json');
1009 $this->assertSame(304, $this->client->getResponse()->getStatusCode());
1010 }
1011
1012 public function testReloadEntry()
1013 {
1014 $this->client->request('POST', '/api/entries.json', [
1015 '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',
1016 'archive' => '1',
1017 'tags' => 'google, apple',
1018 ]);
1019
1020 $json = json_decode($this->client->getResponse()->getContent(), true);
1021
1022 $this->setUp();
1023
1024 $this->client->request('PATCH', '/api/entries/' . $json['id'] . '/reload.json');
1025 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1026
1027 $content = json_decode($this->client->getResponse()->getContent(), true);
1028
1029 $this->assertNotEmpty($content['title']);
1030
1031 $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
1032 }
1033
1034 public function testPostEntriesTagsListAction()
1035 {
1036 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
1037 ->getRepository('WallabagCoreBundle:Entry')
1038 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
1039
1040 $tags = $entry->getTags();
1041
1042 $this->assertCount(2, $tags);
1043
1044 $list = [
1045 [
1046 'url' => 'http://0.0.0.0/entry4',
1047 'tags' => 'new tag 1, new tag 2',
1048 ],
1049 ];
1050
1051 $this->client->request('POST', '/api/entries/tags/lists?list=' . json_encode($list));
1052
1053 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1054
1055 $content = json_decode($this->client->getResponse()->getContent(), true);
1056
1057 $this->assertInternalType('int', $content[0]['entry']);
1058 $this->assertSame('http://0.0.0.0/entry4', $content[0]['url']);
1059
1060 $entry = $this->client->getContainer()->get('doctrine.orm.entity_manager')
1061 ->getRepository('WallabagCoreBundle:Entry')
1062 ->findByUrlAndUserId('http://0.0.0.0/entry4', 1);
1063
1064 $tags = $entry->getTags();
1065 $this->assertCount(4, $tags);
1066 }
1067
1068 public function testPostEntriesTagsListActionNoList()
1069 {
1070 $this->client->request('POST', '/api/entries/tags/lists?list=' . json_encode([]));
1071
1072 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1073
1074 $content = json_decode($this->client->getResponse()->getContent(), true);
1075
1076 $this->assertEmpty($content);
1077 }
1078
1079 public function testDeleteEntriesTagsListAction()
1080 {
1081 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
1082 $entry = new Entry($em->getReference(User::class, 1));
1083 $entry->setUrl('http://0.0.0.0/test-entry');
1084 $entry->addTag((new Tag())->setLabel('foo-tag'));
1085 $entry->addTag((new Tag())->setLabel('bar-tag'));
1086 $em->persist($entry);
1087 $em->flush();
1088
1089 $em->clear();
1090
1091 $list = [
1092 [
1093 'url' => 'http://0.0.0.0/test-entry',
1094 'tags' => 'foo-tag, bar-tag',
1095 ],
1096 ];
1097
1098 $this->client->request('DELETE', '/api/entries/tags/list?list=' . json_encode($list));
1099 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1100
1101 $entry = $em->getRepository('WallabagCoreBundle:Entry')->find($entry->getId());
1102 $this->assertCount(0, $entry->getTags());
1103 }
1104
1105 public function testDeleteEntriesTagsListActionNoList()
1106 {
1107 $this->client->request('DELETE', '/api/entries/tags/list?list=' . json_encode([]));
1108
1109 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1110
1111 $content = json_decode($this->client->getResponse()->getContent(), true);
1112
1113 $this->assertEmpty($content);
1114 }
1115
1116 public function testPostEntriesListAction()
1117 {
1118 $list = [
1119 'http://www.lemonde.fr/musiques/article/2017/04/23/loin-de-la-politique-le-printemps-de-bourges-retombe-en-enfance_5115862_1654986.html',
1120 'http://0.0.0.0/entry2',
1121 ];
1122
1123 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode($list));
1124
1125 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1126
1127 $content = json_decode($this->client->getResponse()->getContent(), true);
1128
1129 $this->assertInternalType('int', $content[0]['entry']);
1130 $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']);
1131
1132 $this->assertInternalType('int', $content[1]['entry']);
1133 $this->assertSame('http://0.0.0.0/entry2', $content[1]['url']);
1134 }
1135
1136 public function testPostEntriesListActionWithNoUrls()
1137 {
1138 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode([]));
1139
1140 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1141
1142 $content = json_decode($this->client->getResponse()->getContent(), true);
1143
1144 $this->assertEmpty($content);
1145 }
1146
1147 public function testDeleteEntriesListAction()
1148 {
1149 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
1150 $em->persist((new Entry($em->getReference(User::class, 1)))->setUrl('http://0.0.0.0/test-entry1'));
1151
1152 $em->flush();
1153 $em->clear();
1154 $list = [
1155 'http://0.0.0.0/test-entry1',
1156 'http://0.0.0.0/test-entry-not-exist',
1157 ];
1158
1159 $this->client->request('DELETE', '/api/entries/list?urls=' . json_encode($list));
1160
1161 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1162
1163 $content = json_decode($this->client->getResponse()->getContent(), true);
1164
1165 $this->assertTrue($content[0]['entry']);
1166 $this->assertSame('http://0.0.0.0/test-entry1', $content[0]['url']);
1167
1168 $this->assertFalse($content[1]['entry']);
1169 $this->assertSame('http://0.0.0.0/test-entry-not-exist', $content[1]['url']);
1170 }
1171
1172 public function testDeleteEntriesListActionWithNoUrls()
1173 {
1174 $this->client->request('DELETE', '/api/entries/list?urls=' . json_encode([]));
1175
1176 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1177
1178 $content = json_decode($this->client->getResponse()->getContent(), true);
1179
1180 $this->assertEmpty($content);
1181 }
1182
1183 public function testLimitBulkAction()
1184 {
1185 $list = [
1186 'http://0.0.0.0/entry1',
1187 'http://0.0.0.0/entry1',
1188 'http://0.0.0.0/entry1',
1189 'http://0.0.0.0/entry1',
1190 'http://0.0.0.0/entry1',
1191 'http://0.0.0.0/entry1',
1192 'http://0.0.0.0/entry1',
1193 'http://0.0.0.0/entry1',
1194 'http://0.0.0.0/entry1',
1195 'http://0.0.0.0/entry1',
1196 'http://0.0.0.0/entry1',
1197 ];
1198
1199 $this->client->request('POST', '/api/entries/lists?urls=' . json_encode($list));
1200
1201 $this->assertSame(400, $this->client->getResponse()->getStatusCode());
1202 $this->assertContains('API limit reached', $this->client->getResponse()->getContent());
1203 }
1204
1205 public function testRePostEntryAndReUsePublishedAt()
1206 {
1207 $em = $this->client->getContainer()->get('doctrine.orm.entity_manager');
1208 $entry = new Entry($em->getReference(User::class, 1));
1209 $entry->setTitle('Antoine de Caunes : « Je veux avoir le droit de tâtonner »');
1210 $entry->setContent('hihi');
1211 $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');
1212 $entry->setPublishedAt(new \DateTime('2017-06-26T07:46:02+0200'));
1213 $em->persist($entry);
1214 $em->flush();
1215 $em->clear();
1216
1217 $this->client->request('POST', '/api/entries.json', [
1218 'url' => 'http://www.lemonde.fr/m-perso/article/2017/06/25/antoine-de-caunes-je-veux-avoir-le-droit-de-tatonner_5150728_4497916.html',
1219 ]);
1220
1221 $this->assertSame(200, $this->client->getResponse()->getStatusCode());
1222
1223 $content = json_decode($this->client->getResponse()->getContent(), true);
1224
1225 $this->assertGreaterThan(0, $content['id']);
1226 $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']);
1227 }
1228 }