summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-module-reevaluate.js
blob: e547390e0cf84f9a46d513740120da1f8ade028b (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
'use strict';

// Flags: --experimental-vm-modules

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

const assert = require('assert');

const { SourceTextModule } = require('vm');

const finished = common.mustCall();

(async function main() {
  {
    globalThis.count = 0;
    const m = new SourceTextModule('count += 1;');
    await m.link(common.mustNotCall());
    assert.strictEqual(await m.evaluate(), undefined);
    assert.strictEqual(globalThis.count, 1);
    assert.strictEqual(await m.evaluate(), undefined);
    assert.strictEqual(globalThis.count, 1);
    assert.strictEqual(await m.evaluate(), undefined);
    assert.strictEqual(globalThis.count, 1);
    delete globalThis.count;
  }

  {
    const m = new SourceTextModule('throw new Error()');
    await m.link(common.mustNotCall());

    let threw = false;
    try {
      await m.evaluate();
    } catch (err) {
      assert(err instanceof Error);
      threw = true;
    }
    assert(threw);

    threw = false;
    try {
      await m.evaluate();
    } catch (err) {
      assert(err instanceof Error);
      threw = true;
    }
    assert(threw);
  }

  finished();
})().then(common.mustCall());