summaryrefslogtreecommitdiff
path: root/tests/integration/CommentProcedureTest.php
blob: 881d938c69d21106ca02da0e9ee417c6b34974cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

require_once __DIR__.'/BaseProcedureTest.php';

class CommentProcedureTest extends BaseProcedureTest
{
    protected $projectName = 'My project to test comments';
    private $commentId = 0;

    public function testAll()
    {
        $this->assertCreateTeamProject();
        $this->assertCreateTask();
        $this->assertCreateComment();
        $this->assertUpdateComment();
        $this->assertGetAllComments();
        $this->assertRemoveComment();
    }

    public function assertCreateComment()
    {
        $this->commentId = $this->app->execute('createComment', array(
            'task_id' => $this->taskId,
            'user_id' => 1,
            'content' => 'foobar',
        ));

        $this->assertNotFalse($this->commentId);
    }

    public function assertGetComment()
    {
        $comment = $this->app->getComment($this->commentId);
        $this->assertNotFalse($comment);
        $this->assertNotEmpty($comment);
        $this->assertEquals(1, $comment['user_id']);
        $this->assertEquals('foobar', $comment['comment']);
    }

    public function assertUpdateComment()
    {
        $this->assertTrue($this->app->execute('updateComment', array(
            'id' => $this->commentId,
            'content' => 'test',
        )));

        $comment = $this->app->getComment($this->commentId);
        $this->assertEquals('test', $comment['comment']);
    }

    public function assertGetAllComments()
    {
        $comments = $this->app->getAllComments($this->taskId);
        $this->assertCount(1, $comments);
        $this->assertEquals('test', $comments[0]['comment']);
    }

    public function assertRemoveComment()
    {
        $this->assertTrue($this->app->removeComment($this->commentId));
        $this->assertFalse($this->app->removeComment($this->commentId));
    }
}