forked from pixiebrix/jq-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
85 lines (69 loc) · 1.8 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
/** @format */
var tape = require('tape')
var jq = require('./jq.asm.js')
var jqMin = require('./jq.asm.min.js')
tape('jq', function (t) {
t.plan(3)
jq.onInitialized.addListener(() => {
t.deepEquals(
jq.json(
{ a: 'a letter', b: 'other letter', '%': null },
'[.a, .["%"]] | {res: .}'
),
{ res: ['a letter', null] }
)
t.equals(
jq.raw('["a", {"12": "üñìçôdẽ"}]', '.[1]["12"] | {"what?": .}'),
`{\n "what?": "üñìçôdẽ"\n}`
)
t.equals(
jq.json({ message: 'This is an emoji test 🙏' }, '.message'),
'This is an emoji test 🙏'
)
})
})
tape('jq -- 2046 bug', function (t) {
t.plan(4098)
jq.onInitialized.addListener(() => {
for (let i = 0; i < 4098; i++) {
const response = jq.json({ ok: i }, '.')
t.deepEquals(response, { ok: i })
}
})
})
tape('jq.min', function (t) {
t.plan(3)
jqMin.onInitialized.addListener(() => {
t.deepEquals(
jqMin.json(
{ a: 'a letter', b: 'other letter', '%': null },
'[.a, .["%"]] | {res: .}'
),
{ res: ['a letter', null] }
)
t.equals(
jqMin.raw('["a", {"12": "üñìçôdẽ"}]', '.[1]["12"] | {"what?": .}'),
`{\n "what?": "üñìçôdẽ"\n}`
)
t.equals(
jqMin.json({ message: 'This is an emoji test 🙏' }, '.message'),
'This is an emoji test 🙏'
)
})
})
tape('jq.promise', function (t) {
t.plan(2)
jqMin.promised
.json(
{ a: 'a letter', b: 'other letter', '%': null },
'[.a, .["%"]] | {res: .}'
)
.then((res) => {
t.deepEquals(res, { res: ['a letter', null] })
})
jqMin.promised
.raw('["a", {"12": "üñìçôdẽ"}]', '.[1]["12"] | {"what?": .}')
.then((res) => {
t.equals(res, `{\n "what?": "üñìçôdẽ"\n}`)
})
})