forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-child-process-stdio-big-write-end.js
59 lines (51 loc) · 1.16 KB
/
test-child-process-stdio-big-write-end.js
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
'use strict';
require('../common');
var assert = require('assert');
var BUFSIZE = 1024;
switch (process.argv[2]) {
case undefined:
return parent();
case 'child':
return child();
default:
throw new Error('wtf?');
}
function parent() {
var spawn = require('child_process').spawn;
var child = spawn(process.execPath, [__filename, 'child']);
var sent = 0;
var n = '';
child.stdout.setEncoding('ascii');
child.stdout.on('data', function(c) {
n += c;
});
child.stdout.on('end', function() {
assert.equal(+n, sent);
console.log('ok');
});
// Write until the buffer fills up.
do {
var buf = new Buffer(BUFSIZE);
buf.fill('.');
sent += BUFSIZE;
} while (child.stdin.write(buf));
// then write a bunch more times.
for (var i = 0; i < 100; i++) {
var buf = new Buffer(BUFSIZE);
buf.fill('.');
sent += BUFSIZE;
child.stdin.write(buf);
}
// now end, before it's all flushed.
child.stdin.end();
// now we wait...
}
function child() {
var received = 0;
process.stdin.on('data', function(c) {
received += c.length;
});
process.stdin.on('end', function() {
console.log(received);
});
}