]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php
bdd36e0c6b3fb20063480f87b17b24ea2ed6afd3
[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 testPatchEntry()
166 {
167 $entry = $this->client->getContainer()
168 ->get('doctrine.orm.entity_manager')
169 ->getRepository('WallabagCoreBundle:Entry')
170 ->findOneByUser(1);
171
172 if (!$entry) {
173 $this->markTestSkipped('No content found in db.');
174 }
175
176 // hydrate the tags relations
177 $nbTags = count($entry->getTags());
178
179 $this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', array(
180 'title' => 'New awesome title',
181 'tags' => 'new tag '.uniqid(),
182 'star' => true,
183 'archive' => false,
184 ));
185
186 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
187
188 $content = json_decode($this->client->getResponse()->getContent(), true);
189
190 $this->assertEquals($entry->getId(), $content['id']);
191 $this->assertEquals($entry->getUrl(), $content['url']);
192 $this->assertEquals('New awesome title', $content['title']);
193 $this->assertGreaterThan($nbTags, count($content['tags']));
194 }
195
196 public function testGetTagsEntry()
197 {
198 $entry = $this->client->getContainer()
199 ->get('doctrine.orm.entity_manager')
200 ->getRepository('WallabagCoreBundle:Entry')
201 ->findOneWithTags(1);
202
203 $entry = $entry[0];
204
205 if (!$entry) {
206 $this->markTestSkipped('No content found in db.');
207 }
208
209 $tags = array();
210 foreach ($entry->getTags() as $tag) {
211 $tags[] = array('id' => $tag->getId(), 'label' => $tag->getLabel());
212 }
213
214 $this->client->request('GET', '/api/entries/'.$entry->getId().'/tags');
215
216 $this->assertEquals(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
217 }
218
219 public function testPostTagsOnEntry()
220 {
221 $entry = $this->client->getContainer()
222 ->get('doctrine.orm.entity_manager')
223 ->getRepository('WallabagCoreBundle:Entry')
224 ->findOneByUser(1);
225
226 if (!$entry) {
227 $this->markTestSkipped('No content found in db.');
228 }
229
230 $nbTags = count($entry->getTags());
231
232 $newTags = 'tag1,tag2,tag3';
233
234 $this->client->request('POST', '/api/entries/'.$entry->getId().'/tags', array('tags' => $newTags));
235
236 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
237
238 $content = json_decode($this->client->getResponse()->getContent(), true);
239
240 $this->assertArrayHasKey('tags', $content);
241 $this->assertEquals($nbTags + 3, count($content['tags']));
242
243 $entryDB = $this->client->getContainer()
244 ->get('doctrine.orm.entity_manager')
245 ->getRepository('WallabagCoreBundle:Entry')
246 ->find($entry->getId());
247
248 $tagsInDB = array();
249 foreach ($entryDB->getTags()->toArray() as $tag) {
250 $tagsInDB[$tag->getId()] = $tag->getLabel();
251 }
252
253 foreach (explode(',', $newTags) as $tag) {
254 $this->assertContains($tag, $tagsInDB);
255 }
256 }
257
258 public function testDeleteOneTagEntry()
259 {
260 $entry = $this->client->getContainer()
261 ->get('doctrine.orm.entity_manager')
262 ->getRepository('WallabagCoreBundle:Entry')
263 ->findOneWithTags(1);
264 $entry = $entry[0];
265
266 if (!$entry) {
267 $this->markTestSkipped('No content found in db.');
268 }
269
270 // hydrate the tags relations
271 $nbTags = count($entry->getTags());
272 $tag = $entry->getTags()[0];
273
274 $this->client->request('DELETE', '/api/entries/'.$entry->getId().'/tags/'.$tag->getId().'.json');
275
276 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
277
278 $content = json_decode($this->client->getResponse()->getContent(), true);
279
280 $this->assertArrayHasKey('tags', $content);
281 $this->assertEquals($nbTags - 1, count($content['tags']));
282 }
283
284 public function testGetUserTags()
285 {
286 $this->client->request('GET', '/api/tags.json');
287
288 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
289
290 $content = json_decode($this->client->getResponse()->getContent(), true);
291
292 $this->assertGreaterThan(0, $content);
293 $this->assertArrayHasKey('id', $content[0]);
294 $this->assertArrayHasKey('label', $content[0]);
295
296 return end($content);
297 }
298
299 /**
300 * @depends testGetUserTags
301 */
302 public function testDeleteUserTag($tag)
303 {
304 $this->client->request('DELETE', '/api/tags/'.$tag['id'].'.json');
305
306 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
307
308 $content = json_decode($this->client->getResponse()->getContent(), true);
309
310 $this->assertArrayHasKey('label', $content);
311 $this->assertEquals($tag['label'], $content['label']);
312 }
313 }