-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.js
78 lines (64 loc) · 1.68 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
const assert = require('assert')
const {Tracker} = require('.')
const koko = new Tracker({auth: process.env.KOKO_AUTH})
async function testTrackContent() {
const request = {
id: '123',
user_id: '123',
type: 'post',
content_type: 'text',
content: {text: 'Some content'},
created_at: new Date().toISOString()
}
await koko.trackContent(request)
try {
delete request.type
await koko.trackContent(request)
throw new Error('API should require `type` parameter.')
}
catch ({message}) {
assert.equal(message, 'Required property type was not present.')
}
}
async function testTrackFlag() {
const request = {
id: '123',
flagger_id: '123',
reasons: ['crisis'],
targets: [{content_id: '123'}],
created_at: new Date().toISOString()
}
await koko.trackFlag(request)
try {
delete request.flagger_id
await koko.trackFlag(request)
throw new Error('API should require `flagger_id` parameter.')
}
catch ({message}) {
assert.equal(message, 'Required property flagger_id was not present.')
}
}
async function testTrackModeration() {
const request = {
id: '123',
moderator_id: '123',
action: 'user_warned',
targets: [{content_id: '123'}],
created_at: new Date().toISOString()
}
await koko.trackModeration(request)
try {
delete request.moderator_id
await koko.trackModeration(request)
throw new Error('API should require `moderator_id` parameter.')
}
catch ({message}) {
assert.equal(message, 'Required property moderator_id was not present.')
}
}
const tests = [
testTrackContent(),
testTrackFlag(),
testTrackModeration()
]
Promise.all(tests).catch(err => { throw err })