forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse_test.ts
232 lines (212 loc) · 6.58 KB
/
parse_test.ts
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { parse } from "./parse.ts";
import {
assert,
assertEquals,
assertStrictEquals,
assertThrows,
} from "@std/assert";
import "./testdata/JSONTestSuite/test.ts";
import "./testdata/node-jsonc-parser/test.ts";
import "./testdata/test262/test.ts";
// The test code for the jsonc module can also be found in the testcode directory.
function assertValidParse(text: string, expected: unknown) {
assertEquals(parse(text), expected);
}
function assertInvalidParse(
text: string,
// deno-lint-ignore no-explicit-any
ErrorClass: new (...args: any[]) => Error,
msgIncludes?: string,
) {
assertThrows(
() => parse(text),
ErrorClass,
msgIncludes,
);
}
Deno.test({
name: "parse() handles single line comment",
fn() {
assertValidParse(`"aaa"//comment`, "aaa");
assertValidParse(`["aaa"//comment\n,"aaa"]`, ["aaa", "aaa"]);
assertValidParse(`["aaa"//comment\r,"aaa"]`, ["aaa", "aaa"]);
assertValidParse(`["aaa"//comment\n\r,"aaa"]`, ["aaa", "aaa"]);
},
});
Deno.test({
name: "parse() handles multi line comments",
fn() {
assertValidParse(`"aaa"/*comment*/`, "aaa");
assertValidParse(`100/*comment*/`, 100);
assertValidParse(`"aaa/*comment*/"`, "aaa/*comment*/");
assertValidParse(`"aaa"/*comment\ncomment*/`, "aaa");
assertInvalidParse(`"aaa"/*`, SyntaxError);
assertInvalidParse(`"aaa"/*/`, SyntaxError);
},
});
Deno.test({
name: "parse() handles special characters",
fn() {
assertValidParse(`"👪"`, "👪");
assertValidParse(`"🦕"`, "🦕");
assertValidParse(
`"\u543e\u8f29\u306f\u732b\u3067\u3042\u308b\u3002"`,
"\u543e\u8f29\u306f\u732b\u3067\u3042\u308b\u3002",
);
assertValidParse(
`"\\" \\\\ \\/ \\b \\f \\n \\r \\t"`,
'" \\ \/ \b \f \n \r \t',
);
},
});
Deno.test({
name: "parse() handles #numberEndToken correctly",
fn() {
// Correctly parses the letters after the numbers (` \t\r\n[]{}:,/`)
assertValidParse(`{"a":0}`, { a: 0 });
assertValidParse(`[0]`, [0]);
assertValidParse(`[0,]`, [0]);
assertValidParse(`0//`, 0);
assertValidParse(`0\r`, 0);
assertValidParse(`0\n`, 0);
assertValidParse(`0\t`, 0);
assertValidParse(`0 `, 0);
assertInvalidParse(`{"a":0{}`, SyntaxError);
assertInvalidParse(`{"a":0[}`, SyntaxError);
assertInvalidParse(`{"a":0:}`, SyntaxError);
},
});
Deno.test({
name: "parse() throws error message",
fn() {
assertInvalidParse(
`:::::`,
SyntaxError,
"Unexpected token : in JSONC at position 0",
);
assertInvalidParse(
`[`,
SyntaxError,
"Unexpected end of JSONC input",
);
assertInvalidParse(
`[]100`,
SyntaxError,
"Unexpected token 100 in JSONC at position 2",
);
assertInvalidParse(
`[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa]`,
SyntaxError,
"Unexpected token aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa... in JSONC at position 1",
);
assertInvalidParse(
`}`,
SyntaxError,
"Unexpected token } in JSONC at position 0",
);
assertInvalidParse(
`]`,
SyntaxError,
"Unexpected token ] in JSONC at position 0",
);
assertInvalidParse(
`,`,
SyntaxError,
"Unexpected token , in JSONC at position 0",
);
},
});
Deno.test({
name: "parse() handles __proto__",
fn() {
// The result of JSON.parse and the result of JSONC.parse should match
const json = JSON.parse('{"__proto__": 100}');
const jsonc = parse('{"__proto__": 100}');
assertEquals(jsonc, json);
assertEquals((jsonc as Record<string, number>).__proto__, 100);
assertEquals((jsonc as Record<string, string>).__proto__, json.__proto__);
assertStrictEquals(Object.getPrototypeOf(jsonc), Object.prototype);
assertStrictEquals(
Object.getPrototypeOf(jsonc),
Object.getPrototypeOf(json),
);
},
});
Deno.test({
name: "parse() handles duplicate object key",
fn() {
// The result of JSON.parse and the result of JSONC.parse should match
const json = JSON.parse('{"aaa": 0, "aaa": 1}');
const jsonc = parse('{"aaa": 0, "aaa": 1}');
assertEquals(jsonc, { aaa: 1 });
assertEquals(jsonc, json);
},
});
Deno.test({
name: "parse() handles non-string input type",
fn() {
assertInvalidParse(
// deno-lint-ignore no-explicit-any
undefined as any,
SyntaxError,
"Unexpected token undefined in JSONC at position 0",
);
// deno-lint-ignore no-explicit-any
assertValidParse(0 as any, 0);
},
});
Deno.test({
name: "parse() handles consecutive backslash",
fn() {
assertValidParse('"foo\\\\"', "foo\\");
assertValidParse(' ["foo\\"", "bar"]', ['foo"', "bar"]);
assertInvalidParse('["foo\\\\"", "bar"]', SyntaxError);
assertValidParse(' ["foo\\\\\\"", "bar"]', ['foo\\"', "bar"]);
assertInvalidParse('["foo\\\\\\\\"", "bar"]', SyntaxError);
assertInvalidParse('["foo\\", "bar"]', SyntaxError);
assertValidParse(' ["foo\\\\", "bar"]', ["foo\\", "bar"]);
assertInvalidParse('["foo\\\\\\", "bar"]', SyntaxError);
assertValidParse(' ["foo\\\\\\\\", "bar"]', ["foo\\\\", "bar"]);
},
});
Deno.test({
name: "parse() uses Object.defineProperty when setting object property",
async fn() {
// Tests if the value is set using `Object.defineProperty(target, key, {value})`
// instead of `target[key] = value` when parsing the object.
// This makes a difference in behavior when __proto__ is set in Node.js and browsers.
// Using `Object.defineProperty` avoids prototype pollution in Node.js and browsers.
// reference: https://github.com/advisories/GHSA-9c47-m6qq-7p4h (CVE-2022-46175)
const testCode = `
Object.defineProperty(Object.prototype, "__proto__", {
set() {
throw new Error("Don't try to set the value directly to the key __proto__.")
}
});
import { parse } from "${import.meta.resolve("./parse.ts")}";
parse('{"__proto__": {"isAdmin": true}}');
`;
const command = new Deno.Command(Deno.execPath(), {
stdout: "inherit",
stderr: "inherit",
args: ["eval", "--no-lock", testCode],
});
const { success } = await command.output();
assert(success);
},
});
Deno.test({
name: "new parse() throws error",
fn() {
assertThrows(
// deno-lint-ignore no-explicit-any
() => new (parse as any)(""),
TypeError,
"parse is not a constructor",
);
},
});
Deno.test("parse() handles lone continuation byte in key and tailing comma", () => {
assertEquals(parse('{"�":"0",}'), { "�": "0" });
});