Skip to content

Commit

Permalink
test: optionally validate disabled Node.js specs (#34899)
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Jul 19, 2022
1 parent 57b02e1 commit 38848c5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
6 changes: 2 additions & 4 deletions script/node-disabled-tests.json
Expand Up @@ -13,15 +13,14 @@
"parallel/test-crypto-des3-wrap",
"parallel/test-crypto-dh-stateless",
"parallel/test-crypto-ecb",
"parallel/test-crypto-engine",
"parallel/test-crypto-fips",
"parallel/test-crypto-keygen",
"parallel/test-crypto-keygen-deprecation",
"parallel/test-crypto-key-objects",
"parallel/test-crypto-padding-aes256",
"parallel/test-crypto-secure-heap",
"parallel/test-fs-utimes-y2K38",
"parallel/test-heapsnapshot-near-heap-limit-worker.js",
"parallel/test-heapsnapshot-near-heap-limit-worker",
"parallel/test-http2-clean-output",
"parallel/test-https-agent-session-reuse",
"parallel/test-https-options-boolean-check",
Expand Down Expand Up @@ -96,7 +95,6 @@
"parallel/test-trace-events-fs-sync",
"parallel/test-trace-events-metadata",
"parallel/test-trace-events-none",
"parallel/test-trace-events-perf",
"parallel/test-trace-events-process-exit",
"parallel/test-trace-events-promises",
"parallel/test-trace-events-v8",
Expand Down Expand Up @@ -125,7 +123,7 @@
"report/test-report-writereport",
"sequential/test-cpu-prof-kill",
"sequential/test-diagnostic-dir-cpu-prof",
"sequential/test-cpu-prof-drained.js",
"sequential/test-cpu-prof-drained",
"sequential/test-tls-connect",
"wpt/test-webcrypto"
]
21 changes: 18 additions & 3 deletions script/node-spec-runner.js
Expand Up @@ -3,7 +3,7 @@ const fs = require('fs');
const path = require('path');

const args = require('minimist')(process.argv.slice(2), {
boolean: ['default'],
boolean: ['default', 'validateDisabled'],
string: ['jUnitDir']
});

Expand Down Expand Up @@ -43,8 +43,7 @@ const getCustomOptions = () => {
customOptions = customOptions.concat(extra);
}

// We need this unilaterally or Node.js will try
// to run from out/Release/node.
// Necessary or Node.js will try to run from out/Release/node.
customOptions = customOptions.concat([
'--shell',
utils.getAbsoluteElectronExec()
Expand All @@ -54,6 +53,22 @@ const getCustomOptions = () => {
};

async function main () {
// Optionally validate that all disabled specs still exist.
if (args.validateDisabled) {
const missing = [];
for (const test of DISABLED_TESTS) {
const testName = test.endsWith('.js') ? test : `${test}.js`;
if (!fs.existsSync(path.join(NODE_DIR, 'test', testName))) {
missing.push(test);
}
}

if (missing.length > 0) {
console.error(`Found ${missing.length} missing disabled specs: \n${missing.join('\n')}`);
process.exit(1);
}
}

const options = args.default ? defaultOptions : getCustomOptions();

const testChild = cp.spawn('python3', options, {
Expand Down

0 comments on commit 38848c5

Please sign in to comment.