summaryrefslogtreecommitdiff
path: root/test/embedding/test-embedding.js
blob: 9dfaad6c2ab27f45b32cbee5a87c9d3686f96806 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
'use strict';
const common = require('../common');
const fixtures = require('../common/fixtures');
const tmpdir = require('../common/tmpdir');
const assert = require('assert');
const child_process = require('child_process');
const path = require('path');
const fs = require('fs');

tmpdir.refresh();
common.allowGlobals(global.require);
common.allowGlobals(global.embedVars);

function resolveBuiltBinary(bin) {
  let binary = `out/${common.buildType}/${bin}`;
  if (common.isWindows) {
    binary += '.exe';
  }
  return path.resolve(__dirname, '..', '..', binary);
}

const binary = resolveBuiltBinary('embedtest');

assert.strictEqual(
  child_process.spawnSync(binary, ['console.log(42)'])
    .stdout.toString().trim(),
  '42');

assert.strictEqual(
  child_process.spawnSync(binary, ['console.log(embedVars.nön_ascıı)'])
    .stdout.toString().trim(),
  '🏳️‍🌈');

assert.strictEqual(
  child_process.spawnSync(binary, ['console.log(42)'])
    .stdout.toString().trim(),
  '42');

assert.strictEqual(
  child_process.spawnSync(binary, ['throw new Error()']).status,
  1);

// Cannot require internals anymore:
assert.strictEqual(
  child_process.spawnSync(binary, ['require("lib/internal/test/binding")']).status,
  1);

assert.strictEqual(
  child_process.spawnSync(binary, ['process.exitCode = 8']).status,
  8);


const fixturePath = JSON.stringify(fixtures.path('exit.js'));
assert.strictEqual(
  child_process.spawnSync(binary, [`require(${fixturePath})`, 92]).status,
  92);

function getReadFileCodeForPath(path) {
  return `(require("fs").readFileSync(${JSON.stringify(path)}, "utf8"))`;
}

// Basic snapshot support
for (const extraSnapshotArgs of [[], ['--embedder-snapshot-as-file']]) {
  // readSync + eval since snapshots don't support userland require() (yet)
  const snapshotFixture = fixtures.path('snapshot', 'echo-args.js');
  const blobPath = path.join(tmpdir.path, 'embedder-snapshot.blob');
  const buildSnapshotArgs = [
    `eval(${getReadFileCodeForPath(snapshotFixture)})`, 'arg1', 'arg2',
    '--embedder-snapshot-blob', blobPath, '--embedder-snapshot-create',
    ...extraSnapshotArgs,
  ];
  const runEmbeddedArgs = [
    '--embedder-snapshot-blob', blobPath, ...extraSnapshotArgs, 'arg3', 'arg4',
  ];

  fs.rmSync(blobPath, { force: true });
  assert.strictEqual(child_process.spawnSync(binary, [
    '--', ...buildSnapshotArgs,
  ], {
    cwd: tmpdir.path,
  }).status, 0);
  const spawnResult = child_process.spawnSync(binary, ['--', ...runEmbeddedArgs]);
  assert.deepStrictEqual(JSON.parse(spawnResult.stdout), {
    originalArgv: [binary, ...buildSnapshotArgs],
    currentArgv: [binary, ...runEmbeddedArgs],
  });
}

// Create workers and vm contexts after deserialization
{
  const snapshotFixture = fixtures.path('snapshot', 'create-worker-and-vm.js');
  const blobPath = path.join(tmpdir.path, 'embedder-snapshot.blob');
  const buildSnapshotArgs = [
    `eval(${getReadFileCodeForPath(snapshotFixture)})`,
    '--embedder-snapshot-blob', blobPath, '--embedder-snapshot-create',
  ];

  fs.rmSync(blobPath, { force: true });
  assert.strictEqual(child_process.spawnSync(binary, [
    '--', ...buildSnapshotArgs,
  ], {
    cwd: tmpdir.path,
  }).status, 0);
  assert.strictEqual(
    child_process.spawnSync(binary, ['--', '--embedder-snapshot-blob', blobPath]).status,
    0);
}