summaryrefslogtreecommitdiff
path: root/tests/integration/GroupTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-06-26 10:25:13 -0400
committerFrederic Guillot <fred@kanboard.net>2016-06-26 10:25:13 -0400
commit4a230d331ec220fc32a48525afb308af0d9787fa (patch)
tree514aa3d703155b7f97a2c77147c9fd74cef60f84 /tests/integration/GroupTest.php
parent922e0fb6de06a98774418612e0b0f75af72b6dbb (diff)
Added application and project roles validation for API procedure calls
Diffstat (limited to 'tests/integration/GroupTest.php')
-rw-r--r--tests/integration/GroupTest.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/integration/GroupTest.php b/tests/integration/GroupTest.php
deleted file mode 100644
index ffcd7a71..00000000
--- a/tests/integration/GroupTest.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-
-require_once __DIR__.'/BaseIntegrationTest.php';
-
-class GroupTest extends BaseIntegrationTest
-{
- public function testAll()
- {
- $this->assertCreateGroups();
- $this->assertGetAllGroups();
- $this->assertGetGroup();
- $this->assertUpdateGroup();
- $this->assertRemove();
- }
-
- public function assertGetAllGroups()
- {
- $groups = $this->app->getAllGroups();
- $this->assertNotEmpty($groups);
- $this->assertArrayHasKey('name', $groups[0]);
- $this->assertArrayHasKey('external_id', $groups[0]);
- }
-
- public function assertGetGroup()
- {
- $group = $this->app->getGroup($this->groupId1);
- $this->assertNotEmpty($group);
- $this->assertEquals($this->groupName1, $group['name']);
- $this->assertEquals('', $group['external_id']);
- }
-
- public function assertUpdateGroup()
- {
- $this->assertTrue($this->app->updateGroup(array(
- 'group_id' => $this->groupId2,
- 'name' => 'My Group C',
- 'external_id' => 'something else',
- )));
-
- $group = $this->app->getGroup($this->groupId2);
- $this->assertNotEmpty($group);
- $this->assertEquals('My Group C', $group['name']);
- $this->assertEquals('something else', $group['external_id']);
- }
-
- public function assertRemove()
- {
- $this->assertTrue($this->app->removeGroup($this->groupId1));
- }
-}