forked from abiosoft/caddy-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gogs_hook_test.go
61 lines (49 loc) · 1.2 KB
/
gogs_hook_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package git
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
)
func TestGogsDeployPush(t *testing.T) {
repo := &Repo{Branch: "master", Hook: HookConfig{URL: "/gogs_deploy"}}
gsHook := GogsHook{}
for i, test := range []struct {
body string
event string
responseBody string
code int
}{
{"", "", "", 400},
{"", "push", "", 400},
{pushGSBodyOther, "push", "", 200},
{pushGSBodyPartial, "push", "", 400},
{"", "ping", "pong", 200},
} {
req, err := http.NewRequest("POST", "/gogs_deploy", bytes.NewBuffer([]byte(test.body)))
if err != nil {
t.Fatalf("Test %v: Could not create HTTP request: %v", i, err)
}
if test.event != "" {
req.Header.Add("X-Gogs-Event", test.event)
}
rec := httptest.NewRecorder()
code, err := gsHook.Handle(rec, req, repo)
if code != test.code {
t.Errorf("Test %d: Expected response code to be %d but was %d", i, test.code, code)
}
if rec.Body.String() != test.responseBody {
t.Errorf("Test %d: Expected response body to be '%v' but was '%v'", i, test.responseBody, rec.Body.String())
}
}
}
var pushGSBodyPartial = `
{
"ref": ""
}
`
var pushGSBodyOther = `
{
"ref": "refs/heads/some-other-branch"
}
`