summaryrefslogtreecommitdiff
path: root/tests/units
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units')
-rw-r--r--tests/units/Base.php1
-rw-r--r--tests/units/ProjectTest.php80
-rw-r--r--tests/units/TaskTest.php12
3 files changed, 90 insertions, 3 deletions
diff --git a/tests/units/Base.php b/tests/units/Base.php
index 7d8a075f..0d721e3d 100644
--- a/tests/units/Base.php
+++ b/tests/units/Base.php
@@ -40,6 +40,7 @@ require_once __DIR__.'/../../app/Model/Board.php';
require_once __DIR__.'/../../app/Model/Action.php';
require_once __DIR__.'/../../app/Model/Category.php';
require_once __DIR__.'/../../app/Model/SubTask.php';
+require_once __DIR__.'/../../app/Model/File.php';
require_once __DIR__.'/../../app/Action/Base.php';
require_once __DIR__.'/../../app/Action/TaskClose.php';
diff --git a/tests/units/ProjectTest.php b/tests/units/ProjectTest.php
index cb7aee36..95894172 100644
--- a/tests/units/ProjectTest.php
+++ b/tests/units/ProjectTest.php
@@ -15,7 +15,81 @@ class ProjectTest extends Base
$p = new Project($this->registry);
$this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
- $this->assertNotEmpty($p->getById(1));
+
+ $project = $p->getById(1);
+ $this->assertNotEmpty($project);
+ $this->assertEquals(1, $project['is_active']);
+ $this->assertEquals(0, $project['is_public']);
+ $this->assertEmpty($project['token']);
+ }
+
+ public function testRemove()
+ {
+ $p = new Project($this->registry);
+
+ $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
+ $this->assertTrue($p->remove(1));
+ $this->assertFalse($p->remove(1234));
+ }
+
+ public function testEnable()
+ {
+ $p = new Project($this->registry);
+
+ $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
+ $this->assertTrue($p->disable(1));
+
+ $project = $p->getById(1);
+ $this->assertNotEmpty($project);
+ $this->assertEquals(0, $project['is_active']);
+
+ $this->assertFalse($p->disable(1111));
+ }
+
+ public function testDisable()
+ {
+ $p = new Project($this->registry);
+
+ $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
+ $this->assertTrue($p->disable(1));
+ $this->assertTrue($p->enable(1));
+
+ $project = $p->getById(1);
+ $this->assertNotEmpty($project);
+ $this->assertEquals(1, $project['is_active']);
+
+ $this->assertFalse($p->enable(1234567));
+ }
+
+ public function testEnablePublicAccess()
+ {
+ $p = new Project($this->registry);
+
+ $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
+ $this->assertTrue($p->enablePublicAccess(1));
+
+ $project = $p->getById(1);
+ $this->assertNotEmpty($project);
+ $this->assertEquals(1, $project['is_public']);
+ $this->assertNotEmpty($project['token']);
+
+ $this->assertFalse($p->enablePublicAccess(123));
+ }
+
+ public function testDisablePublicAccess()
+ {
+ $p = new Project($this->registry);
+
+ $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
+ $this->assertTrue($p->enablePublicAccess(1));
+ $this->assertTrue($p->disablePublicAccess(1));
+
+ $project = $p->getById(1);
+ $this->assertNotEmpty($project);
+ $this->assertEquals(0, $project['is_public']);
+ $this->assertEmpty($project['token']);
+
+ $this->assertFalse($p->disablePublicAccess(123));
}
public function testAllowEverybody()
@@ -66,8 +140,8 @@ class ProjectTest extends Base
// We create a project
$this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
- // We revoke our admin user
- $this->assertTrue($p->revokeUser(1, 1));
+ // We revoke our admin user (not existing row)
+ $this->assertFalse($p->revokeUser(1, 1));
// We should have nobody in the users list
$this->assertEmpty($p->getAllowedUsers(1));
diff --git a/tests/units/TaskTest.php b/tests/units/TaskTest.php
index 3d1a5e49..c9468efd 100644
--- a/tests/units/TaskTest.php
+++ b/tests/units/TaskTest.php
@@ -35,6 +35,18 @@ class TaskTest extends Base
$this->assertEquals(time(), $task['date_modification']);
}
+ public function testRemove()
+ {
+ $t = new Task($this->registry);
+ $p = new Project($this->registry);
+
+ $this->assertEquals(1, $p->create(array('name' => 'UnitTest')));
+ $this->assertEquals(1, $t->create(array('title' => 'Task #1', 'project_id' => 1)));
+
+ $this->assertTrue($t->remove(1));
+ $this->assertFalse($t->remove(1234));
+ }
+
public function testMoveTaskWithBadPreviousPosition()
{
$t = new Task($this->registry);