]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php
c264180c2cdb437771be30aa8fc8c679ca198341
[github/wallabag/wallabag.git] / src / Wallabag / ApiBundle / Tests / Controller / WallabagRestControllerTest.php
1 <?php
2
3 namespace Wallabag\ApiBundle\Tests\Controller;
4
5 use Wallabag\ApiBundle\Tests\WallabagApiTestCase;
6
7 class WallabagRestControllerTest extends WallabagApiTestCase
8 {
9 protected static $salt;
10
11 public function testGetOneEntry()
12 {
13 $entry = $this->client->getContainer()
14 ->get('doctrine.orm.entity_manager')
15 ->getRepository('WallabagCoreBundle:Entry')
16 ->findOneBy(array('user' => 1, 'isArchived' => false));
17
18 if (!$entry) {
19 $this->markTestSkipped('No content found in db.');
20 }
21
22 $this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
23 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
24
25 $content = json_decode($this->client->getResponse()->getContent(), true);
26
27 $this->assertEquals($entry->getTitle(), $content['title']);
28 $this->assertEquals($entry->getUrl(), $content['url']);
29 $this->assertCount(count($entry->getTags()), $content['tags']);
30 $this->assertEquals($entry->getUserName(), $content['user_name']);
31 $this->assertEquals($entry->getUserEmail(), $content['user_email']);
32 $this->assertEquals($entry->getUserId(), $content['user_id']);
33
34 $this->assertTrue(
35 $this->client->getResponse()->headers->contains(
36 'Content-Type',
37 'application/json'
38 )
39 );
40 }
41
42 public function testGetOneEntryWrongUser()
43 {
44 $entry = $this->client->getContainer()
45 ->get('doctrine.orm.entity_manager')
46 ->getRepository('WallabagCoreBundle:Entry')
47 ->findOneBy(array('user' => 2, 'isArchived' => false));
48
49 if (!$entry) {
50 $this->markTestSkipped('No content found in db.');
51 }
52
53 $this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
54
55 $this->assertEquals(403, $this->client->getResponse()->getStatusCode());
56 }
57
58 public function testGetEntries()
59 {
60 $this->client->request('GET', '/api/entries');
61
62 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
63
64 $content = json_decode($this->client->getResponse()->getContent(), true);
65
66 $this->assertGreaterThanOrEqual(1, count($content));
67 $this->assertNotEmpty($content['_embedded']['items']);
68 $this->assertGreaterThanOrEqual(1, $content['total']);
69 $this->assertEquals(1, $content['page']);
70 $this->assertGreaterThanOrEqual(1, $content['pages']);
71
72 $this->assertTrue(
73 $this->client->getResponse()->headers->contains(
74 'Content-Type',
75 'application/json'
76 )
77 );
78 }
79
80 public function testGetStarredEntries()
81 {
82 $this->client->request('GET', '/api/entries', array('star' => 1, 'sort' => 'updated'));
83
84 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
85
86 $content = json_decode($this->client->getResponse()->getContent(), true);
87
88 $this->assertGreaterThanOrEqual(1, count($content));
89 $this->assertNotEmpty($content['_embedded']['items']);
90 $this->assertGreaterThanOrEqual(1, $content['total']);
91 $this->assertEquals(1, $content['page']);
92 $this->assertGreaterThanOrEqual(1, $content['pages']);
93
94 $this->assertTrue(
95 $this->client->getResponse()->headers->contains(
96 'Content-Type',
97 'application/json'
98 )
99 );
100 }
101
102 public function testGetArchiveEntries()
103 {
104 $this->client->request('GET', '/api/entries', array('archive' => 1));
105
106 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
107
108 $content = json_decode($this->client->getResponse()->getContent(), true);
109
110 $this->assertGreaterThanOrEqual(1, count($content));
111 $this->assertNotEmpty($content['_embedded']['items']);
112 $this->assertGreaterThanOrEqual(1, $content['total']);
113 $this->assertEquals(1, $content['page']);
114 $this->assertGreaterThanOrEqual(1, $content['pages']);
115
116 $this->assertTrue(
117 $this->client->getResponse()->headers->contains(
118 'Content-Type',
119 'application/json'
120 )
121 );
122 }
123
124 public function testDeleteEntry()
125 {
126 $entry = $this->client->getContainer()
127 ->get('doctrine.orm.entity_manager')
128 ->getRepository('WallabagCoreBundle:Entry')
129 ->findOneByUser(1);
130
131 if (!$entry) {
132 $this->markTestSkipped('No content found in db.');
133 }
134
135 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
136
137 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
138
139 $content = json_decode($this->client->getResponse()->getContent(), true);
140
141 $this->assertEquals($entry->getTitle(), $content['title']);
142 $this->assertEquals($entry->getUrl(), $content['url']);
143
144 // We'll try to delete this entry again
145 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
146
147 $this->assertEquals(404, $this->client->getResponse()->getStatusCode());
148 }
149
150 public function testPostEntry()
151 {
152 $this->client->request('POST', '/api/entries.json', array(
153 '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',
154 'tags' => 'google',
155 ));
156
157 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
158
159 $content = json_decode($this->client->getResponse()->getContent(), true);
160
161 $this->assertGreaterThan(0, $content['id']);
162 $this->assertEquals('http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html', $content['url']);
163 $this->assertEquals(false, $content['is_archived']);
164 $this->assertEquals(false, $content['is_starred']);
165 $this->assertEquals(1, $content['user_id']);
166 $this->assertCount(1, $content['tags']);
167 }
168
169 public function testPostArchivedAndStarredEntry()
170 {
171 $this->client->request('POST', '/api/entries.json', array(
172 'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
173 'archive' => true,
174 'starred' => true,
175 ));
176
177 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
178
179 $content = json_decode($this->client->getResponse()->getContent(), true);
180
181 $this->assertGreaterThan(0, $content['id']);
182 $this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
183 $this->assertEquals(true, $content['is_archived']);
184 $this->assertEquals(true, $content['is_starred']);
185 $this->assertEquals(1, $content['user_id']);
186 }
187
188 public function testPatchEntry()
189 {
190 $entry = $this->client->getContainer()
191 ->get('doctrine.orm.entity_manager')
192 ->getRepository('WallabagCoreBundle:Entry')
193 ->findOneByUser(1);
194
195 if (!$entry) {
196 $this->markTestSkipped('No content found in db.');
197 }
198
199 // hydrate the tags relations
200 $nbTags = count($entry->getTags());
201
202 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', array(
203 'title' => 'New awesome title',
204 'tags' => 'new tag '.uniqid(),
205 'star' => true,
206 'archive' => false,
207 ));
208
209 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
210
211 $content = json_decode($this->client->getResponse()->getContent(), true);
212
213 $this->assertEquals($entry->getId(), $content['id']);
214 $this->assertEquals($entry->getUrl(), $content['url']);
215 $this->assertEquals('New awesome title', $content['title']);
216 $this->assertGreaterThan($nbTags, count($content['tags']));
217 $this->assertEquals(1, $content['user_id']);
218 }
219
220 public function testGetTagsEntry()
221 {
222 $entry = $this->client->getContainer()
223 ->get('doctrine.orm.entity_manager')
224 ->getRepository('WallabagCoreBundle:Entry')
225 ->findOneWithTags(1);
226
227 $entry = $entry[0];
228
229 if (!$entry) {
230 $this->markTestSkipped('No content found in db.');
231 }
232
233 $tags = array();
234 foreach ($entry->getTags() as $tag) {
235 $tags[] = array('id' => $tag->getId(), 'label' => $tag->getLabel(), 'slug' => $tag->getSlug());
236 }
237
238 $this->client->request('GET', '/api/entries/'.$entry->getId().'/tags');
239
240 $this->assertEquals(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
241 }
242
243 public function testPostTagsOnEntry()
244 {
245 $entry = $this->client->getContainer()
246 ->get('doctrine.orm.entity_manager')
247 ->getRepository('WallabagCoreBundle:Entry')
248 ->findOneByUser(1);
249
250 if (!$entry) {
251 $this->markTestSkipped('No content found in db.');
252 }
253
254 $nbTags = count($entry->getTags());
255
256 $newTags = 'tag1,tag2,tag3';
257
258 $this->client->request('POST', '/api/entries/'.$entry->getId().'/tags', array('tags' => $newTags));
259
260 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
261
262 $content = json_decode($this->client->getResponse()->getContent(), true);
263
264 $this->assertArrayHasKey('tags', $content);
265 $this->assertEquals($nbTags + 3, count($content['tags']));
266
267 $entryDB = $this->client->getContainer()
268 ->get('doctrine.orm.entity_manager')
269 ->getRepository('WallabagCoreBundle:Entry')
270 ->find($entry->getId());
271
272 $tagsInDB = array();
273 foreach ($entryDB->getTags()->toArray() as $tag) {
274 $tagsInDB[$tag->getId()] = $tag->getLabel();
275 }
276
277 foreach (explode(',', $newTags) as $tag) {
278 $this->assertContains($tag, $tagsInDB);
279 }
280 }
281
282 public function testDeleteOneTagEntry()
283 {
284 $entry = $this->client->getContainer()
285 ->get('doctrine.orm.entity_manager')
286 ->getRepository('WallabagCoreBundle:Entry')
287 ->findOneWithTags(1);
288 $entry = $entry[0];
289
290 if (!$entry) {
291 $this->markTestSkipped('No content found in db.');
292 }
293
294 // hydrate the tags relations
295 $nbTags = count($entry->getTags());
296 $tag = $entry->getTags()[0];
297
298 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'/tags/'.$tag->getId().'.json');
299
300 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
301
302 $content = json_decode($this->client->getResponse()->getContent(), true);
303
304 $this->assertArrayHasKey('tags', $content);
305 $this->assertEquals($nbTags - 1, count($content['tags']));
306 }
307
308 public function testGetUserTags()
309 {
310 $this->client->request('GET', '/api/tags.json');
311
312 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
313
314 $content = json_decode($this->client->getResponse()->getContent(), true);
315
316 $this->assertGreaterThan(0, $content);
317 $this->assertArrayHasKey('id', $content[0]);
318 $this->assertArrayHasKey('label', $content[0]);
319
320 return end($content);
321 }
322
323 /**
324 * @depends testGetUserTags
325 */
326 public function testDeleteUserTag($tag)
327 {
328 $this->client->request('DELETE', '/api/tags/'.$tag['id'].'.json');
329
330 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
331
332 $content = json_decode($this->client->getResponse()->getContent(), true);
333
334 $this->assertArrayHasKey('label', $content);
335 $this->assertEquals($tag['label'], $content['label']);
336 $this->assertEquals($tag['slug'], $content['slug']);
337
338 $entries = $entry = $this->client->getContainer()
339 ->get('doctrine.orm.entity_manager')
340 ->getRepository('WallabagCoreBundle:Entry')
341 ->findAllByTagId($this->user->getId(), $tag['id']);
342
343 $this->assertCount(0, $entries);
344 }
345
346 public function testGetVersion()
347 {
348 $this->client->request('GET', '/api/version');
349
350 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
351
352 $content = json_decode($this->client->getResponse()->getContent(), true);
353
354 $this->assertEquals($this->client->getContainer()->getParameter('wallabag_core.version'), $content);
355 }
356 }