-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the asIndexedPairs method for readable streams. PR-URL: #41681 Refs: https://github.com/tc39/proposal-iterator-helpers#asindexedpairs Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
- Loading branch information
1 parent
11ec334
commit 60e28ba
Showing
3 changed files
with
82 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
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
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,47 @@ | ||
import '../common/index.mjs'; | ||
import { Readable } from 'stream'; | ||
import { deepStrictEqual, rejects } from 'assert'; | ||
|
||
{ | ||
// asIndexedPairs with a synchronous stream | ||
const pairs = await Readable.from([1, 2, 3]).asIndexedPairs().toArray(); | ||
deepStrictEqual(pairs, [[0, 1], [1, 2], [2, 3]]); | ||
const empty = await Readable.from([]).asIndexedPairs().toArray(); | ||
deepStrictEqual(empty, []); | ||
} | ||
|
||
{ | ||
// asIndexedPairs works an asynchronous streams | ||
const asyncFrom = (...args) => Readable.from(...args).map(async (x) => x); | ||
const pairs = await asyncFrom([1, 2, 3]).asIndexedPairs().toArray(); | ||
deepStrictEqual(pairs, [[0, 1], [1, 2], [2, 3]]); | ||
const empty = await asyncFrom([]).asIndexedPairs().toArray(); | ||
deepStrictEqual(empty, []); | ||
} | ||
|
||
{ | ||
// Does not enumerate an infinite stream | ||
const infinite = () => Readable.from(async function* () { | ||
while (true) yield 1; | ||
}()); | ||
const pairs = await infinite().asIndexedPairs().take(3).toArray(); | ||
deepStrictEqual(pairs, [[0, 1], [1, 1], [2, 1]]); | ||
const empty = await infinite().asIndexedPairs().take(0).toArray(); | ||
deepStrictEqual(empty, []); | ||
} | ||
|
||
{ | ||
// AbortSignal | ||
await rejects(async () => { | ||
const ac = new AbortController(); | ||
const { signal } = ac; | ||
const p = Readable.from([1, 2, 3]).asIndexedPairs({ signal }).toArray(); | ||
ac.abort(); | ||
await p; | ||
}, { name: 'AbortError' }); | ||
|
||
await rejects(async () => { | ||
const signal = AbortSignal.abort(); | ||
await Readable.from([1, 2, 3]).asIndexedPairs({ signal }).toArray(); | ||
}, /AbortError/); | ||
} |