summaryrefslogtreecommitdiffstats
path: root/api4/command_test.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-24 00:42:32 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-03-23 19:42:32 -0400
commit6935e2d5ea73d34f0f383715fd161059eff74608 (patch)
treeb57173a5616bc06413305ebf553e8c0b11881c3f /api4/command_test.go
parent42c3ea64a9e2e75193d35939bbca34adfbd5ddf9 (diff)
downloadchat-6935e2d5ea73d34f0f383715fd161059eff74608.tar.gz
chat-6935e2d5ea73d34f0f383715fd161059eff74608.tar.bz2
chat-6935e2d5ea73d34f0f383715fd161059eff74608.zip
implement POST /commands for apiv4 (#5849)
Diffstat (limited to 'api4/command_test.go')
-rw-r--r--api4/command_test.go60
1 files changed, 60 insertions, 0 deletions
diff --git a/api4/command_test.go b/api4/command_test.go
new file mode 100644
index 000000000..34396808f
--- /dev/null
+++ b/api4/command_test.go
@@ -0,0 +1,60 @@
+// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api4
+
+import (
+ "testing"
+ // "time"
+
+ "github.com/mattermost/platform/model"
+ "github.com/mattermost/platform/utils"
+)
+
+func TestCreateCommand(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+ Client := th.Client
+
+ enableCommands := *utils.Cfg.ServiceSettings.EnableCommands
+ defer func() {
+ utils.Cfg.ServiceSettings.EnableCommands = &enableCommands
+ }()
+ *utils.Cfg.ServiceSettings.EnableCommands = true
+
+ newCmd := &model.Command{
+ CreatorId: th.BasicUser.Id,
+ TeamId: th.BasicTeam.Id,
+ URL: "http://nowhere.com",
+ Method: model.COMMAND_METHOD_POST,
+ Trigger: "trigger"}
+
+ _, resp := Client.CreateCommand(newCmd)
+ CheckForbiddenStatus(t, resp)
+
+ createdCmd, resp := th.SystemAdminClient.CreateCommand(newCmd)
+ CheckNoError(t, resp)
+ if createdCmd.CreatorId != th.SystemAdminUser.Id {
+ t.Fatal("user ids didn't match")
+ }
+ if createdCmd.TeamId != th.BasicTeam.Id {
+ t.Fatal("team ids didn't match")
+ }
+
+ _, resp = th.SystemAdminClient.CreateCommand(newCmd)
+ CheckBadRequestStatus(t, resp)
+ CheckErrorMessage(t, resp, "api.command.duplicate_trigger.app_error")
+
+ newCmd.Method = "Wrong"
+ newCmd.Trigger = "test"
+ _, resp = th.SystemAdminClient.CreateCommand(newCmd)
+ CheckInternalErrorStatus(t, resp)
+ CheckErrorMessage(t, resp, "model.command.is_valid.method.app_error")
+
+ *utils.Cfg.ServiceSettings.EnableCommands = false
+ newCmd.Method = "P"
+ newCmd.Trigger = "test"
+ _, resp = th.SystemAdminClient.CreateCommand(newCmd)
+ CheckNotImplementedStatus(t, resp)
+ CheckErrorMessage(t, resp, "api.command.disabled.app_error")
+}