mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 17:01:08 +00:00

Adds a new `../common/fixtures' module to begin normalizing `test/fixtures` use. Our test code is a bit inconsistent with regards to use of the fixtures directory. Some code uses `path.join()`, some code uses string concats, some other code uses template strings, etc. In mnay cases, significant duplication of code is seen when accessing fixture files, etc. This updates many (but by no means all) of the tests in the test suite to use the new consistent API. There are still many more to update, which would make an excelent Code-n-Learn exercise. PR-URL: https://github.com/nodejs/node/pull/14332 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
26 lines
649 B
JavaScript
26 lines
649 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const child_process = require('child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
|
|
const wrong_script = fixtures.path('cert.pem');
|
|
|
|
const p = child_process.spawn(process.execPath, [
|
|
'-e',
|
|
'require(process.argv[1]);',
|
|
wrong_script
|
|
]);
|
|
|
|
p.stdout.on('data', common.mustNotCall());
|
|
|
|
let output = '';
|
|
|
|
p.stderr.on('data', (data) => output += data);
|
|
|
|
p.stderr.on('end', common.mustCall(() => {
|
|
assert(/BEGIN CERT/.test(output));
|
|
assert(/^\s+\^/m.test(output));
|
|
assert(/Invalid left-hand side expression in prefix operation/.test(output));
|
|
}));
|