-
-
Notifications
You must be signed in to change notification settings - Fork 32k
stream: add iterator helper some every #41573
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
benjamingr
wants to merge
1
commit into
nodejs:master
from
benjamingr:stream-iterator-helper-some-every
+235
−1
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,95 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const { | ||
Readable, | ||
} = require('stream'); | ||
const assert = require('assert'); | ||
|
||
function oneTo5() { | ||
return Readable.from([1, 2, 3, 4, 5]); | ||
} | ||
|
||
function oneTo5Async() { | ||
return oneTo5().map(async (x) => { | ||
await Promise.resolve(); | ||
return x; | ||
}); | ||
} | ||
{ | ||
// Some and every work with a synchronous stream and predicate | ||
benjamingr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
(async () => { | ||
assert.strictEqual(await oneTo5().some((x) => x > 3), true); | ||
assert.strictEqual(await oneTo5().every((x) => x > 3), false); | ||
assert.strictEqual(await oneTo5().some((x) => x > 6), false); | ||
assert.strictEqual(await oneTo5().every((x) => x < 6), true); | ||
assert.strictEqual(await Readable.from([]).some((x) => true), false); | ||
assert.strictEqual(await Readable.from([]).every((x) => true), true); | ||
})().then(common.mustCall()); | ||
} | ||
|
||
{ | ||
// Some and every work with an asynchronous stream and synchronous predicate | ||
benjamingr marked this conversation as resolved.
Show resolved
Hide resolved
|
||
(async () => { | ||
assert.strictEqual(await oneTo5Async().some((x) => x > 3), true); | ||
assert.strictEqual(await oneTo5Async().every((x) => x > 3), false); | ||
assert.strictEqual(await oneTo5Async().some((x) => x > 6), false); | ||
assert.strictEqual(await oneTo5Async().every((x) => x < 6), true); | ||
})().then(common.mustCall()); | ||
} | ||
|
||
{ | ||
// Some and every work on asynchronous streams with an asynchronous predicate | ||
(async () => { | ||
assert.strictEqual(await oneTo5().some(async (x) => x > 3), true); | ||
assert.strictEqual(await oneTo5().every(async (x) => x > 3), false); | ||
assert.strictEqual(await oneTo5().some(async (x) => x > 6), false); | ||
assert.strictEqual(await oneTo5().every(async (x) => x < 6), true); | ||
})().then(common.mustCall()); | ||
} | ||
|
||
{ | ||
// Some and every short circuit | ||
(async () => { | ||
await oneTo5().some(common.mustCall((x) => x > 2, 3)); | ||
await oneTo5().every(common.mustCall((x) => x < 3, 3)); | ||
// When short circuit isn't possible the whole stream is iterated | ||
await oneTo5().some(common.mustCall((x) => x > 6, 5)); | ||
// The stream is destroyed afterwards | ||
const stream = oneTo5(); | ||
await stream.some(common.mustCall((x) => x > 2, 3)); | ||
assert.strictEqual(stream.destroyed, true); | ||
})().then(common.mustCall()); | ||
} | ||
|
||
{ | ||
// Support for AbortSignal | ||
const ac = new AbortController(); | ||
assert.rejects(Readable.from([1, 2, 3]).some( | ||
() => new Promise(() => {}), | ||
{ signal: ac.signal } | ||
), { | ||
name: 'AbortError', | ||
}).then(common.mustCall()); | ||
ac.abort(); | ||
} | ||
{ | ||
// Support for pre-aborted AbortSignal | ||
assert.rejects(Readable.from([1, 2, 3]).some( | ||
() => new Promise(() => {}), | ||
{ signal: AbortSignal.abort() } | ||
), { | ||
name: 'AbortError', | ||
}).then(common.mustCall()); | ||
} | ||
{ | ||
// Error cases | ||
assert.rejects(async () => { | ||
await Readable.from([1]).every(1); | ||
}, /ERR_INVALID_ARG_TYPE/).then(common.mustCall()); | ||
assert.rejects(async () => { | ||
await Readable.from([1]).every((x) => x, { | ||
concurrency: 'Foo' | ||
}); | ||
}, /ERR_OUT_OF_RANGE/).then(common.mustCall()); | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.