-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: extended test to makeCallback cb type check
makeCallback and makeStatsCallback are both tested intedependently. PR-URL: #12140 Backport-PR-URL: #13785 Fixes: #12136 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
- Loading branch information
1 parent
d74019d
commit e6d6a41
Showing
2 changed files
with
45 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
'use strict'; | ||
require('../common'); | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const cbTypeError = /^TypeError: "callback" argument must be a function$/; | ||
const callbackThrowValues = [null, true, false, 0, 1, 'foo', /foo/, [], {}]; | ||
|
||
function test(cb) { | ||
const { sep } = require('path'); | ||
|
||
common.refreshTmpDir(); | ||
|
||
function testMakeCallback(cb) { | ||
return function() { | ||
// fs.stat() calls makeCallback() on its second argument | ||
fs.stat(__filename, cb); | ||
// fs.mkdtemp() calls makeCallback() on its third argument | ||
fs.mkdtemp(`${common.tmpDir}${sep}`, {}, cb); | ||
}; | ||
} | ||
|
||
// Verify the case where a callback function is provided | ||
assert.doesNotThrow(test(function() {})); | ||
// Passing undefined/nothing calls rethrow() internally | ||
assert.doesNotThrow(testMakeCallback()); | ||
|
||
// Passing undefined calls rethrow() internally, which is fine | ||
assert.doesNotThrow(test(undefined)); | ||
function invalidCallbackThrowsTests() { | ||
callbackThrowValues.forEach((value) => { | ||
assert.throws(testMakeCallback(value), cbTypeError); | ||
}); | ||
} | ||
|
||
// Anything else should throw | ||
assert.throws(test(null)); | ||
assert.throws(test(true)); | ||
assert.throws(test(false)); | ||
assert.throws(test(1)); | ||
assert.throws(test(0)); | ||
assert.throws(test('foo')); | ||
assert.throws(test(/foo/)); | ||
assert.throws(test([])); | ||
assert.throws(test({})); | ||
invalidCallbackThrowsTests(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const cbTypeError = /^TypeError: "callback" argument must be a function$/; | ||
const callbackThrowValues = [null, true, false, 0, 1, 'foo', /foo/, [], {}]; | ||
|
||
function testMakeStatsCallback(cb) { | ||
return function() { | ||
// fs.stat() calls makeStatsCallback() on its second argument | ||
fs.stat(__filename, cb); | ||
}; | ||
} | ||
|
||
// Verify the case where a callback function is provided | ||
assert.doesNotThrow(testMakeStatsCallback(common.noop)); | ||
|
||
// Passing undefined/nothing calls rethrow() internally | ||
assert.doesNotThrow(testMakeStatsCallback()); | ||
|
||
function invalidCallbackThrowsTests() { | ||
callbackThrowValues.forEach((value) => { | ||
assert.throws(testMakeStatsCallback(value), cbTypeError); | ||
}); | ||
} | ||
|
||
invalidCallbackThrowsTests(); |