summaryrefslogtreecommitdiff
path: root/test/parallel/test-fs-make-callback.js
blob: 40c9aa42995f9a8f69d04124c369f344ad921932 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'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);
}