aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-02-26 13:59:08 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-02-26 18:14:42 +0100
commit4dc872238a61f33c886c423c5812cc578b3b1cdc (patch)
tree4a9413cca2b24e9290057159eeb3833c20aefddb /src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php
parent9eab365e28de969036e58245a57a8a6418541b3c (diff)
downloadwallabag-4dc872238a61f33c886c423c5812cc578b3b1cdc.tar.gz
wallabag-4dc872238a61f33c886c423c5812cc578b3b1cdc.tar.zst
wallabag-4dc872238a61f33c886c423c5812cc578b3b1cdc.zip
Rename CommentBundle with AnnotationBundle
Diffstat (limited to 'src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php')
-rw-r--r--src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php b/src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php
new file mode 100644
index 00000000..c0efe272
--- /dev/null
+++ b/src/Wallabag/AnnotationBundle/Tests/Controller/AnnotationControllerTest.php
@@ -0,0 +1,81 @@
1<?php
2
3namespace Wallabag\AnnotationBundle\Tests\Controller;
4
5use Wallabag\AnnotationBundle\Tests\WallabagAnnotationTestCase;
6
7class AnnotationControllerTest extends WallabagAnnotationTestCase
8{
9 public function testGetAnnotations()
10 {
11 $annotation = $this->client->getContainer()
12 ->get('doctrine.orm.entity_manager')
13 ->getRepository('WallabagAnnotationBundle:Annotation')
14 ->findOneBy(array('user' => 1));
15
16 if (!$annotation) {
17 $this->markTestSkipped('No content found in db.');
18 }
19 $this->logInAs('admin');
20 $crawler = $this->client->request('GET', 'annotations/'.$annotation->getEntry()->getId().'.json');
21 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
22
23 $content = json_decode($this->client->getResponse()->getContent(), true);
24 $this->assertEquals(1, $content['total']);
25 $this->assertEquals($annotation->getText(), $content['rows'][0]['text']);
26 }
27
28 public function testSetAnnotation()
29 {
30 $this->logInAs('admin');
31
32 $entry = $this->client->getContainer()
33 ->get('doctrine.orm.entity_manager')
34 ->getRepository('WallabagCoreBundle:Entry')
35 ->findOneBy(array('user' => 1));
36
37 $headers = array('CONTENT_TYPE' => 'application/json');
38 $content = json_encode(array(
39 'text' => 'my annotation',
40 'quote' => 'my quote',
41 'range' => '[{"start":"","startOffset":24,"end":"","endOffset":31}]',
42 ));
43 $crawler = $this->client->request('POST', 'annotations/'.$entry->getId().'.json', array(), array(), $headers, $content);
44
45 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
46
47 $annotation = $this->client->getContainer()
48 ->get('doctrine.orm.entity_manager')
49 ->getRepository('WallabagAnnotationBundle:Annotation')
50 ->findLastAnnotationByPageId($entry->getId(), 1);
51
52 $this->assertEquals('my annotation', $annotation->getText());
53 }
54
55 public function testEditAnnotation()
56 {
57 $annotation = $this->client->getContainer()
58 ->get('doctrine.orm.entity_manager')
59 ->getRepository('WallabagAnnotationBundle:Annotation')
60 ->findOneBy(array('user' => 1));
61
62 $this->logInAs('admin');
63
64 $headers = array('CONTENT_TYPE' => 'application/json');
65 $content = json_encode(array(
66 'text' => 'a modified annotation',
67 ));
68 $crawler = $this->client->request('PUT', 'annotations/'.$annotation->getId().'.json', array(), array(), $headers, $content);
69 $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
70
71 $content = json_decode($this->client->getResponse()->getContent(), true);
72
73 $this->assertEquals('a modified annotation', $content['text']);
74
75 $annotationUpdated = $this->client->getContainer()
76 ->get('doctrine.orm.entity_manager')
77 ->getRepository('WallabagAnnotationBundle:Annotation')
78 ->findAnnotationById($annotation->getId());
79 $this->assertEquals('a modified annotation', $annotationUpdated->getText());
80 }
81}