aboutsummaryrefslogtreecommitdiff
path: root/test/js-native-api/test_instance_data/test.js
blob: 986f644fd226b915b0def49578f5ed1ec758f79e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
// Test API calls for instance data.

const common = require('../../common');
const assert = require('assert');

if (module.parent) {
  // When required as a module, run the tests.
  const test_instance_data =
    require(`./build/${common.buildType}/test_instance_data`);

  // Print to stdout when the environment deletes the instance data. This output
  // is checked by the parent process.
  test_instance_data.setPrintOnDelete();

  // Test that instance data can be accessed from a binding.
  assert.strictEqual(test_instance_data.increment(), 42);

  // Test that the instance data can be accessed from a finalizer.
  test_instance_data.objectWithFinalizer(common.mustCall());
  global.gc();
} 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'] };

  function checkOutput(child) {
    assert.strictEqual(child.status, 0);
    assert.strictEqual(
      (child.stdout.toString().split(/\r\n?|\n/) || [])[0],
      'deleting addon data');
  }

  // Run tests in a child process.
  checkOutput(requireAs(__filename, ['--expose-gc'], runOptions, 'child'));

  // Run tests in a worker thread in a child process.
  checkOutput(requireAs(__filename, ['--expose-gc'], runOptions, 'worker'));
}