mirror of
https://github.com/nodejs/node.git
synced 2025-04-28 21:46:48 +00:00

`parallel/test-config-json-schema` compares to a generated fixture that assumes that Node.js was built with default configuration settings. Skip the test if non-default quic is enabled (`configure --with-quic`). Refs: https://github.com/nodejs/node/pull/57016 Refs: https://github.com/nodejs/node/pull/57142 PR-URL: https://github.com/nodejs/node/pull/57225 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
// Flags: --no-warnings --expose-internals
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
common.skipIfInspectorDisabled();
|
|
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
}
|
|
|
|
const { hasOpenSSL3 } = require('../common/crypto');
|
|
|
|
if (!hasOpenSSL3) {
|
|
common.skip('this test requires OpenSSL 3.x');
|
|
}
|
|
|
|
if (!common.hasIntl) {
|
|
// A handful of the tests fail when ICU is not included.
|
|
common.skip('missing Intl');
|
|
}
|
|
|
|
if (process.config.variables.node_quic) {
|
|
common.skip('this test assumes default configuration options');
|
|
}
|
|
|
|
const {
|
|
generateConfigJsonSchema,
|
|
} = require('internal/options');
|
|
const schemaInDoc = require('../../doc/node-config-schema.json');
|
|
const assert = require('assert');
|
|
|
|
const schema = generateConfigJsonSchema();
|
|
|
|
// This assertion ensures that whenever we add a new env option, we also add it
|
|
// to the JSON schema. The function getEnvOptionsInputType() returns all the available
|
|
// env options, so we can generate the JSON schema from it and compare it to the
|
|
// current JSON schema.
|
|
// To regenerate the JSON schema, run:
|
|
// out/Release/node --expose-internals tools/doc/generate-json-schema.mjs
|
|
// And then run make doc to update the out/doc/node-config-schema.json file.
|
|
assert.strictEqual(JSON.stringify(schema), JSON.stringify(schemaInDoc), 'JSON schema is outdated.' +
|
|
'Run `out/Release/node --expose-internals tools/doc/generate-json-schema.mjs` to update it.');
|