node/test/parallel/test-repl-autolibs.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

49 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();
var testMe = 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) + '\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, '{}\n');
// original value wasn't overwritten
assert.equal(val, global.url);
}
};
var val = {};
global.url = val;
assert(!gotWrite);
putIn.run(['url']);
assert(gotWrite);
}