From f32507d423c46e8e9612b5239728e6c617e4cbcb Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 4 Mar 2016 17:57:45 -0500 Subject: Add namespace Export and move classes --- tests/units/Export/TaskExportTest.php | 55 +++++++++++++++++++++++++++++ tests/units/Export/TransitionExportTest.php | 45 +++++++++++++++++++++++ tests/units/Model/TaskExportTest.php | 55 ----------------------------- tests/units/Model/TransitionExportTest.php | 45 ----------------------- 4 files changed, 100 insertions(+), 100 deletions(-) create mode 100644 tests/units/Export/TaskExportTest.php create mode 100644 tests/units/Export/TransitionExportTest.php delete mode 100644 tests/units/Model/TaskExportTest.php delete mode 100644 tests/units/Model/TransitionExportTest.php (limited to 'tests') diff --git a/tests/units/Export/TaskExportTest.php b/tests/units/Export/TaskExportTest.php new file mode 100644 index 00000000..f0637c25 --- /dev/null +++ b/tests/units/Export/TaskExportTest.php @@ -0,0 +1,55 @@ +container); + $p = new Project($this->container); + $c = new Category($this->container); + $e = new TaskExport($this->container); + $s = new Swimlane($this->container); + + $this->assertEquals(1, $p->create(array('name' => 'Export Project'))); + + $this->assertEquals(1, $s->create(array('project_id' => 1, 'name' => 'S1'))); + $this->assertEquals(2, $s->create(array('project_id' => 1, 'name' => 'S2'))); + + $this->assertNotFalse($c->create(array('name' => 'Category #1', 'project_id' => 1))); + $this->assertNotFalse($c->create(array('name' => 'Category #2', 'project_id' => 1))); + $this->assertNotFalse($c->create(array('name' => 'Category #3', 'project_id' => 1))); + + for ($i = 1; $i <= 100; $i++) { + $task = array( + 'title' => 'Task #'.$i, + 'project_id' => 1, + 'column_id' => rand(1, 3), + 'creator_id' => rand(0, 1), + 'owner_id' => rand(0, 1), + 'color_id' => rand(0, 1) === 0 ? 'green' : 'purple', + 'category_id' => rand(0, 3), + 'date_due' => array_rand(array(0, date('Y-m-d'), date('Y-m-d', strtotime('+'.$i.'day')))), + 'score' => rand(0, 21), + 'swimlane_id' => rand(0, 2), + ); + + $this->assertEquals($i, $tc->create($task)); + } + + $rows = $e->export(1, strtotime('-1 day'), strtotime('+1 day')); + + $this->assertEquals($i, count($rows)); + $this->assertEquals('Task Id', $rows[0][0]); + $this->assertEquals(1, $rows[1][0]); + $this->assertEquals('Task #'.($i - 1), $rows[$i - 1][13]); + $this->assertTrue(in_array($rows[$i - 1][4], array('Default swimlane', 'S1', 'S2'))); + } +} diff --git a/tests/units/Export/TransitionExportTest.php b/tests/units/Export/TransitionExportTest.php new file mode 100644 index 00000000..7ff3082e --- /dev/null +++ b/tests/units/Export/TransitionExportTest.php @@ -0,0 +1,45 @@ +container); + $taskCreationModel = new TaskCreation($this->container); + $transitionModel = new Transition($this->container); + $transitionExportModel = new TransitionExport($this->container); + + $this->assertEquals(1, $projectModel->create(array('name' => 'test'))); + $this->assertEquals(1, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test'))); + + $task_event = array( + 'project_id' => 1, + 'task_id' => 1, + 'src_column_id' => 1, + 'dst_column_id' => 2, + 'date_moved' => time() - 3600 + ); + + $this->assertTrue($transitionModel->save(1, $task_event)); + + $export = $transitionExportModel->export(1, date('Y-m-d'), date('Y-m-d')); + $this->assertCount(2, $export); + + $this->assertEquals( + array('Id', 'Task Title', 'Source column', 'Destination column', 'Executer', 'Date', 'Time spent'), + $export[0] + ); + + $this->assertEquals( + array(1, 'test', 'Backlog', 'Ready', 'admin', date('m/d/Y H:i', time()), 1.0), + $export[1] + ); + } +} diff --git a/tests/units/Model/TaskExportTest.php b/tests/units/Model/TaskExportTest.php deleted file mode 100644 index 559d53ef..00000000 --- a/tests/units/Model/TaskExportTest.php +++ /dev/null @@ -1,55 +0,0 @@ -container); - $p = new Project($this->container); - $c = new Category($this->container); - $e = new TaskExport($this->container); - $s = new Swimlane($this->container); - - $this->assertEquals(1, $p->create(array('name' => 'Export Project'))); - - $this->assertEquals(1, $s->create(array('project_id' => 1, 'name' => 'S1'))); - $this->assertEquals(2, $s->create(array('project_id' => 1, 'name' => 'S2'))); - - $this->assertNotFalse($c->create(array('name' => 'Category #1', 'project_id' => 1))); - $this->assertNotFalse($c->create(array('name' => 'Category #2', 'project_id' => 1))); - $this->assertNotFalse($c->create(array('name' => 'Category #3', 'project_id' => 1))); - - for ($i = 1; $i <= 100; $i++) { - $task = array( - 'title' => 'Task #'.$i, - 'project_id' => 1, - 'column_id' => rand(1, 3), - 'creator_id' => rand(0, 1), - 'owner_id' => rand(0, 1), - 'color_id' => rand(0, 1) === 0 ? 'green' : 'purple', - 'category_id' => rand(0, 3), - 'date_due' => array_rand(array(0, date('Y-m-d'), date('Y-m-d', strtotime('+'.$i.'day')))), - 'score' => rand(0, 21), - 'swimlane_id' => rand(0, 2), - ); - - $this->assertEquals($i, $tc->create($task)); - } - - $rows = $e->export(1, strtotime('-1 day'), strtotime('+1 day')); - - $this->assertEquals($i, count($rows)); - $this->assertEquals('Task Id', $rows[0][0]); - $this->assertEquals(1, $rows[1][0]); - $this->assertEquals('Task #'.($i - 1), $rows[$i - 1][13]); - $this->assertTrue(in_array($rows[$i - 1][4], array('Default swimlane', 'S1', 'S2'))); - } -} diff --git a/tests/units/Model/TransitionExportTest.php b/tests/units/Model/TransitionExportTest.php deleted file mode 100644 index 98b4356d..00000000 --- a/tests/units/Model/TransitionExportTest.php +++ /dev/null @@ -1,45 +0,0 @@ -container); - $taskCreationModel = new TaskCreation($this->container); - $transitionModel = new Transition($this->container); - $transitionExportModel = new TransitionExport($this->container); - - $this->assertEquals(1, $projectModel->create(array('name' => 'test'))); - $this->assertEquals(1, $taskCreationModel->create(array('project_id' => 1, 'title' => 'test'))); - - $task_event = array( - 'project_id' => 1, - 'task_id' => 1, - 'src_column_id' => 1, - 'dst_column_id' => 2, - 'date_moved' => time() - 3600 - ); - - $this->assertTrue($transitionModel->save(1, $task_event)); - - $export = $transitionExportModel->export(1, date('Y-m-d'), date('Y-m-d')); - $this->assertCount(2, $export); - - $this->assertEquals( - array('Id', 'Task Title', 'Source column', 'Destination column', 'Executer', 'Date', 'Time spent'), - $export[0] - ); - - $this->assertEquals( - array(1, 'test', 'Backlog', 'Ready', 'admin', date('m/d/Y H:i', time()), 1.0), - $export[1] - ); - } -} -- cgit v1.2.3