mirror of
https://github.com/nodejs/node.git
synced 2025-05-10 11:50:36 +00:00

Add capabilities to common test module to detect and skip tests on dumb terminals. In some of our build environments, like s390x, the terminal is a dumb terminal meaning it has very rudimentary capabilities. These in turn prevent some of the tests from completing with errors as below. not ok 1777 parallel/test-readline-tab-complete --- duration_ms: 0.365 severity: fail exitcode: 1 stack: |- assert.js:103 throw new AssertionError(obj); ^ AssertionError [ERR_ASSERTION]: Expected values to be strictly equal: '\t' !== '' at /home/abuild/rpmbuild/BUILD/node-git.8698dd98bb/test/parallel/test-readline-tab-complete.js:63:14 at Array.forEach (<anonymous>) at /home/abuild/rpmbuild/BUILD/node-git.8698dd98bb/test/parallel/test-readline-tab-complete.js:18:17 at Array.forEach (<anonymous>) at Object.<anonymous> (/home/abuild/rpmbuild/BUILD/node-git.8698dd98bb/test/parallel/test-readline-tab-complete.js:17:3) at Module._compile (internal/modules/cjs/loader.js:1176:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1196:10) at Module.load (internal/modules/cjs/loader.js:1040:32) at Function.Module._load (internal/modules/cjs/loader.js:929:14) at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12) { generatedMessage: true, code: 'ERR_ASSERTION', actual: '\t', expected: '', operator: 'strictEqual' } ... PR-URL: https://github.com/nodejs/node/pull/33165 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Anna Henningsen <anna@addaleax.net>
127 lines
2.9 KiB
JavaScript
127 lines
2.9 KiB
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const repl = require('repl');
|
|
const ArrayStream = require('../common/arraystream');
|
|
|
|
common.skipIfDumbTerminal();
|
|
|
|
// \u001b[nG - Moves the cursor to n st column
|
|
// \u001b[0J - Clear screen
|
|
// \u001b[0K - Clear to line end
|
|
const terminalCode = '\u001b[1G\u001b[0J> \u001b[3G';
|
|
const terminalCodeRegex = new RegExp(terminalCode.replace(/\[/g, '\\['), 'g');
|
|
|
|
function run({ input, output, event, checkTerminalCodes = true }) {
|
|
const stream = new ArrayStream();
|
|
let found = '';
|
|
|
|
stream.write = (msg) => found += msg.replace('\r', '');
|
|
|
|
let expected = `${terminalCode}.editor\n` +
|
|
'// Entering editor mode (^D to finish, ^C to cancel)\n' +
|
|
`${input}${output}\n${terminalCode}`;
|
|
|
|
const replServer = repl.start({
|
|
prompt: '> ',
|
|
terminal: true,
|
|
input: stream,
|
|
output: stream,
|
|
useColors: false
|
|
});
|
|
|
|
stream.emit('data', '.editor\n');
|
|
stream.emit('data', input);
|
|
replServer.write('', event);
|
|
replServer.close();
|
|
|
|
if (!checkTerminalCodes) {
|
|
found = found.replace(terminalCodeRegex, '').replace(/\n/g, '');
|
|
expected = expected.replace(terminalCodeRegex, '').replace(/\n/g, '');
|
|
}
|
|
|
|
assert.strictEqual(found, expected);
|
|
}
|
|
|
|
const tests = [
|
|
{
|
|
input: '',
|
|
output: '\n(To exit, press ^C again or ^D or type .exit)',
|
|
event: { ctrl: true, name: 'c' }
|
|
},
|
|
{
|
|
input: 'let i = 1;',
|
|
output: '',
|
|
event: { ctrl: true, name: 'c' }
|
|
},
|
|
{
|
|
input: 'let i = 1;\ni + 3',
|
|
output: '\n4',
|
|
event: { ctrl: true, name: 'd' }
|
|
},
|
|
{
|
|
input: ' let i = 1;\ni + 3',
|
|
output: '\n4',
|
|
event: { ctrl: true, name: 'd' }
|
|
},
|
|
{
|
|
input: '',
|
|
output: '',
|
|
checkTerminalCodes: false,
|
|
event: null,
|
|
}
|
|
];
|
|
|
|
tests.forEach(run);
|
|
|
|
// Auto code alignment for .editor mode
|
|
function testCodeAlignment({ input, cursor = 0, line = '' }) {
|
|
const stream = new ArrayStream();
|
|
const outputStream = new ArrayStream();
|
|
|
|
stream.write = () => { throw new Error('Writing not allowed!'); };
|
|
|
|
const replServer = repl.start({
|
|
prompt: '> ',
|
|
terminal: true,
|
|
input: stream,
|
|
output: outputStream,
|
|
useColors: false
|
|
});
|
|
|
|
stream.emit('data', '.editor\n');
|
|
input.split('').forEach((ch) => stream.emit('data', ch));
|
|
// Test the content of current line and the cursor position
|
|
assert.strictEqual(line, replServer.line);
|
|
assert.strictEqual(cursor, replServer.cursor);
|
|
|
|
replServer.write('', { ctrl: true, name: 'd' });
|
|
replServer.close();
|
|
// Ensure that empty lines are not saved in history
|
|
assert.notStrictEqual(replServer.history[0].trim(), '');
|
|
}
|
|
|
|
const codeAlignmentTests = [
|
|
{
|
|
input: 'let i = 1;\n'
|
|
},
|
|
{
|
|
input: ' let i = 1;\n',
|
|
cursor: 2,
|
|
line: ' '
|
|
},
|
|
{
|
|
input: ' let i = 1;\n',
|
|
cursor: 5,
|
|
line: ' '
|
|
},
|
|
{
|
|
input: ' let i = 1;\n let j = 2\n',
|
|
cursor: 2,
|
|
line: ' '
|
|
}
|
|
];
|
|
|
|
codeAlignmentTests.forEach(testCodeAlignment);
|