test: writable stream ending state

Add a test for _writableState.ending, when ending becomes true,
but the stream is not finished/ended yet.

PR-URL: https://github.com/nodejs/node/pull/8707
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Related: https://github.com/nodejs/node/issues/8686
This commit is contained in:
Italo A. Casas 2016-09-21 21:43:16 -04:00 committed by Matteo Collina
parent f12338ddb0
commit fd16eed8ea
2 changed files with 35 additions and 0 deletions

View File

@ -43,6 +43,7 @@ function WritableState(options, stream) {
// cast to ints.
this.highWaterMark = ~~this.highWaterMark;
// drain event flag.
this.needDrain = false;
// at the start of calling end()
this.ending = false;

View File

@ -0,0 +1,34 @@
'use strict';
const common = require('../common');
const assert = require('assert');
const stream = require('stream');
const writable = new stream.Writable();
function testStates(ending, finished, ended) {
assert.strictEqual(writable._writableState.ending, ending);
assert.strictEqual(writable._writableState.finished, finished);
assert.strictEqual(writable._writableState.ended, ended);
}
writable._write = (chunk, encoding, cb) => {
// ending, finished, ended start in false.
testStates(false, false, false);
cb();
};
writable.on('finish', () => {
// ending, finished, ended = true.
testStates(true, true, true);
});
writable.end('testing function end()', () => {
// ending, finished, ended = true.
testStates(true, true, true);
});
// ending, ended = true.
// finished = false.
testStates(true, false, true);