mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 17:32:22 +00:00

Ensure errorEmitted is always set. Only emit 'error' once. PR-URL: https://github.com/nodejs/node/pull/29058 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
35 lines
653 B
JavaScript
35 lines
653 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const stream = require('stream');
|
|
|
|
function testPushArg(val) {
|
|
const readable = new stream.Readable({
|
|
read: () => {}
|
|
});
|
|
readable.on('error', common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError
|
|
}));
|
|
readable.push(val);
|
|
}
|
|
|
|
testPushArg([]);
|
|
testPushArg({});
|
|
testPushArg(0);
|
|
|
|
function testUnshiftArg(val) {
|
|
const readable = new stream.Readable({
|
|
read: () => {}
|
|
});
|
|
readable.on('error', common.expectsError({
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
type: TypeError
|
|
}));
|
|
readable.unshift(val);
|
|
}
|
|
|
|
testUnshiftArg([]);
|
|
testUnshiftArg({});
|
|
testUnshiftArg(0);
|