diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-05-12 15:35:29 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-05-12 15:35:29 -0400 |
commit | 630f4ee780f3a9240ae9296e73f7518f21ae23ae (patch) | |
tree | 602cf050cb8bd7e0a7a2a5f547344d6e0d330c79 /tests | |
parent | daf39ee16aa15572b92f96bd7cc3705305a50b9d (diff) |
TaskAssignColorOnDueDateAction: update task only when necessary
Diffstat (limited to 'tests')
-rw-r--r-- | tests/units/Action/TaskAssignColorOnDueDateTest.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/units/Action/TaskAssignColorOnDueDateTest.php b/tests/units/Action/TaskAssignColorOnDueDateTest.php index 4bb87c06..cf1373d5 100644 --- a/tests/units/Action/TaskAssignColorOnDueDateTest.php +++ b/tests/units/Action/TaskAssignColorOnDueDateTest.php @@ -34,4 +34,26 @@ class TaskAssignColorOnDueDateTest extends Base $this->assertEquals('red', $tasks[0]['color_id']); $this->assertEquals('yellow', $tasks[1]['color_id']); } + + public function testChangeColorOnlyWhenNecessary() + { + $projectModel = new ProjectModel($this->container); + $taskCreationModel = new TaskCreationModel($this->container); + $taskFinderModel = new TaskFinderModel($this->container); + + $this->assertEquals(1, $projectModel->create(array('name' => 'test1'))); + $this->assertEquals(1, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'date_due' => strtotime('-1 day'), 'color_id' => 'red'))); + + $tasks = $taskFinderModel->getAll(1); + $event = new TaskListEvent(array('tasks' => $tasks, 'project_id' => 1)); + + $action = new TaskAssignColorOnDueDate($this->container); + $action->setProjectId(1); + $action->setParam('color_id', 'red'); + + $this->assertFalse($action->execute($event, TaskModel::EVENT_DAILY_CRONJOB)); + + $tasks = $taskFinderModel->getAll(1); + $this->assertEquals('red', $tasks[0]['color_id']); + } } |