-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest.js
118 lines (95 loc) Β· 2.6 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
import firebase from 'firebase'
import test from 'ava'
import hackernews from './'
const hnservice = hackernews.init(firebase, {
log: console.log
})
test('watch', t => {
hnservice.watch().then(() => {
const data = hnservice.dataCached()
t.true(data.top.length > 0)
}).catch(err => {
t.fail()
})
})
test('top', async t => {
const res = await hnservice.stories('top')
t.true(res.length > 0, 'returns resultful value')
})
test('stories', async t => {
await Promise.all(['top', 'new', 'best', 'ask', 'show', 'job'].map(type => {
return new Promise(async resolve => {
const res = await hnservice.stories(type)
t.true(res.length > 0, 'returns resultful value')
resolve()
})
}))
})
test('count of default', async t => {
await Promise.all(['top', 'new', 'best', 'ask', 'show', 'job'].map(type => {
return new Promise(async resolve => {
const res = await hnservice.stories(type, {
page: 1
})
t.true(res.length > 0, 'returns resultful value')
resolve()
})
}))
})
test('count of custom', async t => {
await Promise.all(['top', 'new', 'best', 'ask', 'show', 'job'].map(type => {
return new Promise(async resolve => {
const res = await hnservice.stories(type, {
page: 1,
count: 10
})
t.true(res.length === 10, 'returns resultful value')
resolve()
})
}))
})
test('user', async t => {
const user = await hnservice.user('jl')
t.true(user.about === 'This is a test')
t.true(user.id === 'jl')
})
test('maxitem', async t => {
const maxItem = await hnservice.maxItem()
t.true(maxItem > 0, 'returns resultful value')
})
test('updates', async t => {
const res = await hnservice.update()
t.true(res.items.length > 0)
t.true(res.profiles.length > 0)
})
test('length', async t => {
await hnservice.stories('top')
const length = await hnservice.length('top')
t.true(length > 0)
})
test('total length', async t => {
await hnservice.stories('top')
const length = await hnservice.length('top')
t.true(length >= 400)
})
test('kids', async t => {
const res = await hnservice.stories('top')
await hnservice.kids(res[1].id)
res[1].kids.forEach(id => {
t.true(hnservice.itemsCached(id)[0].id !== undefined)
})
})
test('cached apis', async t => {
const live = await hnservice.stories('top')
const cached = hnservice.storiesCached('top')
t.deepEqual(live, cached)
})
test('fetch', async t => {
const data = await hnservice.fetch('/hackernews/top')
t.true(data.length > 0, 'returns resultful value')
})
test('fetch length', async t => {
const data = await hnservice.fetch('/hackernews/top')
const len = await hnservice.fetch('/hackernews/length/top')
t.true(len > 0)
})