Example #1
0
 public function testRemove()
 {
     $p = new Project($this->container);
     $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
     $this->assertTrue($p->remove(1));
     $this->assertFalse($p->remove(1234));
 }
Example #2
0
 public function testCloneProjectWithSwimlanesAndTasks()
 {
     $p = new Project($this->container);
     $pd = new ProjectDuplication($this->container);
     $s = new Swimlane($this->container);
     $tc = new TaskCreation($this->container);
     $tf = new TaskFinder($this->container);
     $this->assertEquals(1, $p->create(array('name' => 'P1')));
     // create initial swimlanes
     $this->assertEquals(1, $s->create(array('project_id' => 1, 'name' => 'S1')));
     $this->assertEquals(2, $s->create(array('project_id' => 1, 'name' => 'S2')));
     $this->assertEquals(3, $s->create(array('project_id' => 1, 'name' => 'S3')));
     $default_swimlane1 = $s->getDefault(1);
     $default_swimlane1['default_swimlane'] = 'New Default';
     $this->assertTrue($s->updateDefault($default_swimlane1));
     //create initial tasks
     $this->assertEquals(1, $tc->create(array('title' => 'T1', 'project_id' => 1, 'column_id' => 1, 'owner_id' => 1)));
     $this->assertEquals(2, $tc->create(array('title' => 'T2', 'project_id' => 1, 'column_id' => 2, 'owner_id' => 1)));
     $this->assertEquals(3, $tc->create(array('title' => 'T3', 'project_id' => 1, 'column_id' => 3, 'owner_id' => 1)));
     $this->assertNotFalse($pd->duplicate(1, array('category', 'action', 'swimlane', 'task')));
     $project = $p->getByName('P1 (Clone)');
     $this->assertNotFalse($project);
     $project_id = $project['id'];
     // Check if Swimlanes have been duplicated
     $swimlanes = $s->getAll($project_id);
     $this->assertCount(3, $swimlanes);
     $this->assertEquals(4, $swimlanes[0]['id']);
     $this->assertEquals('S1', $swimlanes[0]['name']);
     $this->assertEquals(5, $swimlanes[1]['id']);
     $this->assertEquals('S2', $swimlanes[1]['name']);
     $this->assertEquals(6, $swimlanes[2]['id']);
     $this->assertEquals('S3', $swimlanes[2]['name']);
     $new_default = $s->getDefault($project_id);
     $this->assertEquals('New Default', $new_default['default_swimlane']);
     // Check if Tasks have been duplicated
     $tasks = $tf->getAll($project_id);
     $this->assertCount(3, $tasks);
     // $this->assertEquals(4, $tasks[0]['id']);
     $this->assertEquals('T1', $tasks[0]['title']);
     // $this->assertEquals(5, $tasks[1]['id']);
     $this->assertEquals('T2', $tasks[1]['title']);
     // $this->assertEquals(6, $tasks[2]['id']);
     $this->assertEquals('T3', $tasks[2]['title']);
     $p->remove($project_id);
     $this->assertFalse($p->exists($project_id));
     $this->assertCount(0, $s->getAll($project_id));
     $this->assertCount(0, $tf->getAll($project_id));
 }
Example #3
0
});
$server->register('getAllProjects', function () use($project) {
    return $project->getAll();
});
$server->register('updateProject', function ($id, $name, $is_active = null, $is_public = null, $token = null) use($project) {
    $values = array('id' => $id, 'name' => $name, 'is_active' => $is_active, 'is_public' => $is_public, 'token' => $token);
    foreach ($values as $key => $value) {
        if (is_null($value)) {
            unset($values[$key]);
        }
    }
    list($valid, ) = $project->validateModification($values);
    return $valid && $project->update($values);
});
$server->register('removeProject', function ($project_id) use($project) {
    return $project->remove($project_id);
});
$server->register('enableProject', function ($project_id) use($project) {
    return $project->enable($project_id);
});
$server->register('disableProject', function ($project_id) use($project) {
    return $project->disable($project_id);
});
$server->register('enableProjectPublicAccess', function ($project_id) use($project) {
    return $project->enablePublicAccess($project_id);
});
$server->register('disableProjectPublicAccess', function ($project_id) use($project) {
    return $project->disablePublicAccess($project_id);
});
/**
 * Board procedures