mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 17:55:31 +00:00

- Use `common.mustCall()` to ensure that callbacks are called. - Remove no longer needed variables. - Remove unnecessary `process.on('exit')` usage. PR-URL: https://github.com/nodejs/node/pull/18817 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
41 lines
765 B
JavaScript
41 lines
765 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
|
|
const { strictEqual } = require('assert');
|
|
const { Transform } = require('stream');
|
|
|
|
const _transform = common.mustCall((chunk, _, next) => {
|
|
next();
|
|
});
|
|
|
|
const _final = common.mustCall((next) => {
|
|
next();
|
|
});
|
|
|
|
const _flush = common.mustCall((next) => {
|
|
next();
|
|
});
|
|
|
|
const t = new Transform({
|
|
transform: _transform,
|
|
flush: _flush,
|
|
final: _final
|
|
});
|
|
|
|
strictEqual(t._transform, _transform);
|
|
strictEqual(t._flush, _flush);
|
|
strictEqual(t._final, _final);
|
|
|
|
t.end(Buffer.from('blerg'));
|
|
t.resume();
|
|
|
|
const t2 = new Transform({});
|
|
|
|
common.expectsError(() => {
|
|
t2.end(Buffer.from('blerg'));
|
|
}, {
|
|
type: Error,
|
|
code: 'ERR_METHOD_NOT_IMPLEMENTED',
|
|
message: 'The _transform method is not implemented'
|
|
});
|