]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CommentBundle/Tests/Controller/CommentControllerTest.php
Comment work with annotator v2
[github/wallabag/wallabag.git] / src / Wallabag / CommentBundle / Tests / Controller / CommentControllerTest.php
CommitLineData
f38e03dc
TC
1<?php
2
3namespace Wallabag\CommentBundle\Tests\Controller;
4
5use Wallabag\CommentBundle\Tests\WallabagCommentTestCase;
6
7class CommentControllerTest extends WallabagCommentTestCase
8{
9 public function testGetComments()
10 {
11 $comment = $this->client->getContainer()
12 ->get('doctrine.orm.entity_manager')
13 ->getRepository('WallabagCommentBundle:Comment')
14 ->findOneBy(array('user' => 1));
15
16 if (!$comment) {
17 $this->markTestSkipped('No content found in db.');
18 }
19 $this->logInAs('admin');
20 $crawler = $this->client->request('GET', 'annotations/'.$comment->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($comment->getText(), $content['rows'][0]['text']);
26 }
27
28 public function testSetcomment()
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 comment',
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 $comment = $this->client->getContainer()
48 ->get('doctrine.orm.entity_manager')
49 ->getRepository('WallabagCommentBundle:Comment')
50 ->findLastCommentByPageId($entry->getId(), 1);
51
52 $this->assertEquals('my comment', $comment->getText());
53 }
54
55 public function testEditcomment()
56 {
57 $comment = $this->client->getContainer()
58 ->get('doctrine.orm.entity_manager')
59 ->getRepository('WallabagCommentBundle:Comment')
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 comment',
67 ));
68 $crawler = $this->client->request('PUT', 'annotations/'.$comment->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 comment', $content['text']);
74
75 $commentUpdated = $this->client->getContainer()
76 ->get('doctrine.orm.entity_manager')
77 ->getRepository('WallabagCommentBundle:Comment')
78 ->findCommentById($comment->getId());
79 $this->assertEquals('a modified comment', $commentUpdated->getText());
80 }
81}