Ejemplo n.º 1
0
 public function testDuplicateToTheSameProject()
 {
     $t = new Task($this->registry);
     $p = new Project($this->registry);
     $c = new Category($this->registry);
     // We create a task and a project
     $this->assertEquals(1, $p->create(array('name' => 'test1')));
     // Some categories
     $this->assertNotFalse($c->create(array('name' => 'Category #1', 'project_id' => 1)));
     $this->assertNotFalse($c->create(array('name' => 'Category #2', 'project_id' => 1)));
     $this->assertTrue($c->exists(1, 1));
     $this->assertTrue($c->exists(2, 1));
     $this->assertEquals(1, $t->create(array('title' => 'test', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1, 'category_id' => 2)));
     $task = $t->getById(1);
     $this->assertNotEmpty($task);
     $this->assertEquals(1, $task['position']);
     // We duplicate our task
     $this->assertEquals(2, $t->duplicateSameProject($task));
     $this->assertTrue($this->registry->event->isEventTriggered(Task::EVENT_CREATE));
     // Check the values of the duplicated task
     $task = $t->getById(2);
     $this->assertNotEmpty($task);
     $this->assertEquals(Task::STATUS_OPEN, $task['is_active']);
     $this->assertEquals(1, $task['project_id']);
     $this->assertEquals(1, $task['owner_id']);
     $this->assertEquals(2, $task['category_id']);
     $this->assertEquals(3, $task['column_id']);
     $this->assertEquals(2, $task['position']);
 }