11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ciconst common = require('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ciconst fs = require('fs'); 51cb0ef41Sopenharmony_ciconst callbackThrowValues = [null, true, false, 0, 1, 'foo', /foo/, [], {}]; 61cb0ef41Sopenharmony_ci 71cb0ef41Sopenharmony_cifunction testMakeStatsCallback(cb) { 81cb0ef41Sopenharmony_ci return function() { 91cb0ef41Sopenharmony_ci // fs.stat() calls makeStatsCallback() on its second argument 101cb0ef41Sopenharmony_ci fs.stat(__filename, cb); 111cb0ef41Sopenharmony_ci }; 121cb0ef41Sopenharmony_ci} 131cb0ef41Sopenharmony_ci 141cb0ef41Sopenharmony_ci// Verify the case where a callback function is provided 151cb0ef41Sopenharmony_citestMakeStatsCallback(common.mustCall())(); 161cb0ef41Sopenharmony_ci 171cb0ef41Sopenharmony_cifunction invalidCallbackThrowsTests() { 181cb0ef41Sopenharmony_ci callbackThrowValues.forEach((value) => { 191cb0ef41Sopenharmony_ci assert.throws(testMakeStatsCallback(value), { 201cb0ef41Sopenharmony_ci code: 'ERR_INVALID_ARG_TYPE', 211cb0ef41Sopenharmony_ci name: 'TypeError' 221cb0ef41Sopenharmony_ci }); 231cb0ef41Sopenharmony_ci }); 241cb0ef41Sopenharmony_ci} 251cb0ef41Sopenharmony_ci 261cb0ef41Sopenharmony_ciinvalidCallbackThrowsTests(); 27