mirror of
https://github.com/nodejs/node.git
synced 2025-05-20 22:43:26 +00:00

Enable running tests inside workers by passing `--worker` to `tools/test.py`. A number of tests are marked as skipped, or have been slightly altered to fit the different environment. PR-URL: https://github.com/nodejs/node/pull/20876 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Shingo Inoue <leko.noor@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: John-David Dalton <john.david.dalton@gmail.com> Reviewed-By: Gus Caplan <me@gus.host>
66 lines
2.2 KiB
JavaScript
66 lines
2.2 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const cp = require('child_process');
|
|
const fs = require('fs');
|
|
|
|
if (!common.isMainThread)
|
|
common.skip('process.chdir is not available in Workers');
|
|
|
|
const CODE = `
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'custom',
|
|
'type-value', 10, 'extra-value', 20);
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'custom',
|
|
'type-value', 20, 'first-value', 20, 'second-value', 30);
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'custom',
|
|
'type-value', 30);
|
|
process.binding("trace_events").emit(
|
|
'b'.charCodeAt(0), 'missing',
|
|
'type-value', 10, 'extra-value', 20);
|
|
`;
|
|
const FILE_NAME = 'node_trace.1.log';
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
tmpdir.refresh();
|
|
process.chdir(tmpdir.path);
|
|
|
|
const proc = cp.spawn(process.execPath,
|
|
[ '--trace-event-categories', 'custom',
|
|
'-e', CODE ]);
|
|
|
|
proc.once('exit', common.mustCall(() => {
|
|
assert(common.fileExists(FILE_NAME));
|
|
fs.readFile(FILE_NAME, common.mustCall((err, data) => {
|
|
const traces = JSON.parse(data.toString()).traceEvents
|
|
.filter((trace) => trace.cat !== '__metadata');
|
|
assert.strictEqual(traces.length, 3);
|
|
|
|
assert.strictEqual(traces[0].pid, proc.pid);
|
|
assert.strictEqual(traces[0].ph, 'b');
|
|
assert.strictEqual(traces[0].cat, 'custom');
|
|
assert.strictEqual(traces[0].name, 'type-value');
|
|
assert.strictEqual(traces[0].id, '0xa');
|
|
assert.deepStrictEqual(traces[0].args, { 'extra-value': 20 });
|
|
|
|
assert.strictEqual(traces[1].pid, proc.pid);
|
|
assert.strictEqual(traces[1].ph, 'b');
|
|
assert.strictEqual(traces[1].cat, 'custom');
|
|
assert.strictEqual(traces[1].name, 'type-value');
|
|
assert.strictEqual(traces[1].id, '0x14');
|
|
assert.deepStrictEqual(traces[1].args, {
|
|
'first-value': 20,
|
|
'second-value': 30
|
|
});
|
|
|
|
assert.strictEqual(traces[2].pid, proc.pid);
|
|
assert.strictEqual(traces[2].ph, 'b');
|
|
assert.strictEqual(traces[2].cat, 'custom');
|
|
assert.strictEqual(traces[2].name, 'type-value');
|
|
assert.strictEqual(traces[2].id, '0x1e');
|
|
assert.deepStrictEqual(traces[2].args, { });
|
|
}));
|
|
}));
|