2022-06-07 16:21:12 -05:00
|
|
|
use super::utils;
|
2015-09-30 23:34:23 -04:00
|
|
|
|
2022-07-25 19:17:01 -05:00
|
|
|
use clap::{arg, Arg, ArgAction, Command};
|
2015-09-30 23:34:23 -04:00
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_ARGS: &str = "\
|
2015-09-30 23:34:23 -04:00
|
|
|
tests stuff
|
|
|
|
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test [OPTIONS]
|
2015-09-30 23:34:23 -04:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2021-10-11 17:01:33 -05:00
|
|
|
-F, --flag2 some other flag
|
2021-09-24 11:58:39 -04:00
|
|
|
--option <opt> some option
|
2022-07-22 15:43:49 -05:00
|
|
|
-h, --help Print help information
|
2021-10-11 17:01:33 -05:00
|
|
|
-V, --version Print version information
|
2021-09-24 11:58:39 -04:00
|
|
|
";
|
2017-01-02 23:05:23 -05:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_args() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2017-01-02 23:05:23 -05:00
|
|
|
.author("Kevin K.")
|
|
|
|
.about("tests stuff")
|
2017-03-03 09:32:09 +01:00
|
|
|
.version("1.4")
|
2018-01-24 23:05:05 -05:00
|
|
|
.args(&[
|
2021-11-29 10:45:30 -06:00
|
|
|
arg!(-f --flag "some flag").hide(true),
|
2021-11-19 14:33:11 -06:00
|
|
|
arg!(-F --flag2 "some other flag"),
|
|
|
|
arg!(--option <opt> "some option").required(false),
|
2021-11-29 10:45:30 -06:00
|
|
|
Arg::new("DUMMY").hide(true),
|
2018-01-24 23:05:05 -05:00
|
|
|
]);
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_ARGS, false);
|
2015-09-30 23:34:23 -04:00
|
|
|
}
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_SHORT_ARGS: &str = "\
|
2018-04-03 20:00:21 -04:00
|
|
|
hides short args
|
|
|
|
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test [OPTIONS]
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2020-10-10 23:11:42 +08:00
|
|
|
-v, --visible This text should be visible
|
2022-08-31 14:16:49 -05:00
|
|
|
-h, --help Print help information (use `--help` for more detail)
|
2021-09-24 11:58:39 -04:00
|
|
|
-V, --version Print version information
|
|
|
|
";
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2021-11-29 10:45:30 -06:00
|
|
|
/// Ensure hide with short option
|
2018-04-03 20:00:21 -04:00
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_short_args() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2018-04-03 20:00:21 -04:00
|
|
|
.about("hides short args")
|
|
|
|
.author("Steve P.")
|
|
|
|
.version("2.31.2")
|
|
|
|
.args(&[
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("cfg")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('c')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("config")
|
2021-11-29 10:45:30 -06:00
|
|
|
.hide_short_help(true)
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("Some help text describing the --config arg"),
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("visible")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('v')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("visible")
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("This text should be visible"),
|
2018-08-01 23:13:51 -04:00
|
|
|
]);
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test -h", HIDDEN_SHORT_ARGS, false);
|
2018-04-03 20:00:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensure visible with opposite option
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_short_args_long_help() {
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_SHORT_ARGS_LONG_HELP: &str = "\
|
2022-07-22 15:43:49 -05:00
|
|
|
hides short args
|
|
|
|
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test [OPTIONS]
|
2022-07-22 15:43:49 -05:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2022-07-22 15:43:49 -05:00
|
|
|
-c, --config
|
|
|
|
Some help text describing the --config arg
|
|
|
|
|
|
|
|
-v, --visible
|
|
|
|
This text should be visible
|
|
|
|
|
|
|
|
-h, --help
|
2022-08-31 14:16:49 -05:00
|
|
|
Print help information (use `-h` for a summary)
|
2022-07-22 15:43:49 -05:00
|
|
|
|
|
|
|
-V, --version
|
|
|
|
Print version information
|
|
|
|
";
|
|
|
|
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2018-04-03 20:00:21 -04:00
|
|
|
.about("hides short args")
|
|
|
|
.author("Steve P.")
|
|
|
|
.version("2.31.2")
|
|
|
|
.args(&[
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("cfg")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('c')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("config")
|
2021-11-29 10:45:30 -06:00
|
|
|
.hide_short_help(true)
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("Some help text describing the --config arg"),
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("visible")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('v')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("visible")
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("This text should be visible"),
|
2018-08-01 23:13:51 -04:00
|
|
|
]);
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_SHORT_ARGS_LONG_HELP, false);
|
2018-04-03 20:00:21 -04:00
|
|
|
}
|
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_LONG_ARGS: &str = "\
|
2018-04-03 20:00:21 -04:00
|
|
|
hides long args
|
|
|
|
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test [OPTIONS]
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2020-08-20 15:45:38 +03:00
|
|
|
-v, --visible
|
2020-10-10 23:11:42 +08:00
|
|
|
This text should be visible
|
|
|
|
|
2022-07-22 15:43:49 -05:00
|
|
|
-h, --help
|
2022-08-31 14:16:49 -05:00
|
|
|
Print help information (use `-h` for a summary)
|
2022-07-22 15:43:49 -05:00
|
|
|
|
2020-10-10 23:11:42 +08:00
|
|
|
-V, --version
|
2021-09-24 11:58:39 -04:00
|
|
|
Print version information
|
|
|
|
";
|
2018-04-03 20:00:21 -04:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_long_args() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2018-04-03 20:00:21 -04:00
|
|
|
.about("hides long args")
|
|
|
|
.author("Steve P.")
|
|
|
|
.version("2.31.2")
|
|
|
|
.args(&[
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("cfg")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('c')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("config")
|
2021-11-29 10:45:30 -06:00
|
|
|
.hide_long_help(true)
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("Some help text describing the --config arg"),
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("visible")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('v')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("visible")
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("This text should be visible"),
|
2018-08-01 23:13:51 -04:00
|
|
|
]);
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_LONG_ARGS, false);
|
2018-04-03 20:00:21 -04:00
|
|
|
}
|
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_LONG_ARGS_SHORT_HELP: &str = "\
|
2018-04-03 20:00:21 -04:00
|
|
|
hides long args
|
|
|
|
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test [OPTIONS]
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2018-04-03 20:00:21 -04:00
|
|
|
-c, --config Some help text describing the --config arg
|
2020-10-10 23:11:42 +08:00
|
|
|
-v, --visible This text should be visible
|
2022-08-31 14:16:49 -05:00
|
|
|
-h, --help Print help information (use `--help` for more detail)
|
2021-09-24 11:58:39 -04:00
|
|
|
-V, --version Print version information
|
|
|
|
";
|
2018-04-03 20:00:21 -04:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_long_args_short_help() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2018-04-03 20:00:21 -04:00
|
|
|
.about("hides long args")
|
|
|
|
.author("Steve P.")
|
|
|
|
.version("2.31.2")
|
|
|
|
.args(&[
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("cfg")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('c')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("config")
|
2021-11-29 10:45:30 -06:00
|
|
|
.hide_long_help(true)
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("Some help text describing the --config arg"),
|
2020-05-14 22:50:56 +02:00
|
|
|
Arg::new("visible")
|
2018-07-23 15:09:42 -04:00
|
|
|
.short('v')
|
2018-04-03 20:00:21 -04:00
|
|
|
.long("visible")
|
2022-07-25 19:17:01 -05:00
|
|
|
.action(ArgAction::SetTrue)
|
2021-11-18 10:17:15 -06:00
|
|
|
.help("This text should be visible"),
|
2018-08-01 23:13:51 -04:00
|
|
|
]);
|
2018-04-03 20:00:21 -04:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test -h", HIDDEN_LONG_ARGS_SHORT_HELP, false);
|
2018-08-01 23:13:51 -04:00
|
|
|
}
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_POS_ARGS: &str = "\
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test [another]
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Arguments:
|
2022-08-29 15:09:06 -05:00
|
|
|
[another] another pos
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2021-10-08 13:05:40 -04:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2021-09-24 11:58:39 -04:00
|
|
|
";
|
2021-02-08 03:33:57 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_pos_args() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test").version("1.4").args(&[
|
2021-11-29 10:45:30 -06:00
|
|
|
Arg::new("pos").help("some pos").hide(true),
|
2021-11-18 10:17:15 -06:00
|
|
|
Arg::new("another").help("another pos"),
|
2021-10-08 13:05:40 -04:00
|
|
|
]);
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_POS_ARGS, false);
|
2021-02-08 03:33:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_SUBCMDS: &str = "\
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-08-26 09:40:23 -05:00
|
|
|
Options:
|
2021-10-08 13:05:40 -04:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2021-09-24 11:58:39 -04:00
|
|
|
";
|
2021-02-08 03:33:57 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_subcmds() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2021-02-08 03:33:57 +00:00
|
|
|
.version("1.4")
|
2022-02-11 21:48:29 -06:00
|
|
|
.subcommand(Command::new("sub").hide(true));
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_SUBCMDS, false);
|
2021-02-08 03:33:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_OPT_ARGS_ONLY: &str = "\
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2021-09-24 11:58:39 -04:00
|
|
|
After help
|
|
|
|
";
|
2021-02-08 03:33:57 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_opt_args_only() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2021-02-08 03:33:57 +00:00
|
|
|
.version("1.4")
|
|
|
|
.after_help("After help")
|
2022-08-08 16:08:47 -05:00
|
|
|
.disable_help_flag(true)
|
|
|
|
.disable_version_flag(true)
|
2022-08-10 15:13:44 -05:00
|
|
|
.arg(arg!(-h - -help).action(ArgAction::Help).hide(true))
|
2022-08-08 16:08:47 -05:00
|
|
|
.arg(arg!(-v - -version).hide(true))
|
2021-11-19 14:33:11 -06:00
|
|
|
.arg(
|
|
|
|
arg!(--option <opt> "some option")
|
|
|
|
.required(false)
|
2021-11-29 10:45:30 -06:00
|
|
|
.hide(true),
|
2021-11-19 14:33:11 -06:00
|
|
|
);
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_OPT_ARGS_ONLY, false);
|
2021-02-08 03:33:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_POS_ARGS_ONLY: &str = "\
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2021-09-24 11:58:39 -04:00
|
|
|
After help
|
|
|
|
";
|
2021-02-08 03:33:57 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_pos_args_only() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2021-02-08 03:33:57 +00:00
|
|
|
.version("1.4")
|
|
|
|
.after_help("After help")
|
2022-08-08 16:08:47 -05:00
|
|
|
.disable_help_flag(true)
|
|
|
|
.disable_version_flag(true)
|
2022-08-10 15:13:44 -05:00
|
|
|
.arg(arg!(-h - -help).action(ArgAction::Help).hide(true))
|
2022-08-08 16:08:47 -05:00
|
|
|
.arg(arg!(-v - -version).hide(true))
|
2021-11-29 10:45:30 -06:00
|
|
|
.args(&[Arg::new("pos").help("some pos").hide(true)]);
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_POS_ARGS_ONLY, false);
|
2021-02-08 03:33:57 +00:00
|
|
|
}
|
|
|
|
|
2022-08-31 09:29:00 -05:00
|
|
|
static HIDDEN_SUBCMDS_ONLY: &str = "\
|
2022-09-07 11:03:55 -05:00
|
|
|
Usage: test
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2021-09-24 11:58:39 -04:00
|
|
|
After help
|
|
|
|
";
|
2021-02-08 03:33:57 +00:00
|
|
|
|
|
|
|
#[test]
|
2021-11-29 10:45:30 -06:00
|
|
|
fn hide_subcmds_only() {
|
2022-02-14 15:47:20 -06:00
|
|
|
let cmd = Command::new("test")
|
2021-02-08 03:33:57 +00:00
|
|
|
.version("1.4")
|
|
|
|
.after_help("After help")
|
2022-08-08 16:08:47 -05:00
|
|
|
.disable_help_flag(true)
|
|
|
|
.disable_version_flag(true)
|
2022-08-10 15:13:44 -05:00
|
|
|
.arg(arg!(-h - -help).action(ArgAction::Help).hide(true))
|
2022-08-08 16:08:47 -05:00
|
|
|
.arg(arg!(-v - -version).hide(true))
|
2022-02-11 21:48:29 -06:00
|
|
|
.subcommand(Command::new("sub").hide(true));
|
2021-02-08 03:33:57 +00:00
|
|
|
|
2022-04-29 15:32:25 -05:00
|
|
|
utils::assert_output(cmd, "test --help", HIDDEN_SUBCMDS_ONLY, false);
|
2021-02-08 03:33:57 +00:00
|
|
|
}
|