summaryrefslogtreecommitdiffstats
path: root/app/plugin/jira/webhook_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'app/plugin/jira/webhook_test.go')
-rw-r--r--app/plugin/jira/webhook_test.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/plugin/jira/webhook_test.go b/app/plugin/jira/webhook_test.go
new file mode 100644
index 000000000..25918657e
--- /dev/null
+++ b/app/plugin/jira/webhook_test.go
@@ -0,0 +1,16 @@
+package jira
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestWebhookJIRAURL(t *testing.T) {
+ var w Webhook
+ w.Issue.Self = "http://localhost:8080/rest/api/2/issue/10006"
+ assert.Equal(t, "http://localhost:8080", w.JIRAURL())
+
+ w.Issue.Self = "http://localhost:8080/foo/bar/rest/api/2/issue/10006"
+ assert.Equal(t, "http://localhost:8080/foo/bar", w.JIRAURL())
+}