2019-08-05 16:07:49 +02:00
|
|
|
'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.
|
2019-09-28 07:33:47 +02:00
|
|
|
socket.write(null, common.expectsError({
|
|
|
|
code: 'ERR_STREAM_NULL_VALUES',
|
|
|
|
name: 'TypeError',
|
|
|
|
message: 'May not write null values to stream'
|
|
|
|
}));
|
|
|
|
socket.on('error', common.expectsError({
|
|
|
|
code: 'ERR_STREAM_NULL_VALUES',
|
|
|
|
name: 'TypeError',
|
|
|
|
message: 'May not write null values to stream'
|
|
|
|
}));
|
|
|
|
|
2019-08-05 16:07:49 +02:00
|
|
|
[
|
|
|
|
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',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2019-09-23 08:17:25 +02:00
|
|
|
message: 'The "chunk" argument must be of type string or an instance of ' +
|
|
|
|
`Buffer.${common.invalidArgTypeHelper(value)}`
|
2019-08-05 16:07:49 +02:00
|
|
|
}));
|
|
|
|
});
|