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