Add unrecognised option support

- This commit modifies CommandParser to better track positional parameters
  which previously used to go there for non-recognised options. Now using
  relatively dump logic of just checking if first positional parameter starts
  with '-' which indicates it's a candidate for a new `UnrecognisedOptionException`
  which then would give user an error "Unrecognised option '--xxx'" for example.
- Backport #601
- Backport #602
- Fixes #603
- Fixes #604
This commit is contained in:
Janne Valkealahti
2023-01-07 08:58:40 +00:00
parent 800e249b98
commit 38acd79b83
3 changed files with 162 additions and 2 deletions

View File

@@ -227,7 +227,15 @@ public interface CommandParser {
requiredOptions.remove(pr.option);
}
else {
positional.addAll(pr.args);
for (String arg : pr.args) {
if (arg.startsWith("-")) {
errors.add(UnrecognisedOptionException.of(String.format("Unrecognised option '%s'", arg),
arg));
}
else {
positional.add(arg);
}
}
}
if (pr.error != null) {
errors.add(pr.error);
@@ -258,7 +266,9 @@ public interface CommandParser {
}
}
}
if (!oargs.isEmpty()) {
// don't do anything if first arg looks like an option as if we are here
// then we'd might remove wrong required option
if (!oargs.isEmpty() && !oargs.get(0).startsWith("-")) {
results.add(new DefaultCommandParserResult(o, oargs.stream().collect(Collectors.joining(" "))));
requiredOptions.remove(o);
}
@@ -516,4 +526,22 @@ public interface CommandParser {
return option;
}
}
public static class UnrecognisedOptionException extends CommandParserException {
private String option;
public UnrecognisedOptionException(String message, String option) {
super(message);
this.option = option;
}
public static UnrecognisedOptionException of(String message, String option) {
return new UnrecognisedOptionException(message, option);
}
public String getOption() {
return option;
}
}
}

View File

@@ -365,6 +365,65 @@ public class CommandParserTests extends AbstractCommandTests {
assertThat(results.results().get(0).value()).isEqualTo(1);
}
@Test
public void testNotDefinedLongOptionWithoutOptions() {
// gh-602
List<CommandOption> options = Arrays.asList();
String[] args = new String[]{"--arg1", "foo"};
CommandParserResults results = parser.parse(options, args);
assertThat(results.results()).hasSize(0);
assertThat(results.errors()).hasSize(1);
assertThat(results.positional()).hasSize(1);
}
@Test
public void testNotDefinedLongOptionWithOptionalOption() {
// gh-602
CommandOption option1 = longOption("arg1");
List<CommandOption> options = Arrays.asList(option1);
String[] args = new String[]{"--arg1", "bar", "--arg2", "foo"};
CommandParserResults results = parser.parse(options, args);
assertThat(results.results()).hasSize(1);
assertThat(results.errors()).hasSize(1);
assertThat(results.positional()).hasSize(1);
}
@Test
public void testNotDefinedLongOptionWithRequiredOption() {
// gh-602
CommandOption option1 = longOption("arg1", true);
List<CommandOption> options = Arrays.asList(option1);
String[] args = new String[]{"--arg2", "foo"};
CommandParserResults results = parser.parse(options, args);
assertThat(results.results()).hasSize(0);
assertThat(results.errors()).hasSize(2);
assertThat(results.positional()).hasSize(1);
}
@Test
public void testPositionDoesNotAffectRequiredErrorWithOtherErrors() {
// gh-601
CommandOption o1 = CommandOption.of(
new String[] { "arg1" },
null,
null,
null,
true,
null,
0,
1,
1,
null,
null);
List<CommandOption> options = Arrays.asList(o1);
String[] args = new String[]{"--arg2"};
CommandParserResults results = parser.parse(options, args);
assertThat(results.results()).hasSize(0);
assertThat(results.errors()).hasSize(2);
assertThat(results.positional()).hasSize(0);
}
private static CommandOption longOption(String name) {
return longOption(name, null);
}