summaryrefslogtreecommitdiff
path: root/test/parallel/test-repl-require-after-write.js
blob: 83c464473589e0ea441b48c1ed2658689ced94f3 (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
'use strict';

const common = require('../common');
const tmpdir = require('../common/tmpdir');
const assert = require('assert');
const spawn = require('child_process').spawn;
const path = require('path');

tmpdir.refresh();

const requirePath = JSON.stringify(path.join(tmpdir.path, 'non-existent.json'));

// Use -i to force node into interactive mode, despite stdout not being a TTY
const child = spawn(process.execPath, ['-i']);

let out = '';
const input = `try { require(${requirePath}); } catch {} ` +
              `require('fs').writeFileSync(${requirePath}, '1');` +
              `require(${requirePath});`;

child.stderr.on('data', common.mustNotCall());

child.stdout.setEncoding('utf8');
child.stdout.on('data', (c) => {
  out += c;
});
child.stdout.on('end', common.mustCall(() => {
  assert.ok(out.endsWith('> 1\n> '));
}));

child.stdin.end(input);