-
Notifications
You must be signed in to change notification settings - Fork 30.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: add
util.stripVTControlCharacters
test
- Loading branch information
1 parent
38f053c
commit e6efbd3
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
'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 | ||
['\u001B]0;sg@tota:~/git/\u0007\u001B[01;32m[sg@tota\u001B[01;37m misc-tests\u001B[01;32m]$', '[sg@tota misc-tests]$'] | ||
]; | ||
|
||
for (const ST of ['\u0007', '\u001B\u005C', '\u009C']) { | ||
tests.push( | ||
[`\u001B]8;;mailto:[email protected]${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); | ||
} | ||
}); |