Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Updates to test-stream2-unpipe-drain #10033

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 10 additions & 16 deletions test/parallel/test-stream2-unpipe-drain.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
'use strict';
var common = require('../common');
var assert = require('assert');
var stream = require('stream');
require('../common');
const assert = require('assert');

if (!common.hasCrypto) {
common.skip('missing crypto');
return;
}
var crypto = require('crypto');

var util = require('util');
const stream = require('stream');
const util = require('util');

function TestWriter() {
stream.Writable.call(this);
Expand All @@ -21,7 +15,7 @@ TestWriter.prototype._write = function(buffer, encoding, callback) {
// super slow write stream (callback never called)
};

var dest = new TestWriter();
const dest = new TestWriter();

function TestReader(id) {
stream.Readable.call(this);
Expand All @@ -31,11 +25,11 @@ util.inherits(TestReader, stream.Readable);

TestReader.prototype._read = function(size) {
this.reads += 1;
this.push(crypto.randomBytes(size));
this.push(Buffer.alloc(size));
};

var src1 = new TestReader();
var src2 = new TestReader();
const src1 = new TestReader();
const src2 = new TestReader();

src1.pipe(dest);

Expand All @@ -55,6 +49,6 @@ src1.once('readable', function() {


process.on('exit', function() {
assert.equal(src1.reads, 2);
assert.equal(src2.reads, 2);
assert.strictEqual(src1.reads, 2);
assert.strictEqual(src2.reads, 2);
});