-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.js
115 lines (98 loc) · 2.63 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
import assert from 'node:assert/strict'
import test from 'node:test'
import {top, min} from './index.js'
const own = {}.hasOwnProperty
test('trigrams.top()', async function () {
const data = await top()
assert.doesNotThrow(function () {
/** @type {string} */
let code
for (code in data) {
if (own.call(data, code)) {
assert.strictEqual(
typeof data[code],
'object',
code + ' should be an object'
)
}
}
}, 'trigrams.top()[] should be an object')
assert.doesNotThrow(function () {
/** @type {string} */
let code
for (code in data) {
if (own.call(data, code)) {
assert.strictEqual(
Object.keys(data[code]).length,
300,
code + ' should have 300 values'
)
}
}
}, 'trigrams.top()[] should contain 300 values')
assert.doesNotThrow(function () {
/** @type {string} */
let code
for (code in data) {
if (own.call(data, code)) {
/** @type {string} */
let trigram
for (trigram in data[code]) {
if (own.call(data[code], trigram)) {
assert.strictEqual(
typeof data[code][trigram],
'number',
trigram + ' in ' + code + ' should be a number'
)
assert.strictEqual(
Math.round(data[code][trigram]),
data[code][trigram],
trigram + ' in ' + code + ' should be an integer'
)
}
}
}
}
}, 'trigrams.top()[][] should be an integer')
})
test('trigrams.min()', async function () {
const data = await min()
assert.doesNotThrow(function () {
/** @type {string} */
let code
for (code in data) {
if (own.call(data, code)) {
assert.ok(Array.isArray(data[code]), code + ' should be an array')
}
}
}, 'trigrams.min()[] should be an array')
assert.doesNotThrow(function () {
/** @type {string} */
let code
for (code in data) {
if (own.call(data, code)) {
assert.strictEqual(
data[code].length,
300,
code + ' should have 300 values'
)
}
}
}, 'trigrams.min()[] should contain 300 values')
assert.doesNotThrow(function () {
/** @type {string} */
let code
for (code in data) {
if (own.call(data, code)) {
let index = -1
while (++index < data[code].length) {
assert.strictEqual(
typeof data[code][index],
'string',
index + ' in ' + code + ' should be a string'
)
}
}
}
}, 'trigrams.min()[][] should be a string')
})