summaryrefslogtreecommitdiff
path: root/test/parallel/test-stdin-script-child.js
blob: 06adc9e113eda7fd5c8464725856bfa249cbe279 (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
'use strict';
const common = require('../common');
const assert = require('assert');

const { spawn } = require('child_process');
for (const args of [[], ['-']]) {
  const child = spawn(process.execPath, args, {
    env: Object.assign({}, process.env, {
      NODE_DEBUG: process.argv[2]
    })
  });
  const wanted = `${child.pid}\n`;
  let found = '';

  child.stdout.setEncoding('utf8');
  child.stdout.on('data', function(c) {
    found += c;
  });

  child.stderr.setEncoding('utf8');
  child.stderr.on('data', function(c) {
    console.error(`> ${c.trim().split('\n').join('\n> ')}`);
  });

  child.on('close', common.mustCall(function(c) {
    assert.strictEqual(c, 0);
    assert.strictEqual(found, wanted);
  }));

  setTimeout(function() {
    child.stdin.end('console.log(process.pid)');
  }, 1);
}