Skip to content

Commit 9726c82

Browse files
Deepti AgrawalFishrock123
Deepti Agrawal
authored andcommittedDec 6, 2016
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: #10009 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 7144f81 commit 9726c82

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed
 

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

+10-10
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ a8 = a8.read();
3939

4040
if (!common.hasFipsCrypto) {
4141
var a0 = crypto.createHash('md5').update('Test123').digest('latin1');
42-
assert.equal(
42+
assert.strictEqual(
4343
a0,
4444
'h\u00ea\u00cb\u0097\u00d8o\fF!\u00fa+\u000e\u0017\u00ca\u00bd\u008c',
4545
'Test MD5 as latin1'
4646
);
4747
}
48-
assert.equal(a1, '8308651804facb7b9af8ffc53a33a22d6a1c8ac2', 'Test SHA1');
49-
assert.equal(a2, '2bX1jws4GYKTlxhloUB09Z66PoJZW+y+hq5R8dnx9l4=',
50-
'Test SHA256 as base64');
48+
assert.strictEqual(a1, '8308651804facb7b9af8ffc53a33a22d6a1c8ac2', 'Test SHA1');
49+
assert.strictEqual(a2, '2bX1jws4GYKTlxhloUB09Z66PoJZW+y+hq5R8dnx9l4=',
50+
'Test SHA256 as base64');
5151
assert.deepStrictEqual(
5252
a3,
5353
Buffer.from(
@@ -73,7 +73,7 @@ assert.notEqual(a8, undefined, 'empty string should generate data');
7373
// Test multiple updates to same hash
7474
var h1 = crypto.createHash('sha1').update('Test123').digest('hex');
7575
var h2 = crypto.createHash('sha1').update('Test').update('123').digest('hex');
76-
assert.equal(h1, h2, 'multipled updates');
76+
assert.strictEqual(h1, h2, 'multipled updates');
7777

7878
// Test hashing for binary files
7979
var fn = path.join(common.fixturesDir, 'sample.png');
@@ -83,19 +83,19 @@ fileStream.on('data', function(data) {
8383
sha1Hash.update(data);
8484
});
8585
fileStream.on('close', function() {
86-
assert.equal(sha1Hash.digest('hex'),
87-
'22723e553129a336ad96e10f6aecdf0f45e4149e',
88-
'Test SHA1 of sample.png');
86+
assert.strictEqual(sha1Hash.digest('hex'),
87+
'22723e553129a336ad96e10f6aecdf0f45e4149e',
88+
'Test SHA1 of sample.png');
8989
});
9090

9191
// Issue #2227: unknown digest method should throw an error.
9292
assert.throws(function() {
9393
crypto.createHash('xyzzy');
94-
});
94+
}, /Digest method not supported/);
9595

9696
// Default UTF-8 encoding
9797
var hutf8 = crypto.createHash('sha512').update('УТФ-8 text').digest('hex');
98-
assert.equal(
98+
assert.strictEqual(
9999
hutf8,
100100
'4b21bbd1a68e690a730ddcb5a8bc94ead9879ffe82580767ad7ec6fa8ba2dea6' +
101101
'43a821af66afa9a45b6a78c712fecf0e56dc7f43aef4bcfc8eb5b4d8dca6ea5b');

0 commit comments

Comments
 (0)
Please sign in to comment.