node/test/parallel/test-stream-transform-constructor-set-methods.js
Luigi Pinca 33103e9758
test: refactor stream-*-constructor-set-methods
- 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>
2018-02-17 15:22:14 +01:00

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'
});