Skip to content

Commit f8f283b

Browse files
committed
fs: warn if no callback is passed to async calls
This patch issues a deprecation warning, if an asynchronous function is called without a callback function. PR-URL: #7897 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Yorkie Liu <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent a72a331 commit f8f283b

File tree

2 files changed

+32
-15
lines changed

2 files changed

+32
-15
lines changed

lib/fs.js

+7
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,13 @@ function throwOptionsError(options) {
8383
}
8484

8585
function rethrow() {
86+
// TODO(thefourtheye) Throw error instead of warning in major version > 7
87+
process.emitWarning(
88+
'Calling an asynchronous function without callback is deprecated.',
89+
'DeprecationWarning',
90+
rethrow
91+
);
92+
8693
// Only enable in debug mode. A backtrace uses ~1000 bytes of heap space and
8794
// is fairly slow to generate.
8895
if (DEBUG) {
+25-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
2-
require('../common');
3-
var assert = require('assert');
4-
var fs = require('fs');
2+
const common = require('../common');
3+
const assert = require('assert');
4+
const fs = require('fs');
55

66
function test(cb) {
77
return function() {
@@ -13,16 +13,26 @@ function test(cb) {
1313
// Verify the case where a callback function is provided
1414
assert.doesNotThrow(test(function() {}));
1515

16-
// Passing undefined calls rethrow() internally, which is fine
17-
assert.doesNotThrow(test(undefined));
16+
process.once('warning', common.mustCall((warning) => {
17+
assert.strictEqual(
18+
warning.message,
19+
'Calling an asynchronous function without callback is deprecated.'
20+
);
1821

19-
// Anything else should throw
20-
assert.throws(test(null));
21-
assert.throws(test(true));
22-
assert.throws(test(false));
23-
assert.throws(test(1));
24-
assert.throws(test(0));
25-
assert.throws(test('foo'));
26-
assert.throws(test(/foo/));
27-
assert.throws(test([]));
28-
assert.throws(test({}));
22+
invalidArgumentsTests();
23+
}));
24+
25+
// Passing undefined/nothing calls rethrow() internally, which emits a warning
26+
assert.doesNotThrow(test());
27+
28+
function invalidArgumentsTests() {
29+
assert.throws(test(null));
30+
assert.throws(test(true));
31+
assert.throws(test(false));
32+
assert.throws(test(1));
33+
assert.throws(test(0));
34+
assert.throws(test('foo'));
35+
assert.throws(test(/foo/));
36+
assert.throws(test([]));
37+
assert.throws(test({}));
38+
}

0 commit comments

Comments
 (0)