summaryrefslogtreecommitdiff
path: root/tests/units/TaskHistoryTest.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-12 21:38:56 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-12 21:38:56 -0400
commit074056352de98fc567b4d13184c72887c75625d0 (patch)
tree7d262c3a5d5f779648f51aa0eb7d9f279c05d89d /tests/units/TaskHistoryTest.php
parent4061927d215c846ff8eb196301bf61532018042b (diff)
Project activity refactoring and listeners improvements
Diffstat (limited to 'tests/units/TaskHistoryTest.php')
-rw-r--r--tests/units/TaskHistoryTest.php98
1 files changed, 0 insertions, 98 deletions
diff --git a/tests/units/TaskHistoryTest.php b/tests/units/TaskHistoryTest.php
deleted file mode 100644
index 085162ea..00000000
--- a/tests/units/TaskHistoryTest.php
+++ /dev/null
@@ -1,98 +0,0 @@
-<?php
-
-require_once __DIR__.'/Base.php';
-
-use Model\Task;
-use Model\TaskHistory;
-use Model\Project;
-
-class TaskHistoryTest extends Base
-{
- public function testCreation()
- {
- $e = new TaskHistory($this->registry);
- $t = new Task($this->registry);
- $p = new Project($this->registry);
-
- $this->assertEquals(1, $p->create(array('name' => 'Project #1')));
- $this->assertEquals(1, $t->create(array('title' => 'Task #1', 'project_id' => 1)));
- $this->assertEquals(2, $t->create(array('title' => 'Task #2', 'project_id' => 1)));
-
- $this->assertTrue($e->create(1, 1, 1, Task::EVENT_CLOSE));
- $this->assertTrue($e->create(1, 2, 1, Task::EVENT_UPDATE));
- $this->assertFalse($e->create(1, 1, 0, Task::EVENT_OPEN));
-
- $events = $e->getAllByProjectId(1);
-
- $this->assertNotEmpty($events);
- $this->assertTrue(is_array($events));
- $this->assertEquals(2, count($events));
- $this->assertEquals(time(), $events[0]['date_creation']);
- $this->assertEquals(Task::EVENT_UPDATE, $events[0]['event_name']);
- $this->assertEquals(Task::EVENT_CLOSE, $events[1]['event_name']);
- }
-
- public function testFetchAllContent()
- {
- $e = new TaskHistory($this->registry);
- $t = new Task($this->registry);
- $p = new Project($this->registry);
-
- $this->assertEquals(1, $p->create(array('name' => 'Project #1')));
- $this->assertEquals(1, $t->create(array('title' => 'Task #1', 'project_id' => 1)));
-
- $nb_events = 80;
-
- for ($i = 0; $i < $nb_events; $i++) {
- $this->assertTrue($e->create(1, 1, 1, Task::EVENT_UPDATE));
- }
-
- $events = $e->getAllContentByProjectId(1);
-
- $this->assertNotEmpty($events);
- $this->assertTrue(is_array($events));
- $this->assertEquals(50, count($events));
- $this->assertEquals('admin', $events[0]['author']);
- $this->assertNotEmpty($events[0]['event_title']);
- $this->assertNotEmpty($events[0]['event_content']);
- }
-
- public function testCleanup()
- {
- $e = new TaskHistory($this->registry);
- $t = new Task($this->registry);
- $p = new Project($this->registry);
-
- $this->assertEquals(1, $p->create(array('name' => 'Project #1')));
- $this->assertEquals(1, $t->create(array('title' => 'Task #1', 'project_id' => 1)));
-
- $max = 15;
- $nb_events = 100;
-
- for ($i = 0; $i < $nb_events; $i++) {
- $this->assertTrue($e->create(1, 1, 1, Task::EVENT_CLOSE));
- }
-
- $this->assertEquals($nb_events, $this->registry->shared('db')->table('task_has_events')->count());
- $e->cleanup($max);
-
- $events = $e->getAllByProjectId(1);
-
- $this->assertNotEmpty($events);
- $this->assertTrue(is_array($events));
- $this->assertEquals($max, count($events));
- $this->assertEquals(100, $events[0]['id']);
- $this->assertEquals(99, $events[1]['id']);
- $this->assertEquals(86, $events[14]['id']);
-
- // Cleanup during task creation
-
- $nb_events = TaskHistory::MAX_EVENTS + 10;
-
- for ($i = 0; $i < $nb_events; $i++) {
- $this->assertTrue($e->create(1, 1, 1, Task::EVENT_CLOSE));
- }
-
- $this->assertEquals(TaskHistory::MAX_EVENTS, $this->registry->shared('db')->table('task_has_events')->count());
- }
-}