forked from burakcan/mb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
80 lines (75 loc) · 1.84 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
const data = {
a: 1,
b: null,
c: undefined,
d: {
_: 'object',
e: {},
f: null,
g: function () {},
get h () {
return 3
},
j: 1,
k: "string"
},
l: {
m: [
{n: 1},
{n: 2},
{n: 3}
],
o: {
p: {
q: true,
r: false,
s: {
t: 1,
"spaced keys": "hey"
},
u: [
[0, 0, 1],
[0, 2, 0],
[1, 0, 0],
]
}
}
}
}
const write = w => document.body.innerHTML += `${w}<br/>`
const results = { total: 0, passed: 0 };
const test = (condition, data) => {
results.total++;
if (condition) {
results.passed++;
write(` ✅ pass: ${data}`)
return;
}
write(` 🔴 fail: ${data}`)
console.assert(condition, data);
}
console.group('mb tests');
test(mb('a')(data) === 1, 'a');
test(mb('b')(data) === null, 'b');
test(mb('c')(data) === undefined, 'c');
test(mb('d')(data)._ === 'object', 'd');
test(JSON.stringify(mb('d', 'e')(data)) === '{}', 'e');
test(mb('d', 'f')(data) === null, 'f');
test(typeof mb('d', 'g')(data) === 'function', 'g');
test(mb('d', 'h')(data) === 3, 'h');
test(mb('d', 'j')(data) === 1, 'j');
test(mb('d', 'k')(data) === 'string', 'k');
test(mb('l', 'm')(data).length === 3, 'm');
test(mb('l', 'm', 0, 'n')(data) === 1, 'n');
test(mb('l', 'm', 1, 'n')(data) === 2, 'n');
test(mb('l', 'm', 2, 'n')(data) === 3, 'n');
test(mb('l', 'o', 'p', 'q')(data) === true, 'q');
test(mb('l', 'o', 'p', 'r')(data) === false, 'r');
test(mb('l', 'o', 'p', 's', 't')(data) === 1, 't');
test(mb('l', 'o', 'p', 'u', 1, 1)(data) === 2, 'u');
test(mb('l', 'o', 'p', 's', 'spaced keys')(data) === 'hey', 'spaced keys');
console.info(`Passed tests ${results.passed} out of ${results.total}.`);
if (results.passed == results.total) {
console.info('Everything seems fine.');
}
console.groupEnd();