summaryrefslogtreecommitdiff
path: root/test/parallel/test-crypto-hash-stream-pipe.js
blob: 795abd49a0f597bf8eea08f58e5d04d683de33ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
var common = require('../common');
var assert = require('assert');

if (!common.hasCrypto) {
  console.log('1..0 # Skipped: missing crypto');
  process.exit();
}
var crypto = require('crypto');

var stream = require('stream')
var s = new stream.PassThrough();
var h = crypto.createHash('sha1');
var expect = '15987e60950cf22655b9323bc1e281f9c4aff47e';
var gotData = false;

process.on('exit', function() {
  assert(gotData);
  console.log('ok');
});

s.pipe(h).on('data', function(c) {
  assert.equal(c, expect);
  gotData = true;
}).setEncoding('hex');

s.end('aoeu');