clap/tests/builder/hidden_args.rs

305 lines
7.6 KiB
Rust
Raw Normal View History

use super::utils;
2015-10-01 03:34:23 +00:00
use clap::{arg, builder::PossibleValue, Arg, ArgAction, Command};
2015-10-01 03:34:23 +00:00
static HIDDEN_ARGS: &str = "\
2015-10-01 03:34:23 +00:00
tests stuff
Usage: test [OPTIONS]
2015-10-01 03:34:23 +00:00
Options:
-F, --flag2 some other flag
--option <opt> some option
-h, --help Print help
-V, --version Print version
";
#[test]
fn hide_args() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.author("Kevin K.")
.about("tests stuff")
.version("1.4")
2022-11-24 13:54:25 +00:00
.args([
arg!(-f --flag "some flag").hide(true),
2021-11-19 20:33:11 +00:00
arg!(-F --flag2 "some other flag"),
arg!(--option <opt> "some option"),
Arg::new("DUMMY").hide(true),
2018-01-25 04:05:05 +00:00
]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_ARGS, false);
2015-10-01 03:34:23 +00:00
}
static HIDDEN_SHORT_ARGS: &str = "\
hides short args
Usage: test [OPTIONS]
Options:
-v, --visible This text should be visible
-h, --help Print help (see more with '--help')
-V, --version Print version
";
/// Ensure hide with short option
#[test]
fn hide_short_args() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.about("hides short args")
.author("Steve P.")
.version("2.31.2")
2022-11-24 13:54:25 +00:00
.args([
Arg::new("cfg")
.short('c')
.long("config")
.hide_short_help(true)
.action(ArgAction::SetTrue)
.help("Some help text describing the --config arg"),
Arg::new("visible")
.short('v')
.long("visible")
.action(ArgAction::SetTrue)
.help("This text should be visible"),
2018-08-02 03:13:51 +00:00
]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test -h", HIDDEN_SHORT_ARGS, false);
}
/// Ensure visible with opposite option
#[test]
fn hide_short_args_long_help() {
static HIDDEN_SHORT_ARGS_LONG_HELP: &str = "\
hides short args
Usage: test [OPTIONS]
Options:
-c, --config
Some help text describing the --config arg
-v, --visible
This text should be visible
-h, --help
Print help (see a summary with '-h')
-V, --version
Print version
";
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.about("hides short args")
.author("Steve P.")
.version("2.31.2")
2022-11-24 13:54:25 +00:00
.args([
Arg::new("cfg")
.short('c')
.long("config")
.hide_short_help(true)
.action(ArgAction::SetTrue)
.help("Some help text describing the --config arg"),
Arg::new("visible")
.short('v')
.long("visible")
.action(ArgAction::SetTrue)
.help("This text should be visible"),
2018-08-02 03:13:51 +00:00
]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_SHORT_ARGS_LONG_HELP, false);
}
static HIDDEN_LONG_ARGS: &str = "\
hides long args
Usage: test [OPTIONS]
Options:
-v, --visible
This text should be visible
-h, --help
Print help (see a summary with '-h')
-V, --version
Print version
";
#[test]
fn hide_long_args() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.about("hides long args")
.author("Steve P.")
.version("2.31.2")
2022-11-24 13:54:25 +00:00
.args([
Arg::new("cfg")
.short('c')
.long("config")
.hide_long_help(true)
.action(ArgAction::SetTrue)
.help("Some help text describing the --config arg"),
Arg::new("visible")
.short('v')
.long("visible")
.action(ArgAction::SetTrue)
.help("This text should be visible"),
2018-08-02 03:13:51 +00:00
]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_LONG_ARGS, false);
}
static HIDDEN_LONG_ARGS_SHORT_HELP: &str = "\
hides long args
Usage: test [OPTIONS]
Options:
-c, --config Some help text describing the --config arg
-v, --visible This text should be visible
-h, --help Print help (see more with '--help')
-V, --version Print version
";
#[test]
fn hide_long_args_short_help() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.about("hides long args")
.author("Steve P.")
.version("2.31.2")
2022-11-24 13:54:25 +00:00
.args([
Arg::new("cfg")
.short('c')
.long("config")
.hide_long_help(true)
.action(ArgAction::SetTrue)
.help("Some help text describing the --config arg"),
Arg::new("visible")
.short('v')
.long("visible")
.action(ArgAction::SetTrue)
.help("This text should be visible"),
2018-08-02 03:13:51 +00:00
]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test -h", HIDDEN_LONG_ARGS_SHORT_HELP, false);
2018-08-02 03:13:51 +00:00
}
static HIDDEN_POS_ARGS: &str = "\
Usage: test [another]
Arguments:
[another] another pos
Options:
-h, --help Print help
-V, --version Print version
";
#[test]
fn hide_pos_args() {
2022-11-24 13:54:25 +00:00
let cmd = Command::new("test").version("1.4").args([
Arg::new("pos").help("some pos").hide(true),
Arg::new("another").help("another pos"),
]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_POS_ARGS, false);
}
static HIDDEN_SUBCMDS: &str = "\
Usage: test
Options:
-h, --help Print help
-V, --version Print version
";
#[test]
fn hide_subcmds() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.version("1.4")
2022-02-12 03:48:29 +00:00
.subcommand(Command::new("sub").hide(true));
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_SUBCMDS, false);
}
static HIDDEN_OPT_ARGS_ONLY: &str = "\
Usage: test
After help
";
#[test]
fn hide_opt_args_only() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.version("1.4")
.after_help("After help")
.disable_help_flag(true)
.disable_version_flag(true)
.arg(arg!(-h - -help).action(ArgAction::Help).hide(true))
.arg(arg!(-v - -version).hide(true))
.arg(arg!(--option <opt> "some option").hide(true));
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_OPT_ARGS_ONLY, false);
}
static HIDDEN_POS_ARGS_ONLY: &str = "\
Usage: test
After help
";
#[test]
fn hide_pos_args_only() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.version("1.4")
.after_help("After help")
.disable_help_flag(true)
.disable_version_flag(true)
.arg(arg!(-h - -help).action(ArgAction::Help).hide(true))
.arg(arg!(-v - -version).hide(true))
2022-11-24 13:54:25 +00:00
.args([Arg::new("pos").help("some pos").hide(true)]);
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_POS_ARGS_ONLY, false);
}
static HIDDEN_SUBCMDS_ONLY: &str = "\
Usage: test
After help
";
#[test]
fn hide_subcmds_only() {
2022-02-14 21:47:20 +00:00
let cmd = Command::new("test")
.version("1.4")
.after_help("After help")
.disable_help_flag(true)
.disable_version_flag(true)
.arg(arg!(-h - -help).action(ArgAction::Help).hide(true))
.arg(arg!(-v - -version).hide(true))
2022-02-12 03:48:29 +00:00
.subcommand(Command::new("sub").hide(true));
2022-04-29 20:32:25 +00:00
utils::assert_output(cmd, "test --help", HIDDEN_SUBCMDS_ONLY, false);
}
#[test]
fn hidden_arg_with_possible_value_with_help() {
// Normally the presence of a possible value with a help text triggers a
// change of the --help help text by appending `(see more with '--help')`
// or `(see a summary with '-h')`. When the argument is completely hidden
// we however do not want it to trigger that change.
static POS_VALS_HELP: &str = "\
Usage: ctest
Options:
-h, --help Print help
";
let app = Command::new("ctest").arg(
Arg::new("pos")
.hide(true)
.value_parser([
PossibleValue::new("fast"),
PossibleValue::new("slow").help("not as fast"),
])
.action(ArgAction::Set),
);
utils::assert_output(app, "ctest --help", POS_VALS_HELP, false);
}