summaryrefslogtreecommitdiffstats
path: root/api4/webhook_test.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-20 13:56:23 +0100
committerGeorge Goldberg <george@gberg.me>2017-03-20 12:56:23 +0000
commit3d14573b8c4df6f293fdac9933aa270b541234ec (patch)
tree306853083ead0bbdc1419c46dcd9e83bfab2c9bf /api4/webhook_test.go
parent4efefa0ff6a49491ea33ca7fd5c9efd2422b0fe1 (diff)
downloadchat-3d14573b8c4df6f293fdac9933aa270b541234ec.tar.gz
chat-3d14573b8c4df6f293fdac9933aa270b541234ec.tar.bz2
chat-3d14573b8c4df6f293fdac9933aa270b541234ec.zip
[APIV4] POST /hooks/outgoing/{hook_id}/regen_token - regentoken endpoint for apiV4 (#5783)
Diffstat (limited to 'api4/webhook_test.go')
-rw-r--r--api4/webhook_test.go41
1 files changed, 41 insertions, 0 deletions
diff --git a/api4/webhook_test.go b/api4/webhook_test.go
index b488f432c..aa1f79cdd 100644
--- a/api4/webhook_test.go
+++ b/api4/webhook_test.go
@@ -584,3 +584,44 @@ func TestUpdateIncomingHook(t *testing.T) {
CheckUnauthorizedStatus(t, resp)
})
}
+
+func TestRegenOutgoingHookToken(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+ Client := th.Client
+
+ enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
+ enableAdminOnlyHooks := utils.Cfg.ServiceSettings.EnableOnlyAdminIntegrations
+ defer func() {
+ utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
+ utils.Cfg.ServiceSettings.EnableOnlyAdminIntegrations = enableAdminOnlyHooks
+ utils.SetDefaultRolesBasedOnConfig()
+ }()
+ utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
+ *utils.Cfg.ServiceSettings.EnableOnlyAdminIntegrations = true
+ utils.SetDefaultRolesBasedOnConfig()
+
+ hook := &model.OutgoingWebhook{ChannelId: th.BasicChannel.Id, TeamId: th.BasicChannel.TeamId, CallbackURLs: []string{"http://nowhere.com"}}
+ rhook, resp := th.SystemAdminClient.CreateOutgoingWebhook(hook)
+ CheckNoError(t, resp)
+
+ _, resp = th.SystemAdminClient.RegenOutgoingHookToken("junk")
+ CheckBadRequestStatus(t, resp)
+
+ //investigate why is act weird on jenkins
+ // _, resp = th.SystemAdminClient.RegenOutgoingHookToken("")
+ // CheckNotFoundStatus(t, resp)
+
+ regenHookToken, resp := th.SystemAdminClient.RegenOutgoingHookToken(rhook.Id)
+ CheckNoError(t, resp)
+ if regenHookToken.Token == rhook.Token {
+ t.Fatal("regen didn't work properly")
+ }
+
+ _, resp = Client.RegenOutgoingHookToken(rhook.Id)
+ CheckForbiddenStatus(t, resp)
+
+ utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = false
+ _, resp = th.SystemAdminClient.RegenOutgoingHookToken(rhook.Id)
+ CheckNotImplementedStatus(t, resp)
+}