mirror of
https://github.com/zebrajr/node.git
synced 2025-12-06 12:20:27 +01:00
- Add the code cache tests to the default test suite, and test the bookkeeping when the binary is not built with the code cache. - Test the code cache generator to make sure we do not accidentally break it - until we enable code cache in the CI. Refs: https://github.com/nodejs/node/issues/21563 PR-URL: https://github.com/nodejs/node/pull/23855 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
// Flags: --expose-internals
|
|
// This test verifies that if the binary is compiled with code cache,
|
|
// and the cache is used when built in modules are compiled.
|
|
// Otherwise, verifies that no cache is used when compiling builtins.
|
|
|
|
require('../common');
|
|
const assert = require('assert');
|
|
const {
|
|
types: {
|
|
isUint8Array
|
|
}
|
|
} = require('util');
|
|
const {
|
|
cachableBuiltins,
|
|
codeCache,
|
|
compiledWithCache,
|
|
compiledWithoutCache
|
|
} = require('internal/bootstrap/cache');
|
|
|
|
const loadedModules = process.moduleLoadList
|
|
.filter((m) => m.startsWith('NativeModule'))
|
|
.map((m) => m.replace('NativeModule ', ''));
|
|
|
|
// The binary is not configured with code cache, verifies that the builtins
|
|
// are all compiled without cache and we are doing the bookkeeping right.
|
|
if (process.config.variables.node_code_cache_path === undefined) {
|
|
assert.deepStrictEqual(compiledWithCache, []);
|
|
assert.notStrictEqual(compiledWithoutCache.length, 0);
|
|
|
|
for (const key of loadedModules) {
|
|
assert(compiledWithoutCache.includes(key),
|
|
`"${key}" should not have been compiled with code cache`);
|
|
}
|
|
|
|
} else {
|
|
// The binary is configured with code cache.
|
|
assert.strictEqual(
|
|
typeof process.config.variables.node_code_cache_path,
|
|
'string'
|
|
);
|
|
assert.deepStrictEqual(compiledWithoutCache, []);
|
|
|
|
for (const key of loadedModules) {
|
|
assert(compiledWithCache.includes(key),
|
|
`"${key}" should've been compiled with code cache`);
|
|
}
|
|
|
|
for (const key of cachableBuiltins) {
|
|
assert(isUint8Array(codeCache[key]) && codeCache[key].length > 0,
|
|
`Code cache for "${key}" should've been generated`);
|
|
}
|
|
}
|