node/test/parallel/test-repl-end-emits-exit.js
cjihrig 69c95bbdb7 test: move ArrayStream to common
A number of REPL tests define the same ArrayStream object. This
commit moves the repeated code into common.js.

PR-URL: https://github.com/nodejs/node/pull/4027
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
2015-12-05 16:31:20 +11:00

54 lines
1 KiB
JavaScript

'use strict';
var common = require('../common'),
assert = require('assert'),
repl = require('repl'),
terminalExit = 0,
regularExit = 0;
// Create a dummy stream that does nothing
const stream = new common.ArrayStream();
function testTerminalMode() {
var r1 = repl.start({
input: stream,
output: stream,
terminal: true
});
process.nextTick(function() {
// manually fire a ^D keypress
stream.emit('data', '\u0004');
});
r1.on('exit', function() {
// should be fired from the simulated ^D keypress
terminalExit++;
testRegularMode();
});
}
function testRegularMode() {
var r2 = repl.start({
input: stream,
output: stream,
terminal: false
});
process.nextTick(function() {
stream.emit('end');
});
r2.on('exit', function() {
// should be fired from the simulated 'end' event
regularExit++;
});
}
process.on('exit', function() {
assert.equal(terminalExit, 1);
assert.equal(regularExit, 1);
});
// start
testTerminalMode();