forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwpt.js
More file actions
455 lines (403 loc) · 11.4 KB
/
wpt.js
File metadata and controls
455 lines (403 loc) · 11.4 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/* eslint-disable node-core/required-modules */
'use strict';
const assert = require('assert');
const common = require('../common');
const fixtures = require('../common/fixtures');
const fs = require('fs');
const fsPromises = fs.promises;
const path = require('path');
const vm = require('vm');
// https://github.com/w3c/testharness.js/blob/master/testharness.js
// TODO: get rid of this half-baked harness in favor of the one
// pulled from WPT
const harnessMock = {
test: (fn, desc) => {
try {
fn();
} catch (err) {
console.error(`In ${desc}:`);
throw err;
}
},
assert_equals: assert.strictEqual,
assert_true: (value, message) => assert.strictEqual(value, true, message),
assert_false: (value, message) => assert.strictEqual(value, false, message),
assert_throws: (code, func, desc) => {
assert.throws(func, function(err) {
return typeof err === 'object' &&
'name' in err &&
err.name.startsWith(code.name);
}, desc);
},
assert_array_equals: assert.deepStrictEqual,
assert_unreached(desc) {
assert.fail(`Reached unreachable code: ${desc}`);
}
};
class ResourceLoader {
constructor(path) {
this.path = path;
}
fetch(url, asPromise = true) {
// We need to patch this to load the WebIDL parser
url = url.replace(
'/resources/WebIDLParser.js',
'/resources/webidl2/lib/webidl2.js'
);
const file = url.startsWith('/') ?
fixtures.path('wpt', url) :
fixtures.path('wpt', this.path, url);
if (asPromise) {
return fsPromises.readFile(file)
.then((data) => {
return {
ok: true,
json() { return JSON.parse(data.toString()); },
text() { return data.toString(); }
};
});
} else {
return fs.readFileSync(file, 'utf8');
}
}
}
class WPTTest {
/**
* @param {string} mod
* @param {string} filename
* @param {string[]} requires
* @param {string | undefined} failReason
* @param {string | undefined} skipReason
*/
constructor(mod, filename, requires, failReason, skipReason) {
this.module = mod; // name of the WPT module, e.g. 'url'
this.filename = filename; // name of the test file
this.requires = requires;
this.failReason = failReason;
this.skipReason = skipReason;
}
getAbsolutePath() {
return fixtures.path('wpt', this.module, this.filename);
}
getContent() {
return fs.readFileSync(this.getAbsolutePath(), 'utf8');
}
shouldSkip() {
return this.failReason || this.skipReason;
}
requireIntl() {
return this.requires.includes('intl');
}
}
class StatusLoader {
constructor(path) {
this.path = path;
this.loaded = false;
this.status = null;
/** @type {WPTTest[]} */
this.tests = [];
}
loadTest(file) {
let requires = [];
let failReason;
let skipReason;
if (this.status[file]) {
requires = this.status[file].requires || [];
failReason = this.status[file].fail;
skipReason = this.status[file].skip;
}
return new WPTTest(this.path, file, requires,
failReason, skipReason);
}
load() {
const dir = path.join(__dirname, '..', 'wpt');
const statusFile = path.join(dir, 'status', `${this.path}.json`);
const result = JSON.parse(fs.readFileSync(statusFile, 'utf8'));
this.status = result;
const list = fs.readdirSync(fixtures.path('wpt', this.path));
for (const file of list) {
this.tests.push(this.loadTest(file));
}
this.loaded = true;
}
get jsTests() {
return this.tests.filter((test) => test.filename.endsWith('.js'));
}
}
const PASSED = 1;
const FAILED = 2;
const SKIPPED = 3;
class WPTRunner {
constructor(path) {
this.path = path;
this.resource = new ResourceLoader(path);
this.sandbox = null;
this.context = null;
this.globals = new Map();
this.status = new StatusLoader(path);
this.status.load();
this.tests = new Map(
this.status.jsTests.map((item) => [item.filename, item])
);
this.results = new Map();
this.inProgress = new Set();
}
/**
* Specify that certain global descriptors from the object
* should be defined in the vm
* @param {object} obj
* @param {string[]} names
*/
copyGlobalsFromObject(obj, names) {
for (const name of names) {
const desc = Object.getOwnPropertyDescriptor(global, name);
this.globals.set(name, desc);
}
}
/**
* Specify that certain global descriptors should be defined in the vm
* @param {string} name
* @param {object} descriptor
*/
defineGlobal(name, descriptor) {
this.globals.set(name, descriptor);
}
// TODO(joyeecheung): work with the upstream to port more tests in .html
// to .js.
runJsTests() {
// TODO(joyeecheung): it's still under discussion whether we should leave
// err.name alone. See https://github.com/nodejs/node/issues/20253
const internalErrors = require('internal/errors');
internalErrors.useOriginalName = true;
let queue = [];
// If the tests are run as `node test/wpt/test-something.js subset.any.js`,
// only `subset.any.js` will be run by the runner.
if (process.argv[2]) {
const filename = process.argv[2];
if (!this.tests.has(filename)) {
throw new Error(`${filename} not found!`);
}
queue.push(this.tests.get(filename));
} else {
queue = this.buildQueue();
}
this.inProgress = new Set(queue.map((item) => item.filename));
for (const test of queue) {
const filename = test.filename;
const content = test.getContent();
const meta = test.title = this.getMeta(content);
const absolutePath = test.getAbsolutePath();
const context = this.generateContext(test.filename);
const code = this.mergeScripts(meta, content);
try {
vm.runInContext(code, context, {
filename: absolutePath
});
} catch (err) {
this.fail(filename, {
name: '',
message: err.message,
stack: err.stack
}, 'UNCAUGHT');
this.inProgress.delete(filename);
}
}
this.tryFinish();
}
mock() {
const resource = this.resource;
const result = {
// This is a mock, because at the moment fetch is not implemented
// in Node.js, but some tests and harness depend on this to pull
// resources.
fetch(file) {
return resource.fetch(file);
},
location: {},
GLOBAL: {
isWindow() { return false; }
},
Object
};
return result;
}
// Note: this is how our global space for the WPT test should look like
getSandbox() {
const result = this.mock();
for (const [name, desc] of this.globals) {
Object.defineProperty(result, name, desc);
}
return result;
}
generateContext(filename) {
const sandbox = this.sandbox = this.getSandbox();
const context = this.context = vm.createContext(sandbox);
const harnessPath = fixtures.path('wpt', 'resources', 'testharness.js');
const harness = fs.readFileSync(harnessPath, 'utf8');
vm.runInContext(harness, context, {
filename: harnessPath
});
sandbox.add_result_callback(
this.resultCallback.bind(this, filename)
);
sandbox.add_completion_callback(
this.completionCallback.bind(this, filename)
);
sandbox.self = sandbox;
// TODO(joyeecheung): we are not a window - work with the upstream to
// add a new scope for us.
sandbox.document = {}; // Pretend we are Window
return context;
}
resultCallback(filename, test) {
switch (test.status) {
case 1:
this.fail(filename, test, 'FAILURE');
break;
case 2:
this.fail(filename, test, 'TIMEOUT');
break;
case 3:
this.fail(filename, test, 'INCOMPLETE');
break;
default:
this.succeed(filename, test);
}
}
completionCallback(filename, tests, harnessStatus) {
if (harnessStatus.status === 2) {
assert.fail(`test harness timed out in ${filename}`);
}
this.inProgress.delete(filename);
this.tryFinish();
}
tryFinish() {
if (this.inProgress.size > 0) {
return;
}
this.reportResults();
}
reportResults() {
const unexpectedFailures = [];
for (const [filename, items] of this.results) {
const test = this.tests.get(filename);
let title = test.meta && test.meta.title;
title = title ? `${filename} : ${title}` : filename;
console.log(`---- ${title} ----`);
for (const item of items) {
switch (item.type) {
case FAILED: {
if (test.failReason) {
console.log(`[EXPECTED_FAILURE] ${item.test.name}`);
} else {
console.log(`[UNEXPECTED_FAILURE] ${item.test.name}`);
unexpectedFailures.push([title, filename, item]);
}
break;
}
case PASSED: {
console.log(`[PASSED] ${item.test.name}`);
break;
}
case SKIPPED: {
console.log(`[SKIPPED] ${item.reason}`);
break;
}
}
}
}
if (unexpectedFailures.length > 0) {
for (const [title, filename, item] of unexpectedFailures) {
console.log(`---- ${title} ----`);
console.log(`[${item.reason}] ${item.test.name}`);
console.log(item.test.message);
console.log(item.test.stack);
const command = `${process.execPath} ${process.execArgv}` +
` ${require.main.filename} ${filename}`;
console.log(`Command: ${command}\n`);
}
assert.fail(`${unexpectedFailures.length} unexpected failures found`);
}
}
addResult(filename, item) {
const result = this.results.get(filename);
if (result) {
result.push(item);
} else {
this.results.set(filename, [item]);
}
}
succeed(filename, test) {
this.addResult(filename, {
type: PASSED,
test
});
}
fail(filename, test, reason) {
this.addResult(filename, {
type: FAILED,
test,
reason
});
}
skip(filename, reason) {
this.addResult(filename, {
type: SKIPPED,
reason
});
}
getMeta(code) {
const matches = code.match(/\/\/ META: .+/g);
if (!matches) {
return {};
} else {
const result = {};
for (const match of matches) {
const parts = match.match(/\/\/ META: ([^=]+?)=(.+)/);
const key = parts[1];
const value = parts[2];
if (key === 'script') {
if (result[key]) {
result[key].push(value);
} else {
result[key] = [value];
}
} else {
result[key] = value;
}
}
return result;
}
}
mergeScripts(meta, content) {
if (!meta.script) {
return content;
}
// only one script
let result = '';
for (const script of meta.script) {
result += this.resource.fetch(script, false);
}
return result + content;
}
buildQueue() {
const queue = [];
for (const test of this.tests.values()) {
const filename = test.filename;
if (test.skipReason) {
this.skip(filename, test.skipReason);
continue;
}
if (!common.hasIntl && test.requireIntl()) {
this.skip(filename, 'missing Intl');
continue;
}
queue.push(test);
}
return queue;
}
}
module.exports = {
harness: harnessMock,
WPTRunner
};