summaryrefslogtreecommitdiffstats
path: root/api4/command_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/command_test.go')
-rw-r--r--api4/command_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/api4/command_test.go b/api4/command_test.go
index 5f3d77113..0aaca3c0f 100644
--- a/api4/command_test.go
+++ b/api4/command_test.go
@@ -345,3 +345,39 @@ func TestListAutocompleteCommands(t *testing.T) {
}
})
}
+
+func TestRegenToken(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"}
+
+ createdCmd, resp := th.SystemAdminClient.CreateCommand(newCmd)
+ CheckNoError(t, resp)
+ CheckCreatedStatus(t, resp)
+
+ token, resp := th.SystemAdminClient.RegenCommandToken(createdCmd.Id)
+ CheckNoError(t, resp)
+ if token == createdCmd.Token {
+ t.Fatal("should update the token")
+ }
+
+ token, resp = Client.RegenCommandToken(createdCmd.Id)
+ CheckForbiddenStatus(t, resp)
+ if token != "" {
+ t.Fatal("should not return the token")
+ }
+
+}