mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00

Ref https://github.com/denoland/deno/issues/28836 This PR replaces the _stream.mjs bundle with a file-by-file port instead. A codemod transpiles Node.js internals to ESM. The codemod performs three tasks: translating CJS to ESM, remapping internal dependencies, and hoisting lazy requires as imports. The process is fully automated through the `update_node_stream.ts` script, simplifying future internal updates. The script checks out Node.js from a specific tag defined in the `tests/node_compat/runner`. Additionally, the update enables new tests in our Node test runner and adds features (like compose()) that were missing from the outdated bundle. ## Performance There is a 140KB+ binary size increase on aarch64-apple-darwin and nop startup time stays the same.
134 lines
3.1 KiB
JavaScript
134 lines
3.1 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 23.9.0
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const {
|
|
Readable, Transform,
|
|
} = require('stream');
|
|
const assert = require('assert');
|
|
|
|
{
|
|
// with async generator
|
|
const stream = Readable.from(['a', 'b', 'c', 'd']).compose(async function *(stream) {
|
|
let str = '';
|
|
for await (const chunk of stream) {
|
|
str += chunk;
|
|
|
|
if (str.length === 2) {
|
|
yield str;
|
|
str = '';
|
|
}
|
|
}
|
|
});
|
|
const result = ['ab', 'cd'];
|
|
(async () => {
|
|
for await (const item of stream) {
|
|
assert.strictEqual(item, result.shift());
|
|
}
|
|
})().then(common.mustCall());
|
|
}
|
|
|
|
{
|
|
// With Transformer
|
|
const stream = Readable.from(['a', 'b', 'c', 'd']).compose(new Transform({
|
|
objectMode: true,
|
|
transform: common.mustCall((chunk, encoding, callback) => {
|
|
callback(null, chunk);
|
|
}, 4)
|
|
}));
|
|
const result = ['a', 'b', 'c', 'd'];
|
|
(async () => {
|
|
for await (const item of stream) {
|
|
assert.strictEqual(item, result.shift());
|
|
}
|
|
})().then(common.mustCall());
|
|
}
|
|
|
|
{
|
|
// Throwing an error during `compose` (before waiting for data)
|
|
const stream = Readable.from([1, 2, 3, 4, 5]).compose(async function *(stream) { // eslint-disable-line require-yield
|
|
|
|
throw new Error('boom');
|
|
});
|
|
|
|
assert.rejects(async () => {
|
|
for await (const item of stream) {
|
|
assert.fail('should not reach here, got ' + item);
|
|
}
|
|
}, /boom/).then(common.mustCall());
|
|
}
|
|
|
|
{
|
|
// Throwing an error during `compose` (when waiting for data)
|
|
const stream = Readable.from([1, 2, 3, 4, 5]).compose(async function *(stream) {
|
|
for await (const chunk of stream) {
|
|
if (chunk === 3) {
|
|
throw new Error('boom');
|
|
}
|
|
yield chunk;
|
|
}
|
|
});
|
|
|
|
assert.rejects(
|
|
stream.toArray(),
|
|
/boom/,
|
|
).then(common.mustCall());
|
|
}
|
|
|
|
{
|
|
// Throwing an error during `compose` (after finishing all readable data)
|
|
const stream = Readable.from([1, 2, 3, 4, 5]).compose(async function *(stream) { // eslint-disable-line require-yield
|
|
|
|
// eslint-disable-next-line no-unused-vars,no-empty
|
|
for await (const chunk of stream) {
|
|
}
|
|
|
|
throw new Error('boom');
|
|
});
|
|
assert.rejects(
|
|
stream.toArray(),
|
|
/boom/,
|
|
).then(common.mustCall());
|
|
}
|
|
|
|
{
|
|
// AbortSignal
|
|
const ac = new AbortController();
|
|
const stream = Readable.from([1, 2, 3, 4, 5])
|
|
.compose(async function *(source) {
|
|
// Should not reach here
|
|
for await (const chunk of source) {
|
|
yield chunk;
|
|
}
|
|
}, { signal: ac.signal });
|
|
|
|
ac.abort();
|
|
|
|
assert.rejects(async () => {
|
|
for await (const item of stream) {
|
|
assert.fail('should not reach here, got ' + item);
|
|
}
|
|
}, {
|
|
name: 'AbortError',
|
|
}).then(common.mustCall());
|
|
}
|
|
|
|
{
|
|
assert.throws(
|
|
() => Readable.from(['a']).compose(Readable.from(['b'])),
|
|
{ code: 'ERR_INVALID_ARG_VALUE' }
|
|
);
|
|
}
|
|
|
|
{
|
|
assert.throws(
|
|
() => Readable.from(['a']).compose(),
|
|
{ code: 'ERR_INVALID_ARG_TYPE' }
|
|
);
|
|
}
|