mirror of
https://github.com/nodejs/node.git
synced 2025-05-21 19:44:16 +00:00

`\n` is not enough for Linux with some custom stream add carriage returns to ensure that the output is displayed correctly using `\r\n` should not be a problem, even on non-Windows platforms. Fixes: https://github.com/nodejs/node/issues/7954 PR-URL: https://github.com/nodejs/node/pull/8028 Reviewed-By: Brian White <mscdex@mscdex.net> Reviewed-By: Anna Henningsen <anna@addaleax.net>
50 lines
1.1 KiB
JavaScript
50 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
var assert = require('assert');
|
|
var util = require('util');
|
|
var repl = require('repl');
|
|
|
|
// This test adds global variables
|
|
common.globalCheck = false;
|
|
|
|
const putIn = new common.ArrayStream();
|
|
repl.start('', putIn, null, true);
|
|
|
|
test1();
|
|
|
|
function test1() {
|
|
var gotWrite = false;
|
|
putIn.write = function(data) {
|
|
gotWrite = true;
|
|
if (data.length) {
|
|
|
|
// inspect output matches repl output
|
|
assert.equal(data, util.inspect(require('fs'), null, 2, false) + '\r\n');
|
|
// globally added lib matches required lib
|
|
assert.equal(global.fs, require('fs'));
|
|
test2();
|
|
}
|
|
};
|
|
assert(!gotWrite);
|
|
putIn.run(['fs']);
|
|
assert(gotWrite);
|
|
}
|
|
|
|
function test2() {
|
|
var gotWrite = false;
|
|
putIn.write = function(data) {
|
|
gotWrite = true;
|
|
if (data.length) {
|
|
// repl response error message
|
|
assert.equal(data, '{}\r\n');
|
|
// original value wasn't overwritten
|
|
assert.equal(val, global.url);
|
|
}
|
|
};
|
|
var val = {};
|
|
global.url = val;
|
|
assert(!gotWrite);
|
|
putIn.run(['url']);
|
|
assert(gotWrite);
|
|
}
|