forked from rvagg/github-webhook-handler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
256 lines (190 loc) · 6.22 KB
/
test.js
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
const test = require('tape')
, crypto = require('crypto')
, handler = require('./')
, through2 = require('through2')
function signBlob (key, blob) {
return 'sha1=' +
crypto.createHmac('sha1', key).update(blob).digest('hex')
}
function mkReq (url) {
var req = through2()
req.url = url
req.headers = {
'x-hub-signature' : 'bogus'
, 'x-github-event' : 'bogus'
, 'x-github-delivery' : 'bogus'
}
return req
}
function mkRes () {
var res = {
writeHead : function (statusCode, headers) {
res.$statusCode = statusCode
res.$headers = headers
}
, end : function (content) {
res.$end = content
}
}
return res
}
test('handler without full options throws', function (t) {
t.plan(4)
t.equal(typeof handler, 'function', 'handler exports a function')
t.throws(handler, /must provide an options object/, 'throws if no options')
t.throws(handler.bind(null, {}), /must provide a 'path' option/, 'throws if no path option')
t.throws(handler.bind(null, { path: '/' }), /must provide a 'secret' option/, 'throws if no secret option')
})
test('handler ignores invalid urls', function (t) {
var options = { path: '/some/url', secret: 'bogus' }
, h = handler(options)
t.plan(6)
h(mkReq('/'), mkRes(), function (err) {
t.error(err)
t.ok(true, 'request was ignored')
})
// near match
h(mkReq('/some/url/'), mkRes(), function (err) {
t.error(err)
t.ok(true, 'request was ignored')
})
// partial match
h(mkReq('/some'), mkRes(), function (err) {
t.error(err)
t.ok(true, 'request was ignored')
})
})
test('handler accepts valid urls', function (t) {
var options = { path: '/some/url', secret: 'bogus' }
, h = handler(options)
t.plan(1)
h(mkReq('/some/url'), mkRes(), function (err) {
t.error(err)
t.fail(false, 'should not call')
})
h(mkReq('/some/url?test=param'), mkRes(), function (err) {
t.error(err)
t.fail(false, 'should not call')
})
setTimeout(t.ok.bind(t, true, 'done'))
})
// because we don't inherit in a traditional way
test('handler is an EventEmitter', function (t) {
t.plan(5)
var h = handler({ path: '/', secret: 'bogus' })
t.equal(typeof h.on, 'function', 'has h.on()')
t.equal(typeof h.emit, 'function', 'has h.emit()')
t.equal(typeof h.removeListener, 'function', 'has h.removeListener()')
h.on('ping', function (pong) {
t.equal(pong, 'pong', 'got event')
})
h.emit('ping', 'pong')
t.throws(h.emit.bind(h, 'error', new Error('threw an error')), /threw an error/, 'acts like an EE')
})
test('handler accepts a signed blob', function (t) {
t.plan(4)
var obj = { some: 'github', object: 'with', properties: true }
, json = JSON.stringify(obj)
, h = handler({ path: '/', secret: 'bogus' })
, req = mkReq('/')
, res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'push'
h.on('push', function (event) {
t.deepEqual(event, { event: 'push', id: 'bogus', payload: obj, url: '/' })
t.equal(res.$statusCode, 200, 'correct status code')
t.deepEqual(res.$headers, { 'content-type': 'application/json' })
t.equal(res.$end, '{"ok":true}', 'got correct content')
})
h(req, res, function (err) {
t.error(err)
t.fail(true, 'should not get here!')
})
process.nextTick(function () {
req.end(json)
})
})
test('handler accepts a signed blob with alt event', function (t) {
t.plan(4)
var obj = { some: 'github', object: 'with', properties: true }
, json = JSON.stringify(obj)
, h = handler({ path: '/', secret: 'bogus' })
, req = mkReq('/')
, res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'issue'
h.on('push', function (event) {
t.fail(true, 'should not get here!')
})
h.on('issue', function (event) {
t.deepEqual(event, { event: 'issue', id: 'bogus', payload: obj, url: '/' })
t.equal(res.$statusCode, 200, 'correct status code')
t.deepEqual(res.$headers, { 'content-type': 'application/json' })
t.equal(res.$end, '{"ok":true}', 'got correct content')
})
h(req, res, function (err) {
t.error(err)
t.fail(true, 'should not get here!')
})
process.nextTick(function () {
req.end(json)
})
})
test('handler rejects a badly signed blob', function (t) {
t.plan(6)
var obj = { some: 'github', object: 'with', properties: true }
, json = JSON.stringify(obj)
, h = handler({ path: '/', secret: 'bogus' })
, req = mkReq('/')
, res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
// break signage by a tiny bit
req.headers['x-hub-signature'] = '0' + req.headers['x-hub-signature'].substring(1)
h.on('error', function (err, _req) {
t.ok(err, 'got an error')
t.strictEqual(_req, req, 'was given original request object')
t.equal(res.$statusCode, 400, 'correct status code')
t.deepEqual(res.$headers, { 'content-type': 'application/json' })
t.equal(res.$end, '{"error":"X-Hub-Signature does not match blob signature"}', 'got correct content')
})
h.on('push', function (event) {
t.fail(true, 'should not get here!')
})
h(req, res, function (err) {
t.ok(err, 'got error on callback')
})
process.nextTick(function () {
req.end(json)
})
})
test('handler responds on a bl error', function (t) {
t.plan(4)
var obj = { some: 'github', object: 'with', properties: true }
, json = JSON.stringify(obj)
, h = handler({ path: '/', secret: 'bogus' })
, req = mkReq('/')
, res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'issue'
h.on('push', function (event) {
t.fail(true, 'should not get here!')
})
h.on('issue', function (event) {
t.fail(true, 'should never get here!')
})
h.on('error', function(err) {
t.ok(err, 'got an error')
t.equal(res.$statusCode, 400, 'correct status code')
});
h(req, res, function (err) {
t.ok(err)
})
var end = res.end
res.end = function () {
t.equal(res.$statusCode, 400, 'correct status code')
}
req.write('{')
process.nextTick(function() {
req.emit('error', new Error('simulated explosion'))
});
})