summaryrefslogtreecommitdiff
path: root/test/parallel/test-snapshot-weak-reference.js
blob: 6de072290da25743b037ada3668de1a0b501f975 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
'use strict';

// This tests that weak references work across serialization.

require('../common');
const assert = require('assert');
const { spawnSync } = require('child_process');
const tmpdir = require('../common/tmpdir');
const fixtures = require('../common/fixtures');
const path = require('path');
const fs = require('fs');

tmpdir.refresh();
const blobPath = path.join(tmpdir.path, 'snapshot.blob');

function runTest(entry) {
  console.log('running test with', entry);
  {
    const child = spawnSync(process.execPath, [
      '--expose-internals',
      '--expose-gc',
      '--snapshot-blob',
      blobPath,
      '--build-snapshot',
      entry,
    ], {
      cwd: tmpdir.path
    });
    if (child.status !== 0) {
      console.log(child.stderr.toString());
      console.log(child.stdout.toString());
      assert.strictEqual(child.status, 0);
    }
    const stats = fs.statSync(path.join(tmpdir.path, 'snapshot.blob'));
    assert(stats.isFile());
  }

  {
    const child = spawnSync(process.execPath, [
      '--expose-internals',
      '--expose-gc',
      '--snapshot-blob',
      blobPath,
    ], {
      cwd: tmpdir.path,
      env: {
        ...process.env,
      }
    });

    const stdout = child.stdout.toString().trim();
    const stderr = child.stderr.toString().trim();
    console.log(`[stdout]:\n${stdout}\n`);
    console.log(`[stderr]:\n${stderr}\n`);
    assert.strictEqual(child.status, 0);
  }
}

runTest(fixtures.path('snapshot', 'weak-reference.js'));
runTest(fixtures.path('snapshot', 'weak-reference-gc.js'));