summaryrefslogtreecommitdiff
path: root/tests/units/ProjectTest.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-09-09 15:15:04 +0200
committerFrédéric Guillot <fred@kanboard.net>2014-09-09 15:15:04 +0200
commitef95c7c28479a22e41fff35a893f05eb084e1f2c (patch)
tree0ad91fa529ef4fc86be8df106c54ba4ff8053ea1 /tests/units/ProjectTest.php
parent685d1cc44cea32c6dbab95d05c882aa808bcab44 (diff)
Improve project api procedures
Diffstat (limited to 'tests/units/ProjectTest.php')
-rw-r--r--tests/units/ProjectTest.php80
1 files changed, 77 insertions, 3 deletions
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));