-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathwebhook_test.go
More file actions
217 lines (198 loc) · 5.77 KB
/
webhook_test.go
File metadata and controls
217 lines (198 loc) · 5.77 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package buildkite
import (
"bytes"
"encoding/json"
"net/http"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestParseWebHook(t *testing.T) {
tests := []struct {
payload interface{}
messageType string
errorMessage string
}{
{
payload: &AgentConnectedEvent{},
messageType: "agent.connected",
},
{
payload: &AgentDisconnectedEvent{},
messageType: "agent.disconnected",
},
{
payload: &AgentLostEvent{},
messageType: "agent.lost",
},
{
payload: &AgentStoppedEvent{},
messageType: "agent.stopped",
},
{
payload: &AgentStoppingEvent{},
messageType: "agent.stopping",
},
{
payload: &BuildFailingEvent{},
messageType: "build.failing",
},
{
payload: &BuildFinishedEvent{},
messageType: "build.finished",
},
{
payload: &BuildRunningEvent{},
messageType: "build.running",
},
{
payload: &BuildScheduledEvent{},
messageType: "build.scheduled",
},
{
payload: &JobActivatedEvent{},
messageType: "job.activated",
},
{
payload: &JobFinishedEvent{},
messageType: "job.finished",
},
{
payload: &JobScheduledEvent{},
messageType: "job.scheduled",
},
{
payload: &JobStartedEvent{},
messageType: "job.started",
},
{
payload: &PingEvent{},
messageType: "ping",
},
{
payload: &PingEvent{},
messageType: "invalid",
errorMessage: "unknown X-Buildkite-Event in message: invalid",
},
}
for _, test := range tests {
p, err := json.Marshal(test.payload)
if err != nil {
t.Fatalf("Marshal(%#v): %v", test.payload, err)
}
got, err := ParseWebHook(test.messageType, p)
if err != nil {
if test.errorMessage != "" {
if err.Error() != test.errorMessage {
t.Errorf("ParseWebHook(%#v, %#v) expected error, got %#v", test.messageType, test.payload, err.Error())
}
continue
}
t.Fatalf("ParseWebHook: %v", err)
}
if diff := cmp.Diff(got, test.payload); diff != "" {
t.Errorf("ParseWebHook(%q, []byte(%q)) returned unexpected output. diff: (-got +want)\n%s", test.messageType, string(p), diff)
}
}
}
func TestValidatePayload(t *testing.T) {
const defaultBody = `{"event":"ping","service":{"id":"c9f8372d-c0cd-43dc-9274-768a875cf6ca","provider":"webhook","settings":{"url":"https://server.com/webhooks"}},"organization":{"id":"49801950-1df0-474f-bb56-ad6a930c5cb9","graphql_id":"T3JnYW5pemF0aW9uLS0tZTBmMzk3MgsTksGkxOWYtZTZjNzczZTJiYjEy","url":"https://api.buildkite.com/v2/organizations/acme-inc","web_url":"https://buildkite.com/acme-inc","name":"ACME Inc","slug":"acme-inc","agents_url":"https://api.buildkite.com/v2/organizations/acme-inc/agents","emojis_url":"https://api.buildkite.com/v2/organizations/acme-inc/emojis","created_at":"2021-02-03T20:34:10.486Z","pipelines_url":"https://api.buildkite.com/v2/organizations/acme-inc/pipelines"},"sender":{"id":"c9f8372d-c0cd-43dc-9269-bcbb7f308e3f","name":"ACME Man"}}`
const defaultSignature = "timestamp=1642080837,signature=582d496ac2d869dd97a3101c4cda346288c49a742592daf582ec64c86449f79c"
const defaultToken = "29b1ff5779c76bd48ba6705eb99ff970"
const errorDecodingSignature = "error decoding signature"
const invalidSignatureHeader = "X-Buildkite-Signature format is incorrect"
const missingAuthHeader = "no X-Buildkite-Signature or X-Buildkite-Token header present on request"
const payloadSignatureError = "payload signature check failed"
const tokenValidationError = "webhook token validation failed"
secretKey := []byte("29b1ff5779c76bd48ba6705eb99ff970")
tests := []struct {
signature string
token string
event string
wantError string
wantEvent string
wantPayload string
}{
// The following tests generate expected errors:
// Missing signature and token
{
signature: "",
token: "",
wantError: missingAuthHeader,
},
// Invalid signature format
{
signature: "invalid",
wantError: invalidSignatureHeader,
},
// Signature not hex string
{
signature: "timestamp=1642080837,signature=yo",
wantError: errorDecodingSignature,
},
// Signature not valid
{
signature: strings.Replace(defaultSignature, "f", "a", 1),
wantError: payloadSignatureError,
},
// Invalid token
{
token: "invalid-token",
wantError: tokenValidationError,
},
// The following tests expect a valid result
// Valid signature
{
signature: defaultSignature,
event: "ping",
wantEvent: "ping",
wantPayload: defaultBody,
},
// Valid token
{
token: defaultToken,
event: "ping",
wantEvent: "ping",
wantPayload: defaultBody,
},
}
for _, test := range tests {
buf := bytes.NewBufferString(defaultBody)
req, err := http.NewRequest("POST", "http://localhost/webhook", buf)
if err != nil {
t.Fatalf("NewRequest: %v", err)
}
if test.signature != "" {
req.Header.Set(SignatureHeader, test.signature)
}
if test.token != "" {
req.Header.Set(TokenHeader, test.token)
}
req.Header.Set("Content-Type", "application/json")
got, err := ValidatePayload(req, secretKey)
if err != nil {
if test.wantPayload != "" {
t.Errorf("ValidatePayload(%#v): err = %v, want nil", test, err)
}
if !strings.Contains(err.Error(), test.wantError) {
t.Errorf("ValidatePayload(%#v): err = %s, want err = %s", test, err.Error(), test.wantError)
}
continue
}
if string(got) != test.wantPayload {
t.Errorf("ValidatePayload = %q, want %q", got, test.wantPayload)
}
}
}
func TestWebHookType(t *testing.T) {
eventType := "ping"
req, err := http.NewRequest("POST", "http://localhost", nil)
if err != nil {
t.Fatalf("Error building requet: %v", err)
}
req.Header.Set(EventTypeHeader, eventType)
got := WebHookType(req)
if got != eventType {
t.Errorf("WebHookType(%#v) = %q, want %q", req, got, eventType)
}
}