Skip to content

Commit 1c6fbd6

Browse files
evanlucasrichardlau
authored andcommittedFeb 8, 2021
test: add test that verifies crypto stream pipeline
This test fails prior to 990feaf being cherry-picked due to stream.pipeline with a crypto.Hash not working properly. That bug also seems to have affected md5. PR-URL: #37009 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com>
1 parent 953a850 commit 1c6fbd6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
'use strict';
2+
3+
const common = require('../common');
4+
5+
if (!common.hasCrypto)
6+
common.skip('missing crypto');
7+
8+
const assert = require('assert');
9+
const crypto = require('crypto');
10+
const stream = require('stream');
11+
12+
const hash = crypto.createHash('md5');
13+
const s = new stream.PassThrough();
14+
const expect = 'e8dc4081b13434b45189a720b77b6818';
15+
16+
s.write('abcdefgh');
17+
stream.pipeline(s, hash, common.mustCall(function(err) {
18+
assert.ifError(err);
19+
assert.strictEqual(hash.digest('hex'), expect);
20+
}));
21+
s.end();

0 commit comments

Comments
 (0)
Please sign in to comment.