Make finalization part of the stream
This commit is contained in:
parent
c93a211595
commit
86b4da1ec2
3 changed files with 122 additions and 55 deletions
40
ts/test-node/util/finalStream_test.ts
Normal file
40
ts/test-node/util/finalStream_test.ts
Normal file
|
@ -0,0 +1,40 @@
|
|||
// Copyright 2024 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { assert } from 'chai';
|
||||
import { Readable } from 'node:stream';
|
||||
import { pipeline } from 'node:stream/promises';
|
||||
|
||||
import { finalStream } from '../../util/finalStream';
|
||||
|
||||
describe('finalStream', () => {
|
||||
it('should invoke callback before pipeline resolves', async () => {
|
||||
let called = false;
|
||||
await pipeline(
|
||||
Readable.from(['abc']),
|
||||
finalStream(async () => {
|
||||
// Forcing next tick
|
||||
await Promise.resolve();
|
||||
|
||||
called = true;
|
||||
})
|
||||
);
|
||||
|
||||
assert.isTrue(called);
|
||||
});
|
||||
|
||||
it('should propagate errors from callback', async () => {
|
||||
await assert.isRejected(
|
||||
pipeline(
|
||||
Readable.from(['abc']),
|
||||
finalStream(async () => {
|
||||
// Forcing next tick
|
||||
await Promise.resolve();
|
||||
|
||||
throw new Error('failure');
|
||||
})
|
||||
),
|
||||
'failure'
|
||||
);
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue