-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathingest.test.js
450 lines (398 loc) · 10.3 KB
/
ingest.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
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
/*
ard-eventhub
by SWR Audio Lab
unit tests for the ingest service
*/
// Require dependencies
const { describe, it, before } = require('mocha')
const chai = require('chai')
const chaiHttp = require('chai-http')
const { DateTime } = require('luxon')
const server = require('./index')
const logger = require('../utils/logger')
// Init chai functions
const { expect } = chai
chai.should()
// Use chaiHttp
chai.use(chaiHttp)
const exitWithError = (message) => {
logger.log({
level: 'error',
message,
source: 'config',
})
process.exit(1)
}
// check required env vars
if (!process.env.TEST_USER) exitWithError('TEST_USER not found')
if (!process.env.TEST_USER_PW) exitWithError('TEST_USER_PW not found')
// set test-user env vars
const testUser = process.env.TEST_USER
const testUserPass = process.env.TEST_USER_PW
const testUserReset = process.env.TEST_USER_RESET
// define general tests
function testResponse(res, status) {
console.log(`comparing response with statusCode ${res.statusCode} (should be ${status})`)
expect(res).to.be.json
expect(res).to.have.status(status)
}
// check rejection of invalid token
function testFailedAuth(res) {
testResponse(res, 403)
}
function testMissingAuth(res) {
testResponse(res, 401)
}
/*
AUTH - Authentication services for Eventhub
*/
const loginPath = '/auth/login'
let accessToken = null
let refreshToken = null
function testAuthKeys(body) {
body.should.be.a('object')
body.should.have.property('expiresIn').to.be.a('number')
body.should.have.property('expires').to.be.a('string')
body.should.have.property('token').to.be.a('string')
body.should.have.property('refreshToken').to.be.a('string')
body.should.have.property('user').to.be.a('object')
body.user.should.have.property('user_id').to.be.a('string')
body.user.should.have.property('email_verified').to.be.a('boolean')
}
describe(`POST ${loginPath}`, () => {
it('swap login credentials for an id-token', (done) => {
const loginRequest = {
email: testUser,
password: testUserPass,
}
chai
.request(server)
.post(loginPath)
.send(loginRequest)
.end((_err, res) => {
testResponse(res, 200)
testAuthKeys(res.body)
done()
// Store tokens for further tests
accessToken = res.body.token
refreshToken = res.body.refreshToken
})
})
})
const refreshPath = '/auth/refresh'
describe(`POST ${refreshPath}`, () => {
it('swap refresh-token for new id-token', (done) => {
const refreshRequest = {
refreshToken: refreshToken,
}
chai
.request(server)
.post(refreshPath)
.send(refreshRequest)
.end((_err, res) => {
testResponse(res, 200)
testAuthKeys(res.body)
done()
// store new token for further tests
accessToken = res.body.token
})
})
})
// 🚨 firebase limit is 150 requests per day 🚨
const resetPath = '/auth/reset'
if (testUserReset === true) {
describe(`POST ${resetPath}`, () => {
it('request password reset email', (done) => {
const resetRequest = {
email: testUser,
}
chai
.request(server)
.post(resetPath)
.send(resetRequest)
.end((_err, res) => {
testResponse(res, 200)
done()
})
})
})
}
/*
EVENTS - Manage events
*/
function testEventKeys(body) {
body.should.be.a('object')
body.should.have.property('statuses').to.be.a('object')
body.should.have.property('event').to.be.a('object')
}
const eventName = 'de.ard.eventhub.v1.radio.track.playing'
const eventPath = `/events/${eventName}`
const event = {
event: eventName,
type: 'music',
start: DateTime.now().toISO(),
title: 'Unit Test Song',
services: [
{
type: 'PermanentLivestream',
externalId: 'crid://swr.de/282310/unit',
publisherId: '282310',
},
],
playlistItemId: 'unit-test-id-in-playlist-567',
references: [
{
type: 'Show',
externalId: 'crid://swr.de/my-show/1234567',
alternateIds: [
'https://normdb.ivz.cn.ard.de/sendereihe/427',
'urn:ard:show:027708befb6bfe14',
'brid://br.de/broadcastSeries/1235',
],
},
{
type: 'Article',
externalId: 'crid://dlf.de/article/1234567',
title: 'Kommerzielle US-Raumfahrt - Die neue Weltraumökonomie',
url: 'https://www.deutschlandfunkkultur.de/kommerzielle-us-raumfahrt-die-neue-weltraumoekonomie-100.html',
},
],
}
describe(`POST ${eventPath}`, () => {
it('test invalid auth for POST /event', (done) => {
chai
.request(server)
.post(eventPath)
.send(event)
.end((_err, res) => {
testMissingAuth(res)
done()
})
})
it('test invalid auth for POST /event', (done) => {
chai
.request(server)
.post(eventPath)
.set('Authorization', `Bearer invalid${accessToken}`)
.send(event)
.end((_err, res) => {
testFailedAuth(res)
done()
})
})
it('publish a new event', (done) => {
chai
.request(server)
.post(eventPath)
.set('Authorization', `Bearer ${accessToken}`)
.send(event)
.end((_err, res) => {
testResponse(res, 201)
testEventKeys(res.body)
done()
})
})
it('publish a new event with expired time', (done) => {
event.start = DateTime.now().minus({ minutes: 3 }).toISO()
chai
.request(server)
.post(eventPath)
.set('Authorization', `Bearer ${accessToken}`)
.send(event)
.end((_err, res) => {
testResponse(res, 400)
done()
})
})
it('publish a new event with invalid time', (done) => {
event.start = `${DateTime.now().toISO()}00`
chai
.request(server)
.post(eventPath)
.set('Authorization', `Bearer ${accessToken}`)
.send(event)
.end((_err, res) => {
testResponse(res, 400)
done()
})
})
it('publish a new event with invalid externalId in references', (done) => {
event.references[1].externalId = null
chai
.request(server)
.post(eventPath)
.set('Authorization', `Bearer ${accessToken}`)
.send(event)
.end((_err, res) => {
testResponse(res, 400)
done()
})
})
})
/*
TOPICS - Access to topics details
*/
const topicPath = '/topics'
let topicName
function testTopicKeys(body) {
body.should.be.a('object')
body.should.have.property('type').to.be.a('string')
body.should.have.property('id').to.be.a('string')
body.should.have.property('name').to.be.a('string')
body.should.have.property('labels').to.be.a('object')
}
describe(`GET ${topicPath}`, () => {
it(`test auth for GET ${topicPath}`, (done) => {
chai
.request(server)
.get(topicPath)
.set('Authorization', `Bearer invalid${accessToken}`)
.end((_err, res) => {
testFailedAuth(res)
done()
})
})
it('list all available topics', (done) => {
chai
.request(server)
.get(topicPath)
.set('Authorization', `Bearer ${accessToken}`)
.end((_err, res) => {
testResponse(res, 200)
res.body.should.be.a('array')
res.body.every((i) => testTopicKeys(i))
topicName = res.body[0].id
done()
})
})
})
/*
SUBSCRIPTIONS - Access to subscription management
*/
const subscriptPath = '/subscriptions'
let subscriptionName
function testSubscriptionKeys(body) {
body.should.be.a('object')
body.should.have.property('type').to.be.a('string')
body.should.have.property('method').to.be.a('string')
body.should.have.property('name').to.be.a('string')
body.should.have.property('path').to.be.a('string')
body.should.have.property('topic').to.be.a('object')
body.topic.should.have.property('id').to.be.a('string')
body.topic.should.have.property('name').to.be.a('string')
body.topic.should.have.property('path').to.be.a('string')
body.should.have.property('ackDeadlineSeconds').to.be.a('number')
body.should.have.property('serviceAccount').to.be.a('string')
body.should.have.property('url').to.be.a('string')
body.should.have.property('contact').to.be.a('string')
body.should.have.property('institutionId').to.be.a('string')
}
describe(`POST ${subscriptPath}`, () => {
let subscription
before((done) => {
subscription = {
type: 'PUBSUB',
method: 'PUSH',
url: 'https://unit.test/eventhub/subscription',
contact: '[email protected]',
topic: topicName,
}
done()
})
it(`test auth for POST ${subscriptPath}`, (done) => {
chai
.request(server)
.post(subscriptPath)
.set('Authorization', `Bearer invalid${accessToken}`)
.send(subscription)
.end((_err, res) => {
testFailedAuth(res)
done()
})
})
it('add a new subscription to this user', (done) => {
chai
.request(server)
.post(subscriptPath)
.set('Authorization', `Bearer ${accessToken}`)
.send(subscription)
.end((_err, res) => {
testResponse(res, 201)
testSubscriptionKeys(res.body)
// Store subscription name for further tests
subscriptionName = res.body.name
done()
})
})
})
describe(`GET ${subscriptPath}`, () => {
it(`test auth for GET ${subscriptPath}`, (done) => {
chai
.request(server)
.get(subscriptPath)
.set('Authorization', `Bearer invalid${accessToken}`)
.end((_err, res) => {
testFailedAuth(res)
done()
})
})
it('list all subscriptions for this user', (done) => {
chai
.request(server)
.get(subscriptPath)
.set('Authorization', `Bearer ${accessToken}`)
.end((_err, res) => {
testResponse(res, 200)
res.body.should.be.a('array')
res.body.every((i) => testSubscriptionKeys(i))
done()
})
})
})
describe(`GET ${subscriptPath}/{name}`, () => {
it(`test auth for GET ${subscriptPath}/{name}`, (done) => {
chai
.request(server)
.get(`${subscriptPath}/${subscriptionName}`)
.set('Authorization', `Bearer invalid${accessToken}`)
.end((_err, res) => {
testFailedAuth(res)
done()
})
})
it('get details about single subscription from this user', (done) => {
chai
.request(server)
.get(`${subscriptPath}/${subscriptionName}`)
.set('Authorization', `Bearer ${accessToken}`)
.end((_err, res) => {
testResponse(res, 200)
testSubscriptionKeys(res.body)
done()
})
})
})
describe(`DELETE ${subscriptPath}/{name}`, () => {
it(`test auth for DELETE ${subscriptPath}/{name}`, (done) => {
chai
.request(server)
.delete(`${subscriptPath}/${subscriptionName}`)
.set('Authorization', `Bearer invalid${accessToken}`)
.end((_err, res) => {
testFailedAuth(res)
done()
})
})
it('remove a single subscription by this user', (done) => {
chai
.request(server)
.delete(`${subscriptPath}/${subscriptionName}`)
.set('Authorization', `Bearer ${accessToken}`)
.end((_err, res) => {
testResponse(res, 200)
res.body.should.be.a('object')
res.body.should.have.property('valid').eql(true)
done()
})
})
})