-
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.
After 'error' only 'close' should be emitted. PR-URL: #28979 Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: James M Snell <[email protected]>
- Loading branch information
Showing
6 changed files
with
49 additions
and
78 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
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,33 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const net = require('net'); | ||
|
||
const socket = net.Stream({ highWaterMark: 0 }); | ||
|
||
// Make sure that anything besides a buffer or a string throws. | ||
common.expectsError(() => socket.write(null), | ||
{ | ||
code: 'ERR_STREAM_NULL_VALUES', | ||
type: TypeError, | ||
message: 'May not write null values to stream' | ||
}); | ||
[ | ||
true, | ||
false, | ||
undefined, | ||
1, | ||
1.0, | ||
+Infinity, | ||
-Infinity, | ||
[], | ||
{} | ||
].forEach((value) => { | ||
// We need to check the callback since 'error' will only | ||
// be emitted once per instance. | ||
socket.write(value, common.expectsError({ | ||
code: 'ERR_INVALID_ARG_TYPE', | ||
type: TypeError, | ||
message: 'The "chunk" argument must be one of type string or Buffer. ' + | ||
`Received type ${typeof value}` | ||
})); | ||
}); |
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