2022-06-07 21:21:12 +00:00
|
|
|
use super::utils;
|
2016-10-26 18:35:20 +00:00
|
|
|
|
|
|
|
use std::str;
|
|
|
|
|
2022-07-26 00:17:01 +00:00
|
|
|
use clap::{Arg, ArgAction, Command};
|
2016-10-26 18:35:20 +00:00
|
|
|
|
2022-07-22 20:43:49 +00:00
|
|
|
#[test]
|
|
|
|
fn no_derive_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static NO_DERIVE_ORDER: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test [OPTIONS]
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2017-01-03 04:05:23 +00:00
|
|
|
--flag_a second flag
|
|
|
|
--flag_b first flag
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help information
|
2017-01-03 04:05:23 +00:00
|
|
|
--option_a <option_a> second option
|
|
|
|
--option_b <option_b> first option
|
2021-09-24 15:58:39 +00:00
|
|
|
-V, --version Print version information
|
|
|
|
";
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2022-07-22 20:43:49 +00:00
|
|
|
let cmd = Command::new("test")
|
|
|
|
.version("1.2")
|
|
|
|
.next_display_order(None)
|
|
|
|
.args(&[
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_b")
|
|
|
|
.long("flag_b")
|
|
|
|
.help("first flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2022-07-22 20:43:49 +00:00
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-07-22 20:43:49 +00:00
|
|
|
.help("first option"),
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_a")
|
|
|
|
.long("flag_a")
|
|
|
|
.help("second flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2022-07-22 20:43:49 +00:00
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-07-22 20:43:49 +00:00
|
|
|
.help("second option"),
|
|
|
|
]);
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2022-07-22 20:43:49 +00:00
|
|
|
utils::assert_output(cmd, "test --help", NO_DERIVE_ORDER, false);
|
|
|
|
}
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2022-07-22 20:43:49 +00:00
|
|
|
#[test]
|
|
|
|
fn derive_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static UNIFIED_HELP_AND_DERIVE: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test [OPTIONS]
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2017-01-03 04:05:23 +00:00
|
|
|
--flag_b first flag
|
|
|
|
--option_b <option_b> first option
|
|
|
|
--flag_a second flag
|
|
|
|
--option_a <option_a> second option
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help information
|
2021-09-24 15:58:39 +00:00
|
|
|
-V, --version Print version information
|
|
|
|
";
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test").version("1.2").args(&[
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_b")
|
|
|
|
.long("flag_b")
|
|
|
|
.help("first flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_b")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_b")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("first option"),
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_a")
|
|
|
|
.long("flag_a")
|
|
|
|
.help("second flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_a")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_a")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("second option"),
|
2018-01-25 04:05:05 +00:00
|
|
|
]);
|
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "test --help", UNIFIED_HELP_AND_DERIVE, false);
|
2016-10-26 18:35:20 +00:00
|
|
|
}
|
|
|
|
|
2022-02-08 00:17:27 +00:00
|
|
|
#[test]
|
|
|
|
fn derive_order_next_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static HELP: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test [OPTIONS]
|
2022-02-08 00:17:27 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-02-08 00:17:27 +00:00
|
|
|
--flag_b first flag
|
|
|
|
--option_b <option_b> first option
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
|
|
|
--flag_a second flag
|
|
|
|
--option_a <option_a> second option
|
|
|
|
";
|
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2022-02-08 00:17:27 +00:00
|
|
|
.version("1.2")
|
|
|
|
.next_display_order(10000)
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("flag_a")
|
|
|
|
.long("flag_a")
|
|
|
|
.help("second flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
|
|
|
)
|
2022-02-08 00:17:27 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-02-08 00:17:27 +00:00
|
|
|
.help("second option"),
|
|
|
|
)
|
|
|
|
.next_display_order(10)
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("flag_b")
|
|
|
|
.long("flag_b")
|
|
|
|
.help("first flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
|
|
|
)
|
2022-02-08 00:17:27 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-02-08 00:17:27 +00:00
|
|
|
.help("first option"),
|
|
|
|
);
|
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "test --help", HELP, false);
|
2022-02-08 01:15:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn derive_order_no_next_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static HELP: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test [OPTIONS]
|
2022-02-08 01:15:45 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-02-08 01:15:45 +00:00
|
|
|
--flag_a first flag
|
|
|
|
--flag_b second flag
|
|
|
|
-h, --help Print help information
|
|
|
|
--option_a <option_a> first option
|
|
|
|
--option_b <option_b> second option
|
|
|
|
-V, --version Print version information
|
|
|
|
";
|
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2022-02-08 01:15:45 +00:00
|
|
|
.version("1.2")
|
|
|
|
.next_display_order(None)
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("flag_a")
|
|
|
|
.long("flag_a")
|
|
|
|
.help("first flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
|
|
|
)
|
2022-02-08 01:15:45 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-02-08 01:15:45 +00:00
|
|
|
.help("first option"),
|
|
|
|
)
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("flag_b")
|
|
|
|
.long("flag_b")
|
|
|
|
.help("second flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
|
|
|
)
|
2022-02-08 01:15:45 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-02-08 01:15:45 +00:00
|
|
|
.help("second option"),
|
|
|
|
);
|
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "test --help", HELP, false);
|
2022-02-08 00:17:27 +00:00
|
|
|
}
|
|
|
|
|
2016-10-26 18:35:20 +00:00
|
|
|
#[test]
|
|
|
|
fn derive_order_subcommand_propagate() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static UNIFIED_DERIVE_SC_PROP: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test sub [OPTIONS]
|
2022-07-22 20:43:49 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-07-22 20:43:49 +00:00
|
|
|
--flag_b first flag
|
|
|
|
--option_b <option_b> first option
|
|
|
|
--flag_a second flag
|
|
|
|
--option_a <option_a> second option
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
|
|
|
";
|
|
|
|
|
|
|
|
let cmd = Command::new("test").subcommand(
|
|
|
|
Command::new("sub").version("1.2").args(&[
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_b")
|
|
|
|
.long("flag_b")
|
|
|
|
.help("first flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2022-07-22 20:43:49 +00:00
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-07-22 20:43:49 +00:00
|
|
|
.help("first option"),
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_a")
|
|
|
|
.long("flag_a")
|
|
|
|
.help("second flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2022-07-22 20:43:49 +00:00
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-07-22 20:43:49 +00:00
|
|
|
.help("second option"),
|
|
|
|
]),
|
|
|
|
);
|
2018-01-25 04:05:05 +00:00
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(cmd, "test sub --help", UNIFIED_DERIVE_SC_PROP, false);
|
2016-10-26 18:35:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2021-10-11 22:01:33 +00:00
|
|
|
fn derive_order_subcommand_propagate_with_explicit_display_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static UNIFIED_DERIVE_SC_PROP_EXPLICIT_ORDER: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test sub [OPTIONS]
|
2022-07-22 20:43:49 +00:00
|
|
|
|
2022-08-26 14:40:23 +00:00
|
|
|
Options:
|
2022-07-22 20:43:49 +00:00
|
|
|
--flag_a second flag
|
|
|
|
--flag_b first flag
|
|
|
|
--option_b <option_b> first option
|
|
|
|
--option_a <option_a> second option
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
|
|
|
";
|
|
|
|
|
|
|
|
let cmd = Command::new("test").subcommand(
|
|
|
|
Command::new("sub").version("1.2").args(&[
|
2022-07-26 00:17:01 +00:00
|
|
|
Arg::new("flag_b")
|
|
|
|
.long("flag_b")
|
|
|
|
.help("first flag")
|
|
|
|
.action(ArgAction::SetTrue),
|
2022-07-22 20:43:49 +00:00
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-07-22 20:43:49 +00:00
|
|
|
.help("first option"),
|
|
|
|
Arg::new("flag_a")
|
|
|
|
.long("flag_a")
|
|
|
|
.help("second flag")
|
2022-07-26 00:17:01 +00:00
|
|
|
.display_order(0)
|
|
|
|
.action(ArgAction::SetTrue),
|
2022-07-22 20:43:49 +00:00
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
2022-07-26 00:17:01 +00:00
|
|
|
.action(ArgAction::Set)
|
2022-07-22 20:43:49 +00:00
|
|
|
.help("second option"),
|
|
|
|
]),
|
|
|
|
);
|
2018-01-25 04:05:05 +00:00
|
|
|
|
2022-04-29 20:32:25 +00:00
|
|
|
utils::assert_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2018-01-25 04:05:05 +00:00
|
|
|
"test sub --help",
|
|
|
|
UNIFIED_DERIVE_SC_PROP_EXPLICIT_ORDER,
|
2022-04-29 20:32:25 +00:00
|
|
|
false,
|
|
|
|
);
|
2016-10-26 18:35:20 +00:00
|
|
|
}
|
2021-02-07 11:58:43 +00:00
|
|
|
|
2022-07-22 19:58:27 +00:00
|
|
|
#[test]
|
|
|
|
fn subcommand_sorted_display_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static SUBCMD_ALPHA_ORDER: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test [COMMAND]
|
2022-07-22 19:58:27 +00:00
|
|
|
|
2022-08-31 02:38:37 +00:00
|
|
|
Commands:
|
2022-07-22 19:58:27 +00:00
|
|
|
a1 blah a1
|
|
|
|
b1 blah b1
|
|
|
|
help Print this message or the help of the given subcommand(s)
|
2022-08-26 15:59:27 +00:00
|
|
|
|
|
|
|
Options:
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2022-07-22 19:58:27 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
let app_subcmd_alpha_order = Command::new("test")
|
|
|
|
.version("1")
|
|
|
|
.next_display_order(None)
|
|
|
|
.subcommands(vec![
|
|
|
|
Command::new("b1")
|
|
|
|
.about("blah b1")
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(Arg::new("test").short('t').action(ArgAction::SetTrue)),
|
2022-07-22 19:58:27 +00:00
|
|
|
Command::new("a1")
|
|
|
|
.about("blah a1")
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(Arg::new("roster").short('r').action(ArgAction::SetTrue)),
|
2022-07-22 19:58:27 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
utils::assert_output(
|
|
|
|
app_subcmd_alpha_order,
|
|
|
|
"test --help",
|
|
|
|
SUBCMD_ALPHA_ORDER,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_derived_display_order() {
|
2022-08-31 14:29:00 +00:00
|
|
|
static SUBCMD_DECL_ORDER: &str = "\
|
2022-09-07 16:03:55 +00:00
|
|
|
Usage: test [COMMAND]
|
2022-07-22 19:58:27 +00:00
|
|
|
|
2022-08-31 02:38:37 +00:00
|
|
|
Commands:
|
2022-07-22 19:58:27 +00:00
|
|
|
b1 blah b1
|
|
|
|
a1 blah a1
|
|
|
|
help Print this message or the help of the given subcommand(s)
|
2022-08-26 15:59:27 +00:00
|
|
|
|
|
|
|
Options:
|
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2022-07-22 19:58:27 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
let app_subcmd_decl_order = Command::new("test").version("1").subcommands(vec![
|
|
|
|
Command::new("b1")
|
|
|
|
.about("blah b1")
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(Arg::new("test").short('t').action(ArgAction::SetTrue)),
|
2022-07-22 19:58:27 +00:00
|
|
|
Command::new("a1")
|
|
|
|
.about("blah a1")
|
2022-07-26 00:17:01 +00:00
|
|
|
.arg(Arg::new("roster").short('r').action(ArgAction::SetTrue)),
|
2022-07-22 19:58:27 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
utils::assert_output(
|
|
|
|
app_subcmd_decl_order,
|
|
|
|
"test --help",
|
|
|
|
SUBCMD_DECL_ORDER,
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
}
|