summaryrefslogtreecommitdiff
path: root/tests/integration/TaskProcedureTest.php
blob: 54527939e51550e8cd84f9d9ada117dbca10959d (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
<?php

require_once __DIR__.'/BaseProcedureTest.php';

class TaskProcedureTest extends BaseProcedureTest
{
    protected $projectName = 'My project to test tasks';

    public function testAll()
    {
        $this->assertCreateTeamProject();
        $this->assertCreateTask();
        $this->assertUpdateTask();
        $this->assertGetTaskById();
        $this->assertGetTaskByReference();
        $this->assertGetAllTasks();
        $this->assertOpenCloseTask();
    }

    public function assertUpdateTask()
    {
        $this->assertTrue($this->app->updateTask(array('id' => $this->taskId, 'color_id' => 'red')));
    }

    public function assertGetTaskById()
    {
        $task = $this->app->getTask($this->taskId);
        $this->assertNotNull($task);
        $this->assertEquals('red', $task['color_id']);
        $this->assertEquals($this->taskTitle, $task['title']);
        $this->assertArrayHasKey('url', $task);
    }

    public function assertGetTaskByReference()
    {
        $taskId = $this->app->createTask(array('title' => 'task with reference', 'project_id' => $this->projectId, 'reference' => 'test'));
        $this->assertNotFalse($taskId);

        $task = $this->app->getTaskByReference($this->projectId, 'test');
        $this->assertNotNull($task);
        $this->assertEquals($taskId, $task['id']);
    }

    public function assertGetAllTasks()
    {
        $tasks = $this->app->getAllTasks($this->projectId);
        $this->assertInternalType('array', $tasks);
        $this->assertNotEmpty($tasks);
        $this->assertArrayHasKey('url', $tasks[0]);
    }

    public function assertOpenCloseTask()
    {
        $this->assertTrue($this->app->closeTask($this->taskId));
        $this->assertTrue($this->app->openTask($this->taskId));
    }
}