summaryrefslogtreecommitdiffstats
path: root/api4/webhook_test.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2017-03-23 12:02:42 +0100
committerGeorge Goldberg <george@gberg.me>2017-03-23 11:02:42 +0000
commit78e5b803cc0817e1b5d58ca27a7ad8ad22616602 (patch)
tree4c0eeb601dc590901801936c3727b14c0bfb547e /api4/webhook_test.go
parent0326177253bd3b4a2933e084a8759473998b60c0 (diff)
downloadchat-78e5b803cc0817e1b5d58ca27a7ad8ad22616602.tar.gz
chat-78e5b803cc0817e1b5d58ca27a7ad8ad22616602.tar.bz2
chat-78e5b803cc0817e1b5d58ca27a7ad8ad22616602.zip
add implementation to get outgoing webhook for apiv4 (#5827)
Diffstat (limited to 'api4/webhook_test.go')
-rw-r--r--api4/webhook_test.go39
1 files changed, 39 insertions, 0 deletions
diff --git a/api4/webhook_test.go b/api4/webhook_test.go
index 20ff859ac..80b03c5aa 100644
--- a/api4/webhook_test.go
+++ b/api4/webhook_test.go
@@ -419,6 +419,45 @@ func TestGetOutgoingWebhooks(t *testing.T) {
CheckUnauthorizedStatus(t, resp)
}
+func TestGetOutgoingWebhook(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)
+
+ getHook, resp := th.SystemAdminClient.GetOutgoingWebhook(rhook.Id)
+ CheckNoError(t, resp)
+ if getHook.Id != rhook.Id {
+ t.Fatal("failed to retrieve the correct outgoing hook")
+ }
+
+ _, resp = Client.GetOutgoingWebhook(rhook.Id)
+ CheckForbiddenStatus(t, resp)
+
+ nonExistentHook := &model.OutgoingWebhook{ChannelId: th.BasicChannel.Id}
+ _, resp = th.SystemAdminClient.GetOutgoingWebhook(nonExistentHook.Id)
+ CheckNotFoundStatus(t, resp)
+
+ nonExistentHook.Id = model.NewId()
+ _, resp = th.SystemAdminClient.GetOutgoingWebhook(nonExistentHook.Id)
+ CheckInternalErrorStatus(t, resp)
+}
+
func TestUpdateIncomingHook(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
defer TearDown()