diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-22 17:39:37 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-22 17:39:37 -0400 |
commit | cd9bc86fbeea01fa492606b9c19ded36bf0ab366 (patch) | |
tree | cd7a9a5bca2e661107cdec11a2678fd68f8c9df4 /tests/units/ActionTaskAssignColorLinkTest.php | |
parent | fd60964c239627d2d55c6eca0888be84a8f6653f (diff) |
Add new automated action to change task color based on the task link
Diffstat (limited to 'tests/units/ActionTaskAssignColorLinkTest.php')
-rw-r--r-- | tests/units/ActionTaskAssignColorLinkTest.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/units/ActionTaskAssignColorLinkTest.php b/tests/units/ActionTaskAssignColorLinkTest.php new file mode 100644 index 00000000..b0cd269e --- /dev/null +++ b/tests/units/ActionTaskAssignColorLinkTest.php @@ -0,0 +1,47 @@ +<?php + +require_once __DIR__.'/Base.php'; + +use Event\TaskLinkEvent; +use Model\Task; +use Model\TaskCreation; +use Model\TaskFinder; +use Model\TaskLink; +use Model\Project; + +class ActionTaskAssignColorLinkTest extends Base +{ + public function testExecute() + { + $action = new Action\TaskAssignColorLink($this->container, 1, TaskLink::EVENT_CREATE_UPDATE); + $action->setParam('link_id', 2); + $action->setParam('color_id', 'green'); + + // We create a task in the first column + $tc = new TaskCreation($this->container); + $tf = new TaskFinder($this->container); + $tl = new TaskLink($this->container); + $p = new Project($this->container); + $this->assertEquals(1, $p->create(array('name' => 'test'))); + $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1))); + + // The color should be yellow + $task = $tf->getById(1); + $this->assertNotEmpty($task); + $this->assertEquals('yellow', $task['color_id']); + + $event = array( + 'project_id' => 1, + 'task_id' => 1, + 'link_id' => 2, + ); + + // Our event should be executed + $this->assertTrue($action->execute(new TaskLinkEvent($event))); + + // The color should be green + $task = $tf->getById(1); + $this->assertNotEmpty($task); + $this->assertEquals('green', $task['color_id']); + } +} |