-
Notifications
You must be signed in to change notification settings - Fork 42
/
bitbucket_hook_test.go
121 lines (107 loc) · 2.38 KB
/
bitbucket_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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package git
import (
"bytes"
"net/http"
"net/http/httptest"
"testing"
"time"
)
func TestBitbucketDeployPush(t *testing.T) {
repo := &Repo{Branch: "master", Hook: HookConfig{URL: "/bitbucket_deploy"}}
bbHook := BitbucketHook{}
remoteIP := "18.246.31.128"
atlassianIPsMu.Lock()
atlassianIPs = atlassianIPResponse{
Items: []atlassianIPRange{
{
Network: remoteIP,
MaskLen: 25,
CIDR: remoteIP + "/25",
Mask: "255.255.255.128",
},
{
Network: "2600:1f18:2146:e306:939f:d1b3:aa36:ac42",
MaskLen: 56,
CIDR: "2600:1f18:2146:e300::/56",
Mask: "ffff:ffff:ffff:ff00::",
},
},
lastUpdated: time.Now(),
}
atlassianIPsMu.Unlock()
for i, test := range []struct {
ip string
body string
event string
responseBody string
code int
}{
{remoteIP, "", "", "", 400},
{"131.103.20.160", "", "", "", 403},
{remoteIP, "", "repo:push", "", 400},
{remoteIP, pushBBBodyValid, "repo:push", "", 200},
{"2600:1f18:2146:e306:939f:d1b3:aa36:ac42", pushBBBodyValid, "repo:push", "", 200}, // test IPv6
{remoteIP, pushBBBodyValid, "repo:push", "", 200},
{remoteIP, pushBBBodyEmptyBranch, "repo:push", "", 400},
{remoteIP, pushBBBodyDeleteBranch, "repo:push", "", 400},
} {
req, err := http.NewRequest("POST", "/bitbucket_deploy", bytes.NewBuffer([]byte(test.body)))
if err != nil {
t.Fatalf("Test %v: Could not create HTTP request: %v", i, err)
}
req.RemoteAddr = test.ip
if test.event != "" {
req.Header.Add("X-Event-Key", test.event)
}
rec := httptest.NewRecorder()
code, err := bbHook.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 pushBBBodyEmptyBranch = `
{
"push": {
"changes": [
{
"new": {
"type": "branch",
"name": "",
"target": {
"hash": "709d658dc5b6d6afcd46049c2f332ee3f515a67d"
}
}
}
]
}
}
`
var pushBBBodyValid = `
{
"push": {
"changes": [
{
"new": {
"type": "branch",
"name": "master",
"target": {
"hash": "709d658dc5b6d6afcd46049c2f332ee3f515a67d"
}
}
}
]
}
}
`
var pushBBBodyDeleteBranch = `
{
"push": {
"changes": [
]
}
}
`