Browse Source

test: update parallel/test-crypto-hash.js

changed equal to strictEqual in parallel/test-crypto-hash.js.
Added a second regex argument to the assert.throws function.

PR-URL: https://github.com/nodejs/node/pull/10009
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
v6
Deepti Agrawal 8 years ago
committed by James M Snell
parent
commit
9765dd4bda
  1. 14
      test/parallel/test-crypto-hash.js

14
test/parallel/test-crypto-hash.js

@ -39,14 +39,14 @@ a8 = a8.read();
if (!common.hasFipsCrypto) { if (!common.hasFipsCrypto) {
var a0 = crypto.createHash('md5').update('Test123').digest('latin1'); var a0 = crypto.createHash('md5').update('Test123').digest('latin1');
assert.equal( assert.strictEqual(
a0, a0,
'h\u00ea\u00cb\u0097\u00d8o\fF!\u00fa+\u000e\u0017\u00ca\u00bd\u008c', 'h\u00ea\u00cb\u0097\u00d8o\fF!\u00fa+\u000e\u0017\u00ca\u00bd\u008c',
'Test MD5 as latin1' 'Test MD5 as latin1'
); );
} }
assert.equal(a1, '8308651804facb7b9af8ffc53a33a22d6a1c8ac2', 'Test SHA1'); assert.strictEqual(a1, '8308651804facb7b9af8ffc53a33a22d6a1c8ac2', 'Test SHA1');
assert.equal(a2, '2bX1jws4GYKTlxhloUB09Z66PoJZW+y+hq5R8dnx9l4=', assert.strictEqual(a2, '2bX1jws4GYKTlxhloUB09Z66PoJZW+y+hq5R8dnx9l4=',
'Test SHA256 as base64'); 'Test SHA256 as base64');
assert.deepStrictEqual( assert.deepStrictEqual(
a3, a3,
@ -73,7 +73,7 @@ assert.notEqual(a8, undefined, 'empty string should generate data');
// Test multiple updates to same hash // Test multiple updates to same hash
var h1 = crypto.createHash('sha1').update('Test123').digest('hex'); var h1 = crypto.createHash('sha1').update('Test123').digest('hex');
var h2 = crypto.createHash('sha1').update('Test').update('123').digest('hex'); var h2 = crypto.createHash('sha1').update('Test').update('123').digest('hex');
assert.equal(h1, h2, 'multipled updates'); assert.strictEqual(h1, h2, 'multipled updates');
// Test hashing for binary files // Test hashing for binary files
var fn = path.join(common.fixturesDir, 'sample.png'); var fn = path.join(common.fixturesDir, 'sample.png');
@ -83,7 +83,7 @@ fileStream.on('data', function(data) {
sha1Hash.update(data); sha1Hash.update(data);
}); });
fileStream.on('close', function() { fileStream.on('close', function() {
assert.equal(sha1Hash.digest('hex'), assert.strictEqual(sha1Hash.digest('hex'),
'22723e553129a336ad96e10f6aecdf0f45e4149e', '22723e553129a336ad96e10f6aecdf0f45e4149e',
'Test SHA1 of sample.png'); 'Test SHA1 of sample.png');
}); });
@ -91,11 +91,11 @@ fileStream.on('close', function() {
// Issue #2227: unknown digest method should throw an error. // Issue #2227: unknown digest method should throw an error.
assert.throws(function() { assert.throws(function() {
crypto.createHash('xyzzy'); crypto.createHash('xyzzy');
}); }, /Digest method not supported/);
// Default UTF-8 encoding // Default UTF-8 encoding
var hutf8 = crypto.createHash('sha512').update('УТФ-8 text').digest('hex'); var hutf8 = crypto.createHash('sha512').update('УТФ-8 text').digest('hex');
assert.equal( assert.strictEqual(
hutf8, hutf8,
'4b21bbd1a68e690a730ddcb5a8bc94ead9879ffe82580767ad7ec6fa8ba2dea6' + '4b21bbd1a68e690a730ddcb5a8bc94ead9879ffe82580767ad7ec6fa8ba2dea6' +
'43a821af66afa9a45b6a78c712fecf0e56dc7f43aef4bcfc8eb5b4d8dca6ea5b'); '43a821af66afa9a45b6a78c712fecf0e56dc7f43aef4bcfc8eb5b4d8dca6ea5b');

Loading…
Cancel
Save