mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
941635473d
PR-URL: https://github.com/nodejs/node/pull/54865 Refs: https://github.com/chalk/ansi-regex/pull/58 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: James M Snell <jasnell@gmail.com>
29 lines
965 B
JavaScript
29 lines
965 B
JavaScript
'use strict';
|
|
|
|
require('../common');
|
|
const util = require('util');
|
|
const { test } = require('node:test');
|
|
|
|
// Ref: https://github.com/chalk/ansi-regex/blob/main/test.js
|
|
const tests = [
|
|
// [before, expected]
|
|
['\u001B[0m\u001B[4m\u001B[42m\u001B[31mfoo\u001B[39m\u001B[49m\u001B[24mfoo\u001B[0m', 'foofoo'], // Basic ANSI
|
|
['\u001B[0;33;49;3;9;4mbar\u001B[0m', 'bar'], // Advanced colors
|
|
['foo\u001B[0gbar', 'foobar'], // Clear tabs
|
|
['foo\u001B[Kbar', 'foobar'], // Clear line
|
|
['foo\u001B[2Jbar', 'foobar'], // Clear screen
|
|
];
|
|
|
|
for (const ST of ['\u0007', '\u001B\u005C', '\u009C']) {
|
|
tests.push(
|
|
[`\u001B]8;;mailto:no-replay@mail.com${ST}mail\u001B]8;;${ST}`, 'mail'],
|
|
[`\u001B]8;k=v;https://example-a.com/?a_b=1&c=2#tit%20le${ST}click\u001B]8;;${ST}`, 'click'],
|
|
);
|
|
}
|
|
|
|
test('util.stripVTControlCharacters', (t) => {
|
|
for (const [before, expected] of tests) {
|
|
t.assert.strictEqual(util.stripVTControlCharacters(before), expected);
|
|
}
|
|
});
|