node/test/parallel/test-stdout-close-catch.js
Travis Bretton 4a08ac695c
test: cleanup test-stdout-close-catch.js
Added common.mustCall in child process on 'close' callback
Changed several 'var' statements to 'const' or 'let' where appropriate
Also linting

PR-URL: https://github.com/nodejs/node/pull/10006
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-12-16 22:08:31 +01:00

38 lines
900 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const path = require('path');
const child_process = require('child_process');
const testScript = path.join(common.fixturesDir, 'catch-stdout-error.js');
const cmd = JSON.stringify(process.execPath) + ' ' +
JSON.stringify(testScript) + ' | ' +
JSON.stringify(process.execPath) + ' ' +
'-pe "process.stdin.on(\'data\' , () => process.exit(1))"';
const child = child_process.exec(cmd);
let output = '';
const outputExpect = {
code: 'EPIPE',
errno: 'EPIPE',
syscall: 'write'
};
child.stderr.on('data', function(c) {
output += c;
});
child.on('close', common.mustCall(function(code) {
try {
output = JSON.parse(output);
} catch (er) {
console.error(output);
process.exit(1);
}
assert.deepStrictEqual(output, outputExpect);
console.log('ok');
}));