mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

Replaced var keyword with const and let in the tests for child process stdin and stdio. PR-URL: https://github.com/nodejs/node/pull/8617 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
42 lines
914 B
JavaScript
42 lines
914 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const spawn = require('child_process').spawn;
|
|
|
|
const cat = spawn(common.isWindows ? 'more' : 'cat');
|
|
cat.stdin.write('hello');
|
|
cat.stdin.write(' ');
|
|
cat.stdin.write('world');
|
|
|
|
assert.ok(cat.stdin.writable);
|
|
assert.ok(!cat.stdin.readable);
|
|
|
|
cat.stdin.end();
|
|
|
|
let response = '';
|
|
|
|
cat.stdout.setEncoding('utf8');
|
|
cat.stdout.on('data', function(chunk) {
|
|
console.log('stdout: ' + chunk);
|
|
response += chunk;
|
|
});
|
|
|
|
cat.stdout.on('end', common.mustCall(function() {}));
|
|
|
|
cat.stderr.on('data', common.fail);
|
|
|
|
cat.stderr.on('end', common.mustCall(function() {}));
|
|
|
|
cat.on('exit', common.mustCall(function(status) {
|
|
assert.strictEqual(0, status);
|
|
}));
|
|
|
|
cat.on('close', common.mustCall(function() {
|
|
if (common.isWindows) {
|
|
assert.equal('hello world\r\n', response);
|
|
} else {
|
|
assert.equal('hello world', response);
|
|
}
|
|
}));
|