summaryrefslogtreecommitdiffstats
path: root/cmd/mattermost/commands/roles_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/mattermost/commands/roles_test.go')
-rw-r--r--cmd/mattermost/commands/roles_test.go38
1 files changed, 38 insertions, 0 deletions
diff --git a/cmd/mattermost/commands/roles_test.go b/cmd/mattermost/commands/roles_test.go
new file mode 100644
index 000000000..4f11ce7ed
--- /dev/null
+++ b/cmd/mattermost/commands/roles_test.go
@@ -0,0 +1,38 @@
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package commands
+
+import (
+ "testing"
+
+ "github.com/mattermost/mattermost-server/api4"
+ "github.com/mattermost/mattermost-server/model"
+)
+
+func TestAssignRole(t *testing.T) {
+ th := api4.Setup().InitBasic()
+ defer th.TearDown()
+
+ CheckCommand(t, "roles", "system_admin", th.BasicUser.Email)
+
+ if result := <-th.App.Srv.Store.User().GetByEmail(th.BasicUser.Email); result.Err != nil {
+ t.Fatal()
+ } else {
+ user := result.Data.(*model.User)
+ if user.Roles != "system_user system_admin" {
+ t.Fatal("Got wrong roles:", user.Roles)
+ }
+ }
+
+ CheckCommand(t, "roles", "member", th.BasicUser.Email)
+
+ if result := <-th.App.Srv.Store.User().GetByEmail(th.BasicUser.Email); result.Err != nil {
+ t.Fatal()
+ } else {
+ user := result.Data.(*model.User)
+ if user.Roles != "system_user" {
+ t.Fatal("Got wrong roles:", user.Roles, user.Id)
+ }
+ }
+}