summaryrefslogtreecommitdiff
path: root/tests/integration/AppTest.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/AppTest.php
parent922e0fb6de06a98774418612e0b0f75af72b6dbb (diff)
Added application and project roles validation for API procedure calls
Diffstat (limited to 'tests/integration/AppTest.php')
-rw-r--r--tests/integration/AppTest.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/tests/integration/AppTest.php b/tests/integration/AppTest.php
deleted file mode 100644
index 287e6299..00000000
--- a/tests/integration/AppTest.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-require_once __DIR__.'/BaseIntegrationTest.php';
-
-class AppTest extends BaseIntegrationTest
-{
- public function testGetTimezone()
- {
- $this->assertEquals('UTC', $this->app->getTimezone());
- }
-
- public function testGetVersion()
- {
- $this->assertEquals('master', $this->app->getVersion());
- }
-
- public function testGetApplicationRoles()
- {
- $roles = $this->app->getApplicationRoles();
- $this->assertCount(3, $roles);
- $this->assertEquals('Administrator', $roles['app-admin']);
- $this->assertEquals('Manager', $roles['app-manager']);
- $this->assertEquals('User', $roles['app-user']);
- }
-
- public function testGetProjectRoles()
- {
- $roles = $this->app->getProjectRoles();
- $this->assertCount(3, $roles);
- $this->assertEquals('Project Manager', $roles['project-manager']);
- $this->assertEquals('Project Member', $roles['project-member']);
- $this->assertEquals('Project Viewer', $roles['project-viewer']);
- }
-
- public function testGetDefaultColor()
- {
- $this->assertEquals('yellow', $this->user->getDefaultTaskColor());
- }
-
- public function testGetDefaultColors()
- {
- $colors = $this->user->getDefaultTaskColors();
- $this->assertNotEmpty($colors);
- $this->assertArrayHasKey('red', $colors);
- }
-
- public function testGetColorList()
- {
- $colors = $this->user->getColorList();
- $this->assertNotEmpty($colors);
- $this->assertArrayHasKey('red', $colors);
- $this->assertEquals('Red', $colors['red']);
- }
-}