forked from evanw/esbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest262.js
236 lines (211 loc) · 9.04 KB
/
test262.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
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
233
234
235
236
const fs = require('fs');
const path = require('path');
const jsYaml = require('js-yaml');
const { installForTests } = require('./esbuild');
const test262Dir = path.join(__dirname, '..', 'demo', 'test262', 'test');
function findFiles() {
function visit(dir) {
for (const entry of fs.readdirSync(dir)) {
const fullEntry = path.join(dir, entry);
const stats = fs.statSync(fullEntry);
if (stats.isDirectory()) {
visit(fullEntry);
} else if (stats.isFile() && entry.endsWith('.js') && !entry.endsWith('_FIXTURE.js')) {
files.push(fullEntry);
}
}
}
const files = [];
visit(test262Dir);
return files;
}
function formatErrors(content, error) {
if (error.errors) {
return error.errors.map(({ text, location }) => {
if (location) {
const { line, column } = location;
const contentLine = content.split(/(?:\r\n|\n|\r|\u2028|\u2029)/g)[line - 1];
return `<stdin>:${line}:${column}: ERROR: ${text}\n${contentLine}\n${' '.repeat(column)}^`;
}
return `ERROR: ${text}`;
}).join('\n');
}
return error + '';
}
async function main() {
const esbuild = installForTests();
const files = findFiles();
let runCount = 0;
let shouldHavePassed = 0;
let shouldHaveFailed = 0;
let reparseCount = 0;
let reprintCount = 0;
let minifyCount = 0;
let panicCount = 0;
async function esbuildFile(input, options) {
try {
const { code } = await esbuild.transform(input, options);
return { success: true, output: code };
} catch (error) {
return { success: false, error };
}
}
const skipList = [
// Skip these tests because we deliberately support top-level return (input
// files are treated as CommonJS and/or ESM but never as global code, and
// top-level return is allowed in CommonJS)
'language/statements/return/S12.9_A1_T1.js',
'language/statements/return/S12.9_A1_T10.js',
'language/statements/return/S12.9_A1_T2.js',
'language/statements/return/S12.9_A1_T3.js',
'language/statements/return/S12.9_A1_T4.js',
'language/statements/return/S12.9_A1_T5.js',
'language/statements/return/S12.9_A1_T6.js',
'language/statements/return/S12.9_A1_T7.js',
'language/statements/return/S12.9_A1_T8.js',
'language/statements/return/S12.9_A1_T9.js',
'language/global-code/return.js',
// Skip these tests because we deliberately support parsing top-level await
// in all files. Files containing top-level await are always interpreted as
// ESM, never as CommonJS.
'language/expressions/assignmenttargettype/simple-basic-identifierreference-await.js',
'language/expressions/await/await-BindingIdentifier-in-global.js',
'language/expressions/await/await-in-global.js',
'language/expressions/await/await-in-nested-function.js',
'language/expressions/await/await-in-nested-generator.js',
'language/expressions/class/class-name-ident-await-escaped.js',
'language/expressions/class/class-name-ident-await.js',
'language/expressions/dynamic-import/assignment-expression/await-identifier.js',
'language/expressions/object/identifier-shorthand-await-strict-mode.js',
'language/module-code/top-level-await/new-await-script-code.js',
'language/reserved-words/await-script.js',
'language/statements/class/class-name-ident-await-escaped.js',
'language/statements/class/class-name-ident-await.js',
'language/statements/labeled/value-await-non-module-escaped.js',
'language/statements/labeled/value-await-non-module.js',
'language/expressions/dynamic-import/2nd-param-await-ident.js',
'language/expressions/in/private-field-rhs-await-absent.js',
// Skip these tests because we don't currently validate the contents of
// regular expressions. We could do this but it's not necessary to parse
// JavaScript successfully since we parse enough of it to be able to
// determine where the regular expression ends (just "\" and "[]" pairs).
'language/literals/regexp/early-err-pattern.js',
'language/literals/regexp/invalid-braced-quantifier-exact.js',
'language/literals/regexp/invalid-braced-quantifier-lower.js',
'language/literals/regexp/invalid-braced-quantifier-range.js',
'language/literals/regexp/invalid-optional-lookbehind.js',
'language/literals/regexp/invalid-optional-negative-lookbehind.js',
'language/literals/regexp/invalid-range-lookbehind.js',
'language/literals/regexp/invalid-range-negative-lookbehind.js',
'language/literals/regexp/u-invalid-class-escape.js',
'language/literals/regexp/u-invalid-extended-pattern-char.js',
'language/literals/regexp/u-invalid-identity-escape.js',
'language/literals/regexp/u-invalid-legacy-octal-escape.js',
'language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-a.js',
'language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-ab.js',
'language/literals/regexp/u-invalid-non-empty-class-ranges-no-dash-b.js',
'language/literals/regexp/u-invalid-non-empty-class-ranges.js',
'language/literals/regexp/u-invalid-oob-decimal-escape.js',
'language/literals/regexp/u-invalid-optional-lookahead.js',
'language/literals/regexp/u-invalid-optional-lookbehind.js',
'language/literals/regexp/u-invalid-optional-negative-lookahead.js',
'language/literals/regexp/u-invalid-optional-negative-lookbehind.js',
'language/literals/regexp/u-invalid-range-lookahead.js',
'language/literals/regexp/u-invalid-range-lookbehind.js',
'language/literals/regexp/u-invalid-range-negative-lookahead.js',
'language/literals/regexp/u-invalid-range-negative-lookbehind.js',
'language/literals/regexp/u-unicode-esc-bounds.js',
'language/literals/regexp/u-unicode-esc-non-hex.js',
'language/literals/regexp/unicode-escape-nls-err.js',
]
async function processFile(file) {
let content = fs.readFileSync(file, 'utf8');
const start = content.indexOf('/*---');
const end = content.indexOf('---*/');
if (start < 0 || end < 0) {
console.warn(`Missing YAML metadata: ${file}`);
return;
}
const yaml = jsYaml.safeLoad(content.slice(start + 5, end));
const shouldParse = !yaml.negative || yaml.negative.phase === 'runtime';
if (yaml.features) {
if (yaml.features.includes('hashbang')) return
if (yaml.features.includes('regexp-match-indices')) return
if (yaml.features.includes('regexp-named-groups')) return
if (yaml.features.includes('regexp-unicode-property-escapes')) return
}
if (yaml.flags) {
if (yaml.flags.includes('onlyStrict')) content = '"use strict";\n' + content
if (yaml.flags.includes('module')) content = 'export {};\n' + content
}
if (skipList.includes(path.relative(test262Dir, file).replace(/\\/g, '/'))) {
return
}
const result = await esbuildFile(content, { minify: false, sourcefile: file });
if (result.success !== shouldParse) {
if (!result.success) shouldHavePassed++;
else shouldHaveFailed++;
const text = result.success
? (yaml.description || '').trim()
: formatErrors(content, result.error);
console.log('\n' + `${file}\n${text}`.replace(/\n/g, '\n '));
}
else if (result.success) {
const result2 = await esbuildFile(result.output, { minify: false });
if (!result2.success) {
console.log(`\n!!! REPARSE ERROR: ${file} !!!`);
console.log(`${result2.error}`);
reparseCount++;
} else if (result2.output !== result.output) {
console.log(`\n!!! REPRINT ERROR: ${file} !!!`);
reprintCount++;
} else {
const result3 = await esbuildFile(result2.output, { minify: true });
if (!result3.success) {
throw new Error('This should have succeeded');
}
const result4 = await esbuildFile(result3.output, { minify: true });
if (!result4.success) {
console.log(`\n!!! MINIFY ERROR: ${file} !!!`);
console.log(`${result4.error}`);
minifyCount++;
}
}
}
else if (result.error.toString().includes('panic')) {
console.log(`\n!!! PANIC: ${file} !!!`);
console.log(`${result.error}\n${result.error.errors[0].location.lineText}`);
panicCount++;
}
runCount++;
}
// Process tests in parallel for speed
await new Promise((resolve, reject) => {
let inFlight = 0;
let i = 0;
function next() {
if (i === files.length && inFlight === 0) {
return resolve();
}
while (i < files.length && inFlight < 5) {
inFlight++;
processFile(files[i++]).then(() => {
inFlight--;
next();
}, reject);
}
}
next();
});
console.log(`tests ran: ${runCount}`);
console.log(` tests incorrectly failed: ${shouldHavePassed}`);
console.log(` tests incorrectly passed: ${shouldHaveFailed}`);
console.log(`tests skipped: ${files.length - runCount}`);
console.log(`reparse failures: ${reparseCount}`);
console.log(`reprint failures: ${reprintCount}`);
console.log(`minify failures: ${minifyCount}`);
console.log(`panics: ${panicCount}`);
}
main().catch(e => setTimeout(() => {
throw e
}));