summaryrefslogtreecommitdiff
path: root/tests/units
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-07 19:39:39 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-07 19:39:39 -0500
commit2d890cbc712371f17ba4bbceb02af3c5ba04e6da (patch)
treef16630432aa7fa22ebc3784839ed77c55e96e6a8 /tests/units
parentfa6d19928abcfa03861e264222dbe46ad2fdc15a (diff)
Update task time tracking based on subtask time tracking
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/TimeTrackingTest.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/tests/units/TimeTrackingTest.php b/tests/units/TimeTrackingTest.php
deleted file mode 100644
index 447f1c96..00000000
--- a/tests/units/TimeTrackingTest.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-
-require_once __DIR__.'/Base.php';
-
-use Model\Subtask;
-use Model\TaskModification;
-use Model\TaskCreation;
-use Model\TaskFinder;
-use Model\Project;
-use Model\TimeTracking;
-
-class TimeTrackingTest extends Base
-{
- public function testCalculateTime()
- {
- $tm = new TaskModification($this->container);
- $tc = new TaskCreation($this->container);
- $tf = new TaskFinder($this->container);
- $p = new Project($this->container);
- $s = new Subtask($this->container);
- $ts = new TimeTracking($this->container);
-
- $this->assertEquals(1, $p->create(array('name' => 'Project #1')));
- $this->assertEquals(1, $tc->create(array('title' => 'Task #1', 'project_id' => 1, 'time_estimated' => 4.5)));
- $this->assertTrue($tm->update(array('id' => 1, 'time_spent' => 3.5)));
-
- $task = $tf->getById(1);
- $this->assertNotEmpty($task);
- $this->assertEquals(4.5, $task['time_estimated']);
- $this->assertEquals(3.5, $task['time_spent']);
-
- $timesheet = $ts->getTaskTimesheet($task, array());
- $this->assertNotEmpty($timesheet);
- $this->assertEquals(4.5, $timesheet['time_estimated']);
- $this->assertEquals(3.5, $timesheet['time_spent']);
- $this->assertEquals(1, $timesheet['time_remaining']);
-
- // Subtasks calculation
- $this->assertEquals(1, $s->create(array('title' => 'subtask #1', 'task_id' => 1, 'time_estimated' => 5.5, 'time_spent' => 3)));
- $this->assertEquals(2, $s->create(array('title' => 'subtask #2', 'task_id' => 1, 'time_estimated' => '', 'time_spent' => 4)));
-
- $timesheet = $ts->getTaskTimesheet($task, $s->getAll(1));
- $this->assertNotEmpty($timesheet);
- $this->assertEquals(5.5, $timesheet['time_estimated']);
- $this->assertEquals(7, $timesheet['time_spent']);
- $this->assertEquals(-1.5, $timesheet['time_remaining']);
- }
-}