Skip to content

Commit

Permalink
fix(help): Render partially optional values with []
Browse files Browse the repository at this point in the history
Fixes: #4847
  • Loading branch information
fabianfreyer committed Jun 14, 2023
1 parent 3fa7b8f commit f92d34b
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 2 deletions.
16 changes: 14 additions & 2 deletions clap_builder/src/builder/arg.rs
Expand Up @@ -4363,8 +4363,20 @@ impl Arg {
}

debug_assert!(self.is_takes_value_set());

let is_required = |n| match self.is_positional() {
true => required && (num_vals.min_values() != 0),
false => {
// If all values are optional, the [] get rendered by the caller:
// --foo[=<bar>]
// In this case, treat as required.
let required = self.get_min_vals() == 0;
required || (n < num_vals.min_values())
}
};

for (n, val_name) in val_names.iter().enumerate() {
let arg_name = if self.is_positional() && (num_vals.min_values() == 0 || !required) {
let arg_name = if !is_required(n) {
format!("[{val_name}]")
} else {
format!("<{val_name}>")
Expand Down Expand Up @@ -4646,7 +4658,7 @@ mod test {
.value_names(["file", "name"]);
o._build();

assert_eq!(o.to_string(), "-o <file> <name>...");
assert_eq!(o.to_string(), "-o <file> [name]...");
}

#[test]
Expand Down
21 changes: 21 additions & 0 deletions tests/builder/help.rs
Expand Up @@ -2845,3 +2845,24 @@ fn display_name_subcommand_explicit() {
Some("child.display")
);
}

#[test]
fn issue_4847_usage() {
static USAGE_WITH_GROUP: &str = "\
Usage: deno [OPTIONS]
Options:
--example <REQUIRED> [OPTIONAL] issue 4847
-h, --help Print help
";

let cmd = clap::Command::new("hello").bin_name("deno").arg(
Arg::new("example")
.long("example")
.num_args(1..=2)
.help("issue 4847")
.value_names(&["REQUIRED", "OPTIONAL"]),
);

utils::assert_output(cmd, "deno --help", USAGE_WITH_GROUP, false);
}

0 comments on commit f92d34b

Please sign in to comment.