node/test/parallel/test-repl-autolibs.js
JungMinu fce4b981ea repl,util: insert carriage returns in output
`\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>
2016-08-13 23:03:30 +09:00

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);
}