mirror of
https://github.com/nodejs/node.git
synced 2025-05-12 09:36:17 +00:00

Add a RegExp to `throws` assertions. PR-URL: https://github.com/nodejs/node/pull/10914 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Italo A. Casas <me@italoacasas.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const fs = require('fs');
|
|
const cbTypeError = /^TypeError: "callback" argument must be a function$/;
|
|
|
|
function test(cb) {
|
|
return function() {
|
|
// fs.stat() calls makeCallback() on its second argument
|
|
fs.stat(__filename, cb);
|
|
};
|
|
}
|
|
|
|
// Verify the case where a callback function is provided
|
|
assert.doesNotThrow(test(function() {}));
|
|
|
|
process.once('warning', common.mustCall((warning) => {
|
|
assert.strictEqual(
|
|
warning.message,
|
|
'Calling an asynchronous function without callback is deprecated.'
|
|
);
|
|
|
|
invalidArgumentsTests();
|
|
}));
|
|
|
|
// Passing undefined/nothing calls rethrow() internally, which emits a warning
|
|
assert.doesNotThrow(test());
|
|
|
|
function invalidArgumentsTests() {
|
|
assert.throws(test(null), cbTypeError);
|
|
assert.throws(test(true), cbTypeError);
|
|
assert.throws(test(false), cbTypeError);
|
|
assert.throws(test(1), cbTypeError);
|
|
assert.throws(test(0), cbTypeError);
|
|
assert.throws(test('foo'), cbTypeError);
|
|
assert.throws(test(/foo/), cbTypeError);
|
|
assert.throws(test([]), cbTypeError);
|
|
assert.throws(test({}), cbTypeError);
|
|
}
|