node/test/parallel/test-stream-writable-null.js
Antoine du Hamel 411ce7ed2e
test: ensure assertions are reached on more tests
PR-URL: https://github.com/nodejs/node/pull/60760
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
2025-11-24 22:44:48 +00:00

47 lines
1002 B
JavaScript

'use strict';
const common = require('../common');
const assert = require('assert');
const stream = require('stream');
class MyWritable extends stream.Writable {
constructor(options) {
super({ autoDestroy: false, ...options });
}
_write(chunk, encoding, callback) {
// eslint-disable-next-line node-core/must-call-assert
assert.notStrictEqual(chunk, null);
callback();
}
}
{
const m = new MyWritable({ objectMode: true });
m.on('error', common.mustNotCall());
assert.throws(() => {
m.write(null);
}, {
code: 'ERR_STREAM_NULL_VALUES'
});
}
{
const m = new MyWritable();
m.on('error', common.mustNotCall());
assert.throws(() => {
m.write(false);
}, {
code: 'ERR_INVALID_ARG_TYPE'
});
}
{ // Should not throw.
const m = new MyWritable({ objectMode: true });
m.write(false, assert.ifError);
}
{ // Should not throw.
const m = new MyWritable({ objectMode: true }).on('error', common.mustNotCall());
m.write(false, assert.ifError);
}