mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
https://redirect.github.com/nodejs/node/pull/59856 had an typo/mistake in the skip conditions so that it is skipping when --use-openssl-ca or --openssl-system-ca-path (configure time) are NOT used, even though they should be skipped only when those ARE used (which is not the default for default builds). This change fixes that so that the perf numbers in that PR is true for the default build. PR-URL: https://github.com/nodejs/node/pull/60764 Reviewed-By: Aditi Singh <aditisingh1400@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
41 lines
1.0 KiB
JavaScript
41 lines
1.0 KiB
JavaScript
'use strict';
|
|
// This tests that when --use-openssl-ca is specified, no off-thread cert loading happens.
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto) {
|
|
common.skip('missing crypto');
|
|
}
|
|
const { spawnSyncAndAssert } = require('../common/child_process');
|
|
const fixtures = require('../common/fixtures');
|
|
const assert = require('assert');
|
|
|
|
spawnSyncAndAssert(
|
|
process.execPath,
|
|
[ '--use-openssl-ca', fixtures.path('list-certs.js') ],
|
|
{
|
|
env: {
|
|
...process.env,
|
|
NODE_DEBUG_NATIVE: 'crypto',
|
|
NODE_EXTRA_CA_CERTS: fixtures.path('keys', 'fake-startcom-root-cert.pem'),
|
|
CERTS_TYPE: 'default',
|
|
}
|
|
},
|
|
{
|
|
stderr(output) {
|
|
assert.doesNotMatch(
|
|
output,
|
|
/Started loading bundled root certificates off-thread/
|
|
);
|
|
assert.doesNotMatch(
|
|
output,
|
|
/Started loading extra root certificates off-thread/
|
|
);
|
|
assert.doesNotMatch(
|
|
output,
|
|
/Started loading system root certificates off-thread/
|
|
);
|
|
return true;
|
|
}
|
|
}
|
|
);
|