diff options
| author | Gerardo Zamudio <gerardozamudio@users.noreply.github.com> | 2016-02-24 23:48:50 -0600 |
|---|---|---|
| committer | Gerardo Zamudio <gerardozamudio@users.noreply.github.com> | 2016-02-24 23:48:50 -0600 |
| commit | e4de6b3898b64b26d29aff31f21df5fda8055686 (patch) | |
| tree | 575f8a65440f291d70a070d168eafca8c82a6459 /tests/units/Analytic/EstimatedTimeComparisonAnalyticTest.php | |
| parent | d9ffbea174ea6524d0a22f8375ca8b3aa04a3c96 (diff) | |
| parent | a6540bc604c837d92c9368540c145606723e97f7 (diff) | |
Merge pull request #1 from fguillot/master
Update from upstream
Diffstat (limited to 'tests/units/Analytic/EstimatedTimeComparisonAnalyticTest.php')
| -rw-r--r-- | tests/units/Analytic/EstimatedTimeComparisonAnalyticTest.php | 99 |
1 files changed, 99 insertions, 0 deletions
diff --git a/tests/units/Analytic/EstimatedTimeComparisonAnalyticTest.php b/tests/units/Analytic/EstimatedTimeComparisonAnalyticTest.php new file mode 100644 index 00000000..2ca631b1 --- /dev/null +++ b/tests/units/Analytic/EstimatedTimeComparisonAnalyticTest.php @@ -0,0 +1,99 @@ +<?php + +require_once __DIR__.'/../Base.php'; + +use Kanboard\Model\TaskCreation; +use Kanboard\Model\Project; +use Kanboard\Analytic\EstimatedTimeComparisonAnalytic; + +class EstimatedTimeComparisonAnalyticTest extends Base +{ + public function testBuild() + { + $taskCreationModel = new TaskCreation($this->container); + $projectModel = new Project($this->container); + $estimatedTimeComparisonAnalytic = new EstimatedTimeComparisonAnalytic($this->container); + + $this->assertEquals(1, $projectModel->create(array('name' => 'test1'))); + $this->assertEquals(2, $projectModel->create(array('name' => 'test1'))); + + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 5.5))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 1.75))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 1.25, 'is_active' => 0))); + + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 8.25))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 0.25))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 0.5, 'is_active' => 0))); + + $expected = array( + 'open' => array( + 'time_spent' => 8.5, + 'time_estimated' => 7.25, + ), + 'closed' => array( + 'time_spent' => 0.5, + 'time_estimated' => 1.25, + ) + ); + + $this->assertEquals($expected, $estimatedTimeComparisonAnalytic->build(1)); + } + + public function testBuildWithNoClosedTask() + { + $taskCreationModel = new TaskCreation($this->container); + $projectModel = new Project($this->container); + $estimatedTimeComparisonAnalytic = new EstimatedTimeComparisonAnalytic($this->container); + + $this->assertEquals(1, $projectModel->create(array('name' => 'test1'))); + $this->assertEquals(2, $projectModel->create(array('name' => 'test1'))); + + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 5.5))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 1.75))); + + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 8.25))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 0.25))); + + $expected = array( + 'open' => array( + 'time_spent' => 8.5, + 'time_estimated' => 7.25, + ), + 'closed' => array( + 'time_spent' => 0, + 'time_estimated' => 0, + ) + ); + + $this->assertEquals($expected, $estimatedTimeComparisonAnalytic->build(1)); + } + + public function testBuildWithOnlyClosedTask() + { + $taskCreationModel = new TaskCreation($this->container); + $projectModel = new Project($this->container); + $estimatedTimeComparisonAnalytic = new EstimatedTimeComparisonAnalytic($this->container); + + $this->assertEquals(1, $projectModel->create(array('name' => 'test1'))); + $this->assertEquals(2, $projectModel->create(array('name' => 'test1'))); + + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 5.5, 'is_active' => 0))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_estimated' => 1.75, 'is_active' => 0))); + + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 8.25, 'is_active' => 0))); + $this->assertNotFalse($taskCreationModel->create(array('project_id' => 1, 'title' => 'test', 'time_spent' => 0.25, 'is_active' => 0))); + + $expected = array( + 'closed' => array( + 'time_spent' => 8.5, + 'time_estimated' => 7.25, + ), + 'open' => array( + 'time_spent' => 0, + 'time_estimated' => 0, + ) + ); + + $this->assertEquals($expected, $estimatedTimeComparisonAnalytic->build(1)); + } +} |
