summaryrefslogtreecommitdiff
path: root/tests/units/Action/TaskMoveColumnCategoryChangeTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-09-05 23:30:56 -0400
committerFrederic Guillot <fred@kanboard.net>2015-09-05 23:30:56 -0400
commit710f2c7bb046b43ec9878ae795a181101f6d7515 (patch)
treeb62723b6b49c3b6bf2b3ca41a772f552464a9031 /tests/units/Action/TaskMoveColumnCategoryChangeTest.php
parent94b38dd94bd819168163003beec8ef693f9d9839 (diff)
Improve unit tests
Diffstat (limited to 'tests/units/Action/TaskMoveColumnCategoryChangeTest.php')
-rw-r--r--tests/units/Action/TaskMoveColumnCategoryChangeTest.php61
1 files changed, 61 insertions, 0 deletions
diff --git a/tests/units/Action/TaskMoveColumnCategoryChangeTest.php b/tests/units/Action/TaskMoveColumnCategoryChangeTest.php
new file mode 100644
index 00000000..4b7dec68
--- /dev/null
+++ b/tests/units/Action/TaskMoveColumnCategoryChangeTest.php
@@ -0,0 +1,61 @@
+<?php
+
+require_once __DIR__.'/../Base.php';
+
+use Event\GenericEvent;
+use Model\Task;
+use Model\TaskCreation;
+use Model\TaskFinder;
+use Model\Project;
+use Model\Category;
+use Integration\GithubWebhook;
+
+class TaskMoveColumnCategoryChangeTest extends Base
+{
+ public function testExecute()
+ {
+ $action = new Action\TaskMoveColumnCategoryChange($this->container, 1, Task::EVENT_UPDATE);
+ $action->setParam('dest_column_id', 3);
+ $action->setParam('category_id', 1);
+
+ $this->assertEquals(3, $action->getParam('dest_column_id'));
+ $this->assertEquals(1, $action->getParam('category_id'));
+
+ // We create a task in the first column
+ $tc = new TaskCreation($this->container);
+ $tf = new TaskFinder($this->container);
+ $p = new Project($this->container);
+ $c = new Category($this->container);
+
+ $this->assertEquals(1, $p->create(array('name' => 'test')));
+ $this->assertEquals(1, $c->create(array('name' => 'bug', 'project_id' => 1)));
+ $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1, 'column_id' => 1)));
+
+ // No category should be assigned + column_id=1
+ $task = $tf->getById(1);
+ $this->assertNotEmpty($task);
+ $this->assertEmpty($task['category_id']);
+ $this->assertEquals(1, $task['column_id']);
+
+ // We create an event to move the task to the 2nd column
+ $event = array(
+ 'task_id' => 1,
+ 'column_id' => 1,
+ 'project_id' => 1,
+ 'category_id' => 1,
+ );
+
+ // Our event should be executed
+ $this->assertTrue($action->hasCompatibleEvent());
+ $this->assertTrue($action->hasRequiredProject($event));
+ $this->assertTrue($action->hasRequiredParameters($event));
+ $this->assertTrue($action->hasRequiredCondition($event));
+ $this->assertTrue($action->isExecutable($event));
+ $this->assertTrue($action->execute(new GenericEvent($event)));
+
+ // Our task should be moved to the other column
+ $task = $tf->getById(1);
+ $this->assertNotEmpty($task);
+ $this->assertEquals(3, $task['column_id']);
+ }
+}