summaryrefslogtreecommitdiffstats
path: root/api/authorization_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api/authorization_test.go')
-rw-r--r--api/authorization_test.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/api/authorization_test.go b/api/authorization_test.go
deleted file mode 100644
index 5613751c2..000000000
--- a/api/authorization_test.go
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
-// See License.txt for license information.
-
-package api
-
-import (
- "testing"
-
- "github.com/mattermost/platform/model"
-)
-
-func TestCheckIfRolesGrantPermission(t *testing.T) {
- Setup()
-
- cases := []struct {
- roles []string
- permissionId string
- shouldGrant bool
- }{
- {[]string{model.ROLE_SYSTEM_ADMIN.Id}, model.ROLE_SYSTEM_ADMIN.Permissions[0], true},
- {[]string{model.ROLE_SYSTEM_ADMIN.Id}, "non-existant-permission", false},
- {[]string{model.ROLE_CHANNEL_USER.Id}, model.ROLE_CHANNEL_USER.Permissions[0], true},
- {[]string{model.ROLE_CHANNEL_USER.Id}, model.PERMISSION_MANAGE_SYSTEM.Id, false},
- {[]string{model.ROLE_SYSTEM_ADMIN.Id, model.ROLE_CHANNEL_USER.Id}, model.PERMISSION_MANAGE_SYSTEM.Id, true},
- {[]string{model.ROLE_CHANNEL_USER.Id, model.ROLE_SYSTEM_ADMIN.Id}, model.PERMISSION_MANAGE_SYSTEM.Id, true},
- {[]string{model.ROLE_TEAM_USER.Id, model.ROLE_TEAM_ADMIN.Id}, model.PERMISSION_MANAGE_SLASH_COMMANDS.Id, true},
- {[]string{model.ROLE_TEAM_ADMIN.Id, model.ROLE_TEAM_USER.Id}, model.PERMISSION_MANAGE_SLASH_COMMANDS.Id, true},
- }
-
- for testnum, testcase := range cases {
- if CheckIfRolesGrantPermission(testcase.roles, testcase.permissionId) != testcase.shouldGrant {
- t.Fatal("Failed test case ", testnum)
- }
- }
-
-}