Skip to content

Commit

Permalink
Add support for variadic to choices (#1454)
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowspawn committed Jan 31, 2021
1 parent 02b40ec commit 09dfb67
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 6 deletions.
23 changes: 17 additions & 6 deletions index.js
Expand Up @@ -425,6 +425,18 @@ class Option {
return this;
};

/**
* @api private
*/

_concatValue(value, previous) {
if (previous === this.defaultValue || !Array.isArray(previous)) {
return [value];
}

return previous.concat(value);
}

/**
* Only allow option value to be one of choices.
*
Expand All @@ -434,10 +446,13 @@ class Option {

choices(values) {
this.argChoices = values;
this.parseArg = (arg) => {
this.parseArg = (arg, previous) => {
if (!values.includes(arg)) {
throw new InvalidOptionArgumentError(`Allowed choices are ${values.join(', ')}.`);
}
if (this.variadic) {
return this._concatValue(arg, previous);
}
return arg;
};
return this;
Expand Down Expand Up @@ -976,11 +991,7 @@ class Command extends EventEmitter {
throw err;
}
} else if (val !== null && option.variadic) {
if (oldValue === defaultValue || !Array.isArray(oldValue)) {
val = [val];
} else {
val = oldValue.concat(val);
}
val = option._concatValue(val, oldValue);
}

// unassigned or boolean value
Expand Down
18 changes: 18 additions & 0 deletions tests/options.variadic.test.js
Expand Up @@ -40,6 +40,24 @@ describe('variadic option with required value', () => {
expect(program.opts().required).toEqual(['one', 'two']);
});

test('when variadic used with choices and one value then set in array', () => {
const program = new commander.Command();
program
.addOption(new commander.Option('-r,--required <value...>').choices(['one', 'two']));

program.parse(['--required', 'one'], { from: 'user' });
expect(program.opts().required).toEqual(['one']);
});

test('when variadic used with choices and two values then set in array', () => {
const program = new commander.Command();
program
.addOption(new commander.Option('-r,--required <value...>').choices(['one', 'two']));

program.parse(['--required', 'one', 'two'], { from: 'user' });
expect(program.opts().required).toEqual(['one', 'two']);
});

test('when variadic with short combined argument then not variadic', () => {
const program = new commander.Command();
program
Expand Down

0 comments on commit 09dfb67

Please sign in to comment.