Skip to content

Commit

Permalink
test,repl: add coverage for repl .clear+useGlobal
Browse files Browse the repository at this point in the history
Add a test to cover situation where REPL is initialized with `useGlobal`
set to `true` and `.clear` is called. This adds coverage for code in
repl.js that is not currently covered.

Includes minor refactor of rocket functions in repl.js for concision.

PR-URL: #10777
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and italoacasas committed Jan 27, 2017
1 parent 9f6d1f6 commit fc2db50
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
11 changes: 5 additions & 6 deletions lib/repl.js
Original file line number Diff line number Diff line change
Expand Up @@ -721,9 +721,7 @@ REPLServer.prototype.createContext = function() {

Object.defineProperty(context, '_', {
configurable: true,
get: () => {
return this.last;
},
get: () => this.last,
set: (value) => {
this.last = value;
if (!this.underscoreAssigned) {
Expand Down Expand Up @@ -1265,9 +1263,10 @@ function defineDefaultCommands(repl) {
help: 'Print this help message',
action: function() {
const names = Object.keys(this.commands).sort();
const longestNameLength = names.reduce((max, name) => {
return Math.max(max, name.length);
}, 0);
const longestNameLength = names.reduce(
(max, name) => Math.max(max, name.length),
0
);
names.forEach((name) => {
const cmd = this.commands[name];
const spaces = ' '.repeat(longestNameLength - name.length + 3);
Expand Down
27 changes: 25 additions & 2 deletions test/parallel/test-repl-underscore.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const stream = require('stream');
testSloppyMode();
testStrictMode();
testResetContext();
testResetContextGlobal();
testMagicMode();

function testSloppyMode() {
Expand Down Expand Up @@ -131,7 +132,28 @@ function testResetContext() {
]);
}

function initRepl(mode) {
function testResetContextGlobal() {
const r = initRepl(repl.REPL_MODE_STRICT, true);

r.write(`_ = 10; // explicitly set to 10
_; // 10 from user input
.clear // No output because useGlobal is true
_; // remains 10
`);

assertOutput(r.output, [
'Expression assignment to _ now disabled.',
'10',
'10',
'10',
]);

// delete globals leaked by REPL when `useGlobal` is `true`
delete global.module;
delete global.require;
}

function initRepl(mode, useGlobal) {
const inputStream = new stream.PassThrough();
const outputStream = new stream.PassThrough();
outputStream.accum = '';
Expand All @@ -146,7 +168,8 @@ function initRepl(mode) {
useColors: false,
terminal: false,
prompt: '',
replMode: mode
replMode: mode,
useGlobal: useGlobal
});
}

Expand Down

0 comments on commit fc2db50

Please sign in to comment.