-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathtest.js
More file actions
350 lines (292 loc) · 10.1 KB
/
test.js
File metadata and controls
350 lines (292 loc) · 10.1 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
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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
import { test } from 'node:test'
import assert from 'node:assert'
import crypto from 'node:crypto'
import { PassThrough } from 'node:stream'
import handler from './github-webhook-handler.js'
function signBlob (key, blob) {
return `sha1=${crypto.createHmac('sha1', key).update(blob).digest('hex')}`
}
function mkReq (url, method) {
const req = new PassThrough()
req.method = method || 'POST'
req.url = url
req.headers = {
'x-hub-signature': 'bogus',
'x-github-event': 'bogus',
'x-github-delivery': 'bogus'
}
return req
}
function mkRes () {
const res = {
writeHead (statusCode, headers) {
res.$statusCode = statusCode
res.$headers = headers
},
end (content) {
res.$end = content
}
}
return res
}
test('handler without full options throws', () => {
assert.strictEqual(typeof handler, 'function', 'handler exports a function')
assert.throws(() => handler(), /must provide an options object/, 'throws if no options')
assert.throws(() => handler({}), /must provide a 'path' option/, 'throws if no path option')
assert.throws(() => handler({ path: '/' }), /must provide a 'secret' option/, 'throws if no secret option')
})
test('handler without full options throws in array', () => {
assert.throws(() => handler([{}]), /must provide a 'path' option/, 'throws if no path option')
assert.throws(() => handler([{ path: '/' }]), /must provide a 'secret' option/, 'throws if no secret option')
})
test('handler ignores invalid urls', async () => {
const options = { path: '/some/url', secret: 'bogus' }
const h = handler(options)
await new Promise((resolve) => {
h(mkReq('/'), mkRes(), (err) => {
assert.ifError(err)
resolve()
})
})
await new Promise((resolve) => {
h(mkReq('/some/url/'), mkRes(), (err) => {
assert.ifError(err)
resolve()
})
})
await new Promise((resolve) => {
h(mkReq('/some'), mkRes(), (err) => {
assert.ifError(err)
resolve()
})
})
})
test('handler ignores non-POST requests', async () => {
const options = { path: '/some/url', secret: 'bogus' }
const h = handler(options)
await new Promise((resolve) => {
h(mkReq('/some/url', 'GET'), mkRes(), (err) => {
assert.ifError(err)
resolve()
})
})
await new Promise((resolve) => {
h(mkReq('/some/url?test=param', 'GET'), mkRes(), (err) => {
assert.ifError(err)
resolve()
})
})
})
test('handler accepts valid urls', async () => {
const options = { path: '/some/url', secret: 'bogus' }
const h = handler(options)
let callbackCalled = false
h(mkReq('/some/url'), mkRes(), () => {
callbackCalled = true
})
await new Promise((resolve) => setTimeout(resolve, 10))
assert.strictEqual(callbackCalled, false, 'callback should not be called for valid POST')
})
test('handler accepts valid urls in Array', async () => {
const options = [{ path: '/some/url', secret: 'bogus' }, { path: '/someOther/url', secret: 'bogus' }]
const h = handler(options)
let callbackCalled = false
h(mkReq('/some/url'), mkRes(), () => { callbackCalled = true })
h(mkReq('/someOther/url'), mkRes(), () => { callbackCalled = true })
await new Promise((resolve) => setTimeout(resolve, 10))
assert.strictEqual(callbackCalled, false, 'callback should not be called for valid POSTs')
})
test('handler can reject events', async () => {
const acceptableEvents = {
undefined,
'a string equal to the event': 'bogus',
'a string equal to *': '*',
'an array containing the event': ['bogus'],
'an array containing *': ['not-bogus', '*']
}
const unacceptableEvents = {
'a string not equal to the event or *': 'not-bogus',
'an array not containing the event or *': ['not-bogus']
}
for (const [desc, events] of Object.entries(acceptableEvents)) {
const h = handler({
path: '/some/url',
secret: 'bogus',
events
})
let callbackCalled = false
h(mkReq('/some/url'), mkRes(), () => { callbackCalled = true })
await new Promise((resolve) => setTimeout(resolve, 10))
assert.strictEqual(callbackCalled, false, `accepted because options.events was ${desc}`)
}
for (const [desc, events] of Object.entries(unacceptableEvents)) {
const h = handler({
path: '/some/url',
secret: 'bogus',
events
})
h.on('error', () => {})
await new Promise((resolve) => {
h(mkReq('/some/url'), mkRes(), (err) => {
assert.ok(err, `rejected because options.events was ${desc}`)
resolve()
})
})
}
})
test('handler is an EventEmitter', () => {
const h = handler({ path: '/', secret: 'bogus' })
assert.strictEqual(typeof h.on, 'function', 'has h.on()')
assert.strictEqual(typeof h.emit, 'function', 'has h.emit()')
assert.strictEqual(typeof h.removeListener, 'function', 'has h.removeListener()')
let received
h.on('ping', (pong) => { received = pong })
h.emit('ping', 'pong')
assert.strictEqual(received, 'pong', 'got event')
assert.throws(() => h.emit('error', new Error('threw an error')), /threw an error/, 'acts like an EE')
})
test('handler accepts a signed blob', async () => {
const obj = { some: 'github', object: 'with', properties: true }
const json = JSON.stringify(obj)
const h = handler({ path: '/', secret: 'bogus' })
const req = mkReq('/')
const res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'push'
const eventPromise = new Promise((resolve) => {
h.on('push', (event) => {
assert.deepStrictEqual(event, {
event: 'push',
id: 'bogus',
payload: obj,
url: '/',
host: undefined,
protocol: undefined,
path: '/'
})
assert.strictEqual(res.$statusCode, 200, 'correct status code')
assert.deepStrictEqual(res.$headers, { 'content-type': 'application/json' })
assert.strictEqual(res.$end, '{"ok":true}', 'got correct content')
resolve()
})
})
h(req, res, () => {
assert.fail('should not get here')
})
process.nextTick(() => req.end(json))
await eventPromise
})
test('handler accepts multi blob in Array', async () => {
const obj = { some: 'github', object: 'with', properties: true }
const json = JSON.stringify(obj)
const h = handler([{ path: '/', secret: 'bogus' }, { path: '/some/url', secret: 'bogus' }])
const req = mkReq('/some/url')
const res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'push'
const eventPromise = new Promise((resolve) => {
h.on('push', (event) => {
assert.deepStrictEqual(event, {
event: 'push',
id: 'bogus',
payload: obj,
url: '/some/url',
host: undefined,
protocol: undefined,
path: '/some/url'
})
assert.strictEqual(res.$statusCode, 200, 'correct status code')
assert.deepStrictEqual(res.$headers, { 'content-type': 'application/json' })
assert.strictEqual(res.$end, '{"ok":true}', 'got correct content')
resolve()
})
})
h(req, res, () => {
assert.fail('should not get here')
})
process.nextTick(() => req.end(json))
await eventPromise
})
test('handler accepts a signed blob with alt event', async () => {
const obj = { some: 'github', object: 'with', properties: true }
const json = JSON.stringify(obj)
const h = handler({ path: '/', secret: 'bogus' })
const req = mkReq('/')
const res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'issue'
h.on('push', () => assert.fail('should not get here'))
const eventPromise = new Promise((resolve) => {
h.on('issue', (event) => {
assert.deepStrictEqual(event, {
event: 'issue',
id: 'bogus',
payload: obj,
url: '/',
host: undefined,
protocol: undefined,
path: '/'
})
assert.strictEqual(res.$statusCode, 200, 'correct status code')
assert.deepStrictEqual(res.$headers, { 'content-type': 'application/json' })
assert.strictEqual(res.$end, '{"ok":true}', 'got correct content')
resolve()
})
})
h(req, res, () => {
assert.fail('should not get here')
})
process.nextTick(() => req.end(json))
await eventPromise
})
test('handler rejects a badly signed blob', async () => {
const obj = { some: 'github', object: 'with', properties: true }
const json = JSON.stringify(obj)
const h = handler({ path: '/', secret: 'bogus' })
const req = mkReq('/')
const res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-hub-signature'] = '0' + req.headers['x-hub-signature'].substring(1)
const errorPromise = new Promise((resolve) => {
h.on('error', (err, _req) => {
assert.ok(err, 'got an error')
assert.strictEqual(_req, req, 'was given original request object')
assert.strictEqual(res.$statusCode, 400, 'correct status code')
assert.deepStrictEqual(res.$headers, { 'content-type': 'application/json' })
assert.strictEqual(res.$end, '{"error":"X-Hub-Signature does not match blob signature"}', 'got correct content')
resolve()
})
})
h.on('push', () => assert.fail('should not get here'))
h(req, res, (err) => {
assert.ok(err, 'got error on callback')
})
process.nextTick(() => req.end(json))
await errorPromise
})
test('handler responds on a stream error', async () => {
const obj = { some: 'github', object: 'with', properties: true }
const json = JSON.stringify(obj)
const h = handler({ path: '/', secret: 'bogus' })
const req = mkReq('/')
const res = mkRes()
req.headers['x-hub-signature'] = signBlob('bogus', json)
req.headers['x-github-event'] = 'issue'
h.on('push', () => assert.fail('should not get here'))
h.on('issue', () => assert.fail('should never get here'))
const errorPromise = new Promise((resolve) => {
h.on('error', (err) => {
assert.ok(err, 'got an error')
assert.strictEqual(res.$statusCode, 400, 'correct status code')
resolve()
})
})
h(req, res, (err) => {
assert.ok(err)
})
req.write('{')
process.nextTick(() => {
req.destroy(new Error('simulated explosion'))
})
await errorPromise
})