mirror of
https://github.com/nodejs/node.git
synced 2025-05-03 02:06:12 +00:00

ESLint 4.x has stricter linting than previous versions. We are currently using the legacy indentation rules in the test directory. This commit changes the indentation of files to comply with the stricter 4.x linting and enable stricter linting in the test directory. PR-URL: https://github.com/nodejs/node/pull/14431 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
73 lines
1.7 KiB
JavaScript
73 lines
1.7 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const Stream = require('stream');
|
|
const repl = require('repl');
|
|
|
|
common.globalCheck = false;
|
|
|
|
const tests = [
|
|
testSloppyMode,
|
|
testStrictMode,
|
|
testAutoMode
|
|
];
|
|
|
|
tests.forEach(function(test) {
|
|
test();
|
|
});
|
|
|
|
function testSloppyMode() {
|
|
const cli = initRepl(repl.REPL_MODE_SLOPPY);
|
|
|
|
cli.input.emit('data', 'x = 3\n');
|
|
assert.strictEqual(cli.output.accumulator.join(''), '> 3\n> ');
|
|
cli.output.accumulator.length = 0;
|
|
|
|
cli.input.emit('data', 'let y = 3\n');
|
|
assert.strictEqual(cli.output.accumulator.join(''), 'undefined\n> ');
|
|
}
|
|
|
|
function testStrictMode() {
|
|
const cli = initRepl(repl.REPL_MODE_STRICT);
|
|
|
|
cli.input.emit('data', 'x = 3\n');
|
|
assert.ok(/ReferenceError: x is not defined/.test(
|
|
cli.output.accumulator.join('')));
|
|
cli.output.accumulator.length = 0;
|
|
|
|
cli.input.emit('data', 'let y = 3\n');
|
|
assert.strictEqual(cli.output.accumulator.join(''), 'undefined\n> ');
|
|
}
|
|
|
|
function testAutoMode() {
|
|
const cli = initRepl(repl.REPL_MODE_MAGIC);
|
|
|
|
cli.input.emit('data', 'x = 3\n');
|
|
assert.strictEqual(cli.output.accumulator.join(''), '> 3\n> ');
|
|
cli.output.accumulator.length = 0;
|
|
|
|
cli.input.emit('data', 'let y = 3\n');
|
|
assert.strictEqual(cli.output.accumulator.join(''), 'undefined\n> ');
|
|
}
|
|
|
|
function initRepl(mode) {
|
|
const input = new Stream();
|
|
input.write = input.pause = input.resume = () => {};
|
|
input.readable = true;
|
|
|
|
const output = new Stream();
|
|
output.write = output.pause = output.resume = function(buf) {
|
|
output.accumulator.push(buf);
|
|
};
|
|
output.accumulator = [];
|
|
output.writable = true;
|
|
|
|
return repl.start({
|
|
input: input,
|
|
output: output,
|
|
useColors: false,
|
|
terminal: false,
|
|
replMode: mode
|
|
});
|
|
}
|