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-stream-duplex-destroy.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-stream-duplex-destroy.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-stream-duplex-destroy.js | 264 |
1 files changed, 0 insertions, 264 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-stream-duplex-destroy.js b/cli/tests/node_compat/test/parallel/test-stream-duplex-destroy.js deleted file mode 100644 index 73cf75fe3..000000000 --- a/cli/tests/node_compat/test/parallel/test-stream-duplex-destroy.js +++ /dev/null @@ -1,264 +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 { Duplex } = require('stream'); -const assert = require('assert'); - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {} - }); - - duplex.resume(); - - duplex.on('end', common.mustNotCall()); - duplex.on('finish', common.mustNotCall()); - duplex.on('close', common.mustCall()); - - duplex.destroy(); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {} - }); - duplex.resume(); - - const expected = new Error('kaboom'); - - duplex.on('end', common.mustNotCall()); - duplex.on('finish', common.mustNotCall()); - duplex.on('error', common.mustCall((err) => { - assert.strictEqual(err, expected); - })); - - duplex.destroy(expected); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {} - }); - - duplex._destroy = common.mustCall(function(err, cb) { - assert.strictEqual(err, expected); - cb(err); - }); - - const expected = new Error('kaboom'); - - duplex.on('finish', common.mustNotCall('no finish event')); - duplex.on('error', common.mustCall((err) => { - assert.strictEqual(err, expected); - })); - - duplex.destroy(expected); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const expected = new Error('kaboom'); - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {}, - destroy: common.mustCall(function(err, cb) { - assert.strictEqual(err, expected); - cb(); - }) - }); - duplex.resume(); - - duplex.on('end', common.mustNotCall('no end event')); - duplex.on('finish', common.mustNotCall('no finish event')); - - // Error is swallowed by the custom _destroy - duplex.on('error', common.mustNotCall('no error event')); - duplex.on('close', common.mustCall()); - - duplex.destroy(expected); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {} - }); - - duplex._destroy = common.mustCall(function(err, cb) { - assert.strictEqual(err, null); - cb(); - }); - - duplex.destroy(); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {} - }); - duplex.resume(); - - duplex._destroy = common.mustCall(function(err, cb) { - assert.strictEqual(err, null); - process.nextTick(() => { - this.push(null); - this.end(); - cb(); - }); - }); - - const fail = common.mustNotCall('no finish or end event'); - - duplex.on('finish', fail); - duplex.on('end', fail); - - duplex.destroy(); - - duplex.removeListener('end', fail); - duplex.removeListener('finish', fail); - duplex.on('end', common.mustNotCall()); - duplex.on('finish', common.mustNotCall()); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {} - }); - - const expected = new Error('kaboom'); - - duplex._destroy = common.mustCall(function(err, cb) { - assert.strictEqual(err, null); - cb(expected); - }); - - duplex.on('finish', common.mustNotCall('no finish event')); - duplex.on('end', common.mustNotCall('no end event')); - duplex.on('error', common.mustCall((err) => { - assert.strictEqual(err, expected); - })); - - duplex.destroy(); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {}, - allowHalfOpen: true - }); - duplex.resume(); - - duplex.on('finish', common.mustNotCall()); - duplex.on('end', common.mustNotCall()); - - duplex.destroy(); - assert.strictEqual(duplex.destroyed, true); -} - -{ - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {}, - }); - - duplex.destroyed = true; - assert.strictEqual(duplex.destroyed, true); - - // The internal destroy() mechanism should not be triggered - duplex.on('finish', common.mustNotCall()); - duplex.on('end', common.mustNotCall()); - duplex.destroy(); -} - -{ - function MyDuplex() { - assert.strictEqual(this.destroyed, false); - this.destroyed = false; - Duplex.call(this); - } - - Object.setPrototypeOf(MyDuplex.prototype, Duplex.prototype); - Object.setPrototypeOf(MyDuplex, Duplex); - - new MyDuplex(); -} - -{ - const duplex = new Duplex({ - writable: false, - autoDestroy: true, - write(chunk, enc, cb) { cb(); }, - read() {}, - }); - duplex.push(null); - duplex.resume(); - duplex.on('close', common.mustCall()); -} - -{ - const duplex = new Duplex({ - readable: false, - autoDestroy: true, - write(chunk, enc, cb) { cb(); }, - read() {}, - }); - duplex.end(); - duplex.on('close', common.mustCall()); -} - -{ - const duplex = new Duplex({ - allowHalfOpen: false, - autoDestroy: true, - write(chunk, enc, cb) { cb(); }, - read() {}, - }); - duplex.push(null); - duplex.resume(); - const orgEnd = duplex.end; - duplex.end = common.mustNotCall(); - duplex.on('end', () => { - // Ensure end() is called in next tick to allow - // any pending writes to be invoked first. - process.nextTick(() => { - duplex.end = common.mustCall(orgEnd); - }); - }); - duplex.on('close', common.mustCall()); -} -{ - // Check abort signal - const controller = new AbortController(); - const { signal } = controller; - const duplex = new Duplex({ - write(chunk, enc, cb) { cb(); }, - read() {}, - signal, - }); - let count = 0; - duplex.on('error', common.mustCall((e) => { - assert.strictEqual(count++, 0); // Ensure not called twice - assert.strictEqual(e.name, 'AbortError'); - })); - duplex.on('close', common.mustCall()); - controller.abort(); -} |