diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-02-10 13:22:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-10 20:22:13 +0000 |
commit | f5e46c9bf2f50d66a953fa133161fc829cecff06 (patch) | |
tree | 8faf2f5831c1c7b11d842cd9908d141082c869a5 /cli/tests/node_compat/test/parallel/test-readline.js | |
parent | d2477f780630a812bfd65e3987b70c0d309385bb (diff) |
chore: move cli/tests/ -> tests/ (#22369)
This looks like a massive PR, but it's only a move from cli/tests ->
tests, and updates of relative paths for files.
This is the first step towards aggregate all of the integration test
files under tests/, which will lead to a set of integration tests that
can run without the CLI binary being built.
While we could leave these tests under `cli`, it would require us to
keep a more complex directory structure for the various test runners. In
addition, we have a lot of complexity to ignore various test files in
the `cli` project itself (cargo publish exclusion rules, autotests =
false, etc).
And finally, the `tests/` folder will eventually house the `test_ffi`,
`test_napi` and other testing code, reducing the size of the root repo
directory.
For easier review, the extremely large and noisy "move" is in the first
commit (with no changes -- just a move), while the remainder of the
changes to actual files is in the second commit.
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-readline.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-readline.js | 158 |
1 files changed, 0 insertions, 158 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-readline.js b/cli/tests/node_compat/test/parallel/test-readline.js deleted file mode 100644 index 15f1b4f0c..000000000 --- a/cli/tests/node_compat/test/parallel/test-readline.js +++ /dev/null @@ -1,158 +0,0 @@ -// deno-fmt-ignore-file -// deno-lint-ignore-file - -// Copyright Joyent and Node contributors. All rights reserved. MIT license. -// Taken from Node 18.12.1 -// This file is automatically generated by `tools/node_compat/setup.ts`. Do not modify this file manually. - -'use strict'; -const common = require('../common'); -const { PassThrough } = require('stream'); -const readline = require('readline'); -const assert = require('assert'); - -common.skipIfDumbTerminal(); - -{ - const input = new PassThrough(); - const rl = readline.createInterface({ - terminal: true, - input: input - }); - - rl.on('line', common.mustCall((data) => { - assert.strictEqual(data, 'abc'); - })); - - input.end('abc'); -} - -{ - const input = new PassThrough(); - const rl = readline.createInterface({ - terminal: true, - input: input - }); - - rl.on('line', common.mustNotCall('must not be called before newline')); - - input.write('abc'); -} - -{ - const input = new PassThrough(); - const rl = readline.createInterface({ - terminal: true, - input: input - }); - - rl.on('line', common.mustCall((data) => { - assert.strictEqual(data, 'abc'); - })); - - input.write('abc\n'); -} - -{ - const input = new PassThrough(); - const rl = readline.createInterface({ - terminal: true, - input: input - }); - - rl.write('foo'); - assert.strictEqual(rl.cursor, 3); - - const key = { - xterm: { - home: ['\x1b[H', { ctrl: true, name: 'a' }], - end: ['\x1b[F', { ctrl: true, name: 'e' }], - }, - gnome: { - home: ['\x1bOH', { ctrl: true, name: 'a' }], - end: ['\x1bOF', { ctrl: true, name: 'e' }] - }, - rxvt: { - home: ['\x1b[7', { ctrl: true, name: 'a' }], - end: ['\x1b[8', { ctrl: true, name: 'e' }] - }, - putty: { - home: ['\x1b[1~', { ctrl: true, name: 'a' }], - end: ['\x1b[>~', { ctrl: true, name: 'e' }] - } - }; - - [key.xterm, key.gnome, key.rxvt, key.putty].forEach(function(key) { - rl.write.apply(rl, key.home); - assert.strictEqual(rl.cursor, 0); - rl.write.apply(rl, key.end); - assert.strictEqual(rl.cursor, 3); - }); - -} - -{ - const input = new PassThrough(); - const rl = readline.createInterface({ - terminal: true, - input: input - }); - - const key = { - xterm: { - home: ['\x1b[H', { ctrl: true, name: 'a' }], - metab: ['\x1bb', { meta: true, name: 'b' }], - metaf: ['\x1bf', { meta: true, name: 'f' }], - } - }; - - rl.write('foo bar.hop/zoo'); - rl.write.apply(rl, key.xterm.home); - [ - { cursor: 4, key: key.xterm.metaf }, - { cursor: 7, key: key.xterm.metaf }, - { cursor: 8, key: key.xterm.metaf }, - { cursor: 11, key: key.xterm.metaf }, - { cursor: 12, key: key.xterm.metaf }, - { cursor: 15, key: key.xterm.metaf }, - { cursor: 12, key: key.xterm.metab }, - { cursor: 11, key: key.xterm.metab }, - { cursor: 8, key: key.xterm.metab }, - { cursor: 7, key: key.xterm.metab }, - { cursor: 4, key: key.xterm.metab }, - { cursor: 0, key: key.xterm.metab }, - ].forEach(function(action) { - rl.write.apply(rl, action.key); - assert.strictEqual(rl.cursor, action.cursor); - }); -} - -{ - const input = new PassThrough(); - const rl = readline.createInterface({ - terminal: true, - input: input - }); - - const key = { - xterm: { - home: ['\x1b[H', { ctrl: true, name: 'a' }], - metad: ['\x1bd', { meta: true, name: 'd' }] - } - }; - - rl.write('foo bar.hop/zoo'); - rl.write.apply(rl, key.xterm.home); - [ - 'bar.hop/zoo', - '.hop/zoo', - 'hop/zoo', - '/zoo', - 'zoo', - '', - ].forEach(function(expectedLine) { - rl.write.apply(rl, key.xterm.metad); - assert.strictEqual(rl.cursor, 0); - assert.strictEqual(rl.line, expectedLine); - }); -} |