Skip to content

Commit

Permalink
use yargs-parser options.default
Browse files Browse the repository at this point in the history
utils.js: fix lookupFiles()
  • Loading branch information
juergba committed May 5, 2019
1 parent 42a7e4e commit aed20bd
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 46 deletions.
35 changes: 6 additions & 29 deletions lib/cli/options.js
Expand Up @@ -10,8 +10,7 @@ const fs = require('fs');
const yargsParser = require('yargs-parser');
const {types, aliases} = require('./run-option-metadata');
const {ONE_AND_DONE_ARGS} = require('./one-and-dones');
// paranoia
const mocharc = Object.freeze(require('../mocharc.json'));
const mocharc = require('../mocharc.json');
const {list} = require('./run-helpers');
const {loadConfig, findConfig} = require('./config');
const findUp = require('find-up');
Expand Down Expand Up @@ -81,11 +80,12 @@ const nargOpts = types.array
/**
* Wrapper around `yargs-parser` which applies our settings
* @param {string|string[]} args - Arguments to parse
* @param {Object} defaultValues - Default values of mocharc.json
* @param {...Object} configObjects - `configObjects` for yargs-parser
* @private
* @ignore
*/
const parse = (args = [], ...configObjects) => {
const parse = (args = [], defaultValues = {}, ...configObjects) => {
// save node-specific args for special handling.
// 1. when these args have a "=" they should be considered to have values
// 2. if they don't, they just boolean flags
Expand All @@ -110,6 +110,7 @@ const parse = (args = [], ...configObjects) => {
const result = yargsParser.detailed(args, {
configuration,
configObjects,
default: defaultValues,
coerce: coerceOpts,
narg: nargOpts,
alias: aliases,
Expand Down Expand Up @@ -322,38 +323,14 @@ const loadOptions = (argv = []) => {
args.opts = false;
args._ = args._.concat(optsConfig._ || []);
}
// special case: "extension" option should not combine with default value.
// normally we want to combine "array"-type options, and we _do_ with "extension", but only
// within user-defined configuration (args or anything else).
// we must also search through any aliases of "extension" because while the arguments are ///
// normalized by this point, the config file values are not.
// only the "canonical" option name is used in `mocharc`, so we needn't worry about clearing
// multiple options.
// NOTE: as of this writing, "extension" is the only default value which is of an "array" type;
// it's unknown whether the the below strategy should be generalized to any other future
// "array"-type default option.
const processedMocharc = Object.assign({}, mocharc);
if (
args.extension ||
['extension']
.concat(aliases.extension)
.some(
opt =>
Object.hasOwnProperty(rcConfig, opt) ||
Object.hasOwnProperty(pkgConfig, opt) ||
Object.hasOwnProperty(optsConfig, opt)
)
) {
delete processedMocharc.extension;
}

args = parse(
args._,
mocharc,
args,
rcConfig || {},
pkgConfig || {},
optsConfig || {},
processedMocharc
optsConfig || {}
);

// recombine positional arguments and "spec"
Expand Down
4 changes: 2 additions & 2 deletions lib/cli/run-helpers.js
Expand Up @@ -219,7 +219,7 @@ exports.singleRun = (mocha, {files = [], exit = false} = {}) => {
*/
exports.watchRun = (
mocha,
{extension = ['js'], grep = '', ui = 'bdd', files = []} = {}
{extension = [], grep = '', ui = 'bdd', files = []} = {}
) => {
let runner;

Expand Down Expand Up @@ -291,7 +291,7 @@ exports.watchRun = (
*/
exports.runMocha = (
mocha,
{watch = false, extension = ['js'], grep = '', ui = 'bdd', exit = false} = {},
{watch = false, extension = [], grep = '', ui = 'bdd', exit = false} = {},
files = []
) => {
if (watch) {
Expand Down
20 changes: 9 additions & 11 deletions lib/utils.js
Expand Up @@ -562,7 +562,6 @@ function isHiddenOnUnix(pathname) {
*
* @public
* @memberof Mocha.utils
* @todo Fix extension handling
* @param {string} filepath - Base path to start searching from.
* @param {string[]} extensions - File extensions to look for.
* @param {boolean} recursive - Whether to recurse into subdirectories.
Expand All @@ -571,19 +570,18 @@ function isHiddenOnUnix(pathname) {
* @throws {TypeError} if `filepath` is directory and `extensions` not provided.
*/
exports.lookupFiles = function lookupFiles(filepath, extensions, recursive) {
extensions = extensions || [];
var files = [];
var stat;

if (!fs.existsSync(filepath)) {
// check all extensions
if (
!extensions.some(function(ext) {
if (fs.existsSync(filepath + '.' + ext)) {
filepath += '.' + ext;
return true;
}
})
) {
extensions.forEach(function(ext) {
if (fs.existsSync(filepath + '.' + ext)) {
files.push(filepath + '.' + ext);
}
});
if (!files.length) {
// Handle glob
files = glob.sync(filepath);
if (!files.length) {
Expand All @@ -592,8 +590,8 @@ exports.lookupFiles = function lookupFiles(filepath, extensions, recursive) {
filepath
);
}
return files;
}
return files;
}

// Handle file
Expand Down Expand Up @@ -624,7 +622,7 @@ exports.lookupFiles = function lookupFiles(filepath, extensions, recursive) {
// ignore error
return;
}
if (!extensions) {
if (!extensions.length) {
throw createMissingArgumentError(
util.format(
'Argument %s required when argument %s is a directory',
Expand Down
13 changes: 9 additions & 4 deletions test/integration/file-utils.spec.js
Expand Up @@ -58,17 +58,22 @@ describe('file utils', function() {
ex.and('to have length', expectedLength);
});

it('should parse extensions from extnsions parameter', function() {
it('should parse extensions from extensions parameter', function() {
var nonJsFile = tmpFile('mocha-utils-text.txt');
fs.writeFileSync(nonJsFile, 'yippy skippy ying yang yow');

var res = utils.lookupFiles(tmpDir, ['txt'], false);
expect(res, 'to contain', nonJsFile).and('to have length', 1);
});

it('should not require the extensions parameter when looking up a file', function() {
var res = utils.lookupFiles(tmpFile('mocha-utils'), undefined, false);
expect(res, 'to be', tmpFile('mocha-utils.js'));
it('should require the extensions parameter when looking up a file', function() {
var dirLookup = function() {
return utils.lookupFiles(tmpFile('mocha-utils'), undefined, false);
};
expect(dirLookup, 'to throw', {
name: 'Error',
code: 'ERR_MOCHA_NO_FILES_MATCH_PATTERN'
});
});

it('should require the extensions parameter when looking up a directory', function() {
Expand Down

0 comments on commit aed20bd

Please sign in to comment.