mirror of
https://github.com/nodejs/node.git
synced 2025-05-02 03:31:35 +00:00

Adds `napi_set_instance_data()` and `napi_get_instance_data()`, which allow native addons to store their data on and retrieve their data from `napi_env`. `napi_set_instance_data()` accepts a finalizer which is called when the `node::Environment()` is destroyed. This entails rendering the `napi_env` local to each add-on. Fixes: https://github.com/nodejs/abi-stable-node/issues/378 PR-URL: https://github.com/nodejs/node/pull/28682 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
'use strict';
|
|
// Test API calls for instance data.
|
|
|
|
const common = require('../../common');
|
|
|
|
if (module.parent) {
|
|
// When required as a module, run the tests.
|
|
const test_instance_data =
|
|
require(`./build/${common.buildType}/test_instance_data`);
|
|
|
|
// Test that instance data can be used in an async work callback.
|
|
new Promise((resolve) => test_instance_data.asyncWorkCallback(resolve))
|
|
|
|
// Test that the buffer finalizer can access the instance data.
|
|
.then(() => new Promise((resolve) => {
|
|
test_instance_data.testBufferFinalizer(resolve);
|
|
global.gc();
|
|
}))
|
|
|
|
// Test that the thread-safe function can access the instance data.
|
|
.then(() => new Promise((resolve) =>
|
|
test_instance_data.testThreadsafeFunction(common.mustCall(),
|
|
common.mustCall(resolve))));
|
|
} else {
|
|
// When launched as a script, run tests in either a child process or in a
|
|
// worker thread.
|
|
const requireAs = require('../../common/require-as');
|
|
const runOptions = { stdio: ['inherit', 'pipe', 'inherit'] };
|
|
|
|
// Run tests in a child process.
|
|
requireAs(__filename, ['--expose-gc'], runOptions, 'child');
|
|
|
|
// Run tests in a worker thread in a child process.
|
|
requireAs(__filename, ['--expose-gc'], runOptions, 'worker');
|
|
}
|