summaryrefslogtreecommitdiff
path: root/test/pummel/test-child-process-spawn-loop.js
blob: d619151347ecfa5583be07762a4ab5fddec4c537 (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
var common = require('../common');
var assert = require('assert');

var spawn = require('child_process').spawn;

var SIZE = 1000 * 1024;
var N = 40;
var finished = false;

function doSpawn(i) {
  var child = spawn('python', ['-c', 'print ' + SIZE + ' * "C"']);
  var count = 0;

  child.stdout.setEncoding('ascii');
  child.stdout.addListener('data', function(chunk) {
    count += chunk.length;
  });

  child.stderr.addListener('data', function(chunk) {
    console.log('stderr: ' + chunk);
  });

  child.addListener('exit', function() {
    assert.equal(SIZE + 1, count); // + 1 for \n
    if (i < N) {
      doSpawn(i + 1);
    } else {
      finished = true;
    }
  });
}

doSpawn(0);

process.addListener('exit', function() {
  assert.ok(finished);
});