Browse Source
test: replace assert.equal with assert.strictEqual
Using NodeTodo I learned of a need to swap out the .equal function
with .strictEqual in a few test files.
https://twitter.com/NodeTodo/status/803657321993961472
https://gist.github.com/Trott/864401455d4afa2428cd4814e072bd7c
additional commits squashed:
.strictEqual's argument signature is actual, expected, [message].
Previously some statements were listed as expected, actual.
As asked in PR i swapped them to match the correct argument signature.
PR-URL: https://github.com/nodejs/node/pull/9842
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
v7.x
brad-decker
8 years ago
committed by
Anna Henningsen
No known key found for this signature in database
GPG Key ID: D8B9F5AEAE84E4CF
7 changed files with
9 additions and
9 deletions
test/addons/async-hello-world/test.js
test/addons/hello-world-function-export/test.js
test/addons/hello-world/test.js
test/addons/load-long-path/test.js
test/addons/stringbytes-external-exceed-max/test-stringbytes-external-at-max.js
test/addons/stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-1-binary.js
test/addons/stringbytes-external-exceed-max/test-stringbytes-external-exceed-max-by-2.js
@ -4,7 +4,7 @@ var assert = require('assert');
const binding = require ( ` ./build/ ${ common . buildType } /binding ` ) ;
const binding = require ( ` ./build/ ${ common . buildType } /binding ` ) ;
binding ( 5 , common . mustCall ( function ( err , val ) {
binding ( 5 , common . mustCall ( function ( err , val ) {
assert . equal ( null , err ) ;
assert . strictEqual ( err , null ) ;
assert . equal ( 10 , val ) ;
assert . strictEqual ( val , 10 ) ;
process . nextTick ( common . mustCall ( function ( ) { } ) ) ;
process . nextTick ( common . mustCall ( function ( ) { } ) ) ;
} ) ) ;
} ) ) ;
@ -2,5 +2,5 @@
const common = require ( '../../common' ) ;
const common = require ( '../../common' ) ;
var assert = require ( 'assert' ) ;
var assert = require ( 'assert' ) ;
const binding = require ( ` ./build/ ${ common . buildType } /binding ` ) ;
const binding = require ( ` ./build/ ${ common . buildType } /binding ` ) ;
assert . equal ( 'world' , binding ( ) ) ;
assert . strictEqual ( binding ( ) , 'world' ) ;
console . log ( 'binding.hello() =' , binding ( ) ) ;
console . log ( 'binding.hello() =' , binding ( ) ) ;
@ -2,5 +2,5 @@
const common = require ( '../../common' ) ;
const common = require ( '../../common' ) ;
var assert = require ( 'assert' ) ;
var assert = require ( 'assert' ) ;
const binding = require ( ` ./build/ ${ common . buildType } /binding ` ) ;
const binding = require ( ` ./build/ ${ common . buildType } /binding ` ) ;
assert . equal ( 'world' , binding . hello ( ) ) ;
assert . strictEqual ( binding . hello ( ) , 'world' ) ;
console . log ( 'binding.hello() =' , binding . hello ( ) ) ;
console . log ( 'binding.hello() =' , binding . hello ( ) ) ;
@ -34,4 +34,4 @@ fs.writeFileSync(addonDestinationPath, contents);
// Attempt to load at long path destination
// Attempt to load at long path destination
var addon = require ( addonDestinationPath ) ;
var addon = require ( addonDestinationPath ) ;
assert . notEqual ( addon , null ) ;
assert . notEqual ( addon , null ) ;
assert . e qual( addon . hello ( ) , 'world' ) ;
assert . strictE qual( addon . hello ( ) , 'world' ) ;
@ -30,4 +30,4 @@ if (!binding.ensureAllocation(2 * kStringMaxLength)) {
}
}
const maxString = buf . toString ( 'latin1' ) ;
const maxString = buf . toString ( 'latin1' ) ;
assert . e qual( maxString . length , kStringMaxLength ) ;
assert . strictE qual( maxString . length , kStringMaxLength ) ;
@ -34,9 +34,9 @@ assert.throws(function() {
} , /"toString\(\)" failed/ ) ;
} , /"toString\(\)" failed/ ) ;
var maxString = buf . toString ( 'latin1' , 1 ) ;
var maxString = buf . toString ( 'latin1' , 1 ) ;
assert . e qual( maxString . length , kStringMaxLength ) ;
assert . strictE qual( maxString . length , kStringMaxLength ) ;
// Free the memory early instead of at the end of the next assignment
// Free the memory early instead of at the end of the next assignment
maxString = undefined ;
maxString = undefined ;
maxString = buf . toString ( 'latin1' , 0 , kStringMaxLength ) ;
maxString = buf . toString ( 'latin1' , 0 , kStringMaxLength ) ;
assert . e qual( maxString . length , kStringMaxLength ) ;
assert . strictE qual( maxString . length , kStringMaxLength ) ;
@ -30,4 +30,4 @@ if (!binding.ensureAllocation(2 * kStringMaxLength)) {
}
}
const maxString = buf . toString ( 'utf16le' ) ;
const maxString = buf . toString ( 'utf16le' ) ;
assert . e qual( maxString . length , ( kStringMaxLength + 2 ) / 2 ) ;
assert . strictE qual( maxString . length , ( kStringMaxLength + 2 ) / 2 ) ;