2021-11-30 15:31:19 +00:00
|
|
|
use crate::utils;
|
2016-10-26 18:35:20 +00:00
|
|
|
|
|
|
|
use std::str;
|
|
|
|
|
2022-02-12 03:48:29 +00:00
|
|
|
use clap::{AppSettings, Arg, Command};
|
2016-10-26 18:35:20 +00:00
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static NO_DERIVE_ORDER: &str = "test 1.2
|
2016-10-26 18:35:20 +00:00
|
|
|
|
2017-01-03 04:05:23 +00:00
|
|
|
USAGE:
|
|
|
|
test [OPTIONS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--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
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static UNIFIED_HELP_AND_DERIVE: &str = "test 1.2
|
2017-01-03 04:05:23 +00:00
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test [OPTIONS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--flag_b first flag
|
|
|
|
--option_b <option_b> first option
|
|
|
|
--flag_a second flag
|
2021-09-24 15:58:39 +00:00
|
|
|
--option_a <option_a> second option
|
2021-10-08 17:05:40 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2021-09-24 15:58:39 +00:00
|
|
|
";
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static UNIFIED_DERIVE_SC_PROP: &str = "test-sub 1.2
|
2017-01-03 04:05:23 +00:00
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test sub [OPTIONS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--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
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static UNIFIED_DERIVE_SC_PROP_EXPLICIT_ORDER: &str = "test-sub 1.2
|
2017-01-03 04:05:23 +00:00
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test sub [OPTIONS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--flag_a second flag
|
|
|
|
--flag_b first flag
|
|
|
|
--option_b <option_b> first option
|
|
|
|
--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
|
|
|
|
";
|
2016-10-26 18:35:20 +00:00
|
|
|
|
2021-02-07 11:58:43 +00:00
|
|
|
static PREFER_USER_HELP_DERIVE_ORDER: &str = "test 1.2
|
|
|
|
|
|
|
|
USAGE:
|
2021-10-11 22:01:33 +00:00
|
|
|
test [OPTIONS]
|
2021-02-07 11:58:43 +00:00
|
|
|
|
2021-10-11 22:01:33 +00:00
|
|
|
OPTIONS:
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help message
|
2021-02-07 11:58:43 +00:00
|
|
|
--flag_b first flag
|
2021-09-24 15:58:39 +00:00
|
|
|
--flag_a second flag
|
2021-10-08 17:05:40 +00:00
|
|
|
-V, --version Print version information
|
2021-09-24 15:58:39 +00:00
|
|
|
";
|
2021-02-07 11:58:43 +00:00
|
|
|
|
|
|
|
static PREFER_USER_HELP_SUBCMD_DERIVE_ORDER: &str = "test-sub 1.2
|
|
|
|
|
|
|
|
USAGE:
|
2021-10-11 22:01:33 +00:00
|
|
|
test sub [OPTIONS]
|
2021-02-07 11:58:43 +00:00
|
|
|
|
2021-10-11 22:01:33 +00:00
|
|
|
OPTIONS:
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help message
|
2021-02-07 11:58:43 +00:00
|
|
|
--flag_b first flag
|
|
|
|
--flag_a second flag
|
2021-09-24 15:58:39 +00:00
|
|
|
-V, --version Print version information
|
|
|
|
";
|
2021-02-07 11:58:43 +00:00
|
|
|
|
2016-10-26 18:35:20 +00:00
|
|
|
#[test]
|
|
|
|
fn no_derive_order() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test").version("1.2").args(&[
|
2021-11-18 16:17:15 +00:00
|
|
|
Arg::new("flag_b").long("flag_b").help("first flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_b")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_b")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("first option"),
|
|
|
|
Arg::new("flag_a").long("flag_a").help("second flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_a")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_a")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("second option"),
|
2018-01-25 04:05:05 +00:00
|
|
|
]);
|
|
|
|
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2018-01-25 04:05:05 +00:00
|
|
|
"test --help",
|
|
|
|
NO_DERIVE_ORDER,
|
|
|
|
false
|
|
|
|
));
|
2016-10-26 18:35:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn derive_order() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2016-10-26 18:35:20 +00:00
|
|
|
.setting(AppSettings::DeriveDisplayOrder)
|
2017-01-03 04:05:23 +00:00
|
|
|
.version("1.2")
|
2016-10-26 18:35:20 +00:00
|
|
|
.args(&[
|
2021-11-18 16:17:15 +00:00
|
|
|
Arg::new("flag_b").long("flag_b").help("first flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_b")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_b")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("first option"),
|
|
|
|
Arg::new("flag_a").long("flag_a").help("second flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_a")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_a")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("second option"),
|
2016-10-26 18:35:20 +00:00
|
|
|
]);
|
|
|
|
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2018-01-25 04:05:05 +00:00
|
|
|
"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() {
|
|
|
|
static HELP: &str = "test 1.2
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test [OPTIONS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--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
|
|
|
.setting(AppSettings::DeriveDisplayOrder)
|
|
|
|
.version("1.2")
|
|
|
|
.next_display_order(10000)
|
|
|
|
.arg(Arg::new("flag_a").long("flag_a").help("second flag"))
|
|
|
|
.arg(
|
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
|
|
|
.takes_value(true)
|
|
|
|
.help("second option"),
|
|
|
|
)
|
|
|
|
.next_display_order(10)
|
|
|
|
.arg(Arg::new("flag_b").long("flag_b").help("first flag"))
|
|
|
|
.arg(
|
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
|
|
|
.takes_value(true)
|
|
|
|
.help("first option"),
|
|
|
|
);
|
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
assert!(utils::compare_output(cmd, "test --help", HELP, false));
|
2022-02-08 01:15:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn derive_order_no_next_order() {
|
|
|
|
static HELP: &str = "test 1.2
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test [OPTIONS]
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
--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
|
|
|
.setting(AppSettings::DeriveDisplayOrder)
|
|
|
|
.version("1.2")
|
|
|
|
.next_display_order(None)
|
|
|
|
.arg(Arg::new("flag_a").long("flag_a").help("first flag"))
|
|
|
|
.arg(
|
|
|
|
Arg::new("option_a")
|
|
|
|
.long("option_a")
|
|
|
|
.takes_value(true)
|
|
|
|
.help("first option"),
|
|
|
|
)
|
|
|
|
.arg(Arg::new("flag_b").long("flag_b").help("second flag"))
|
|
|
|
.arg(
|
|
|
|
Arg::new("option_b")
|
|
|
|
.long("option_b")
|
|
|
|
.takes_value(true)
|
|
|
|
.help("second option"),
|
|
|
|
);
|
|
|
|
|
2022-02-14 21:47:20 +00:00
|
|
|
assert!(utils::compare_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-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2016-10-26 18:35:20 +00:00
|
|
|
.global_setting(AppSettings::DeriveDisplayOrder)
|
2018-01-25 04:05:05 +00:00
|
|
|
.subcommand(
|
2022-02-12 03:48:29 +00:00
|
|
|
Command::new("sub").version("1.2").args(&[
|
2021-11-18 16:17:15 +00:00
|
|
|
Arg::new("flag_b").long("flag_b").help("first flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_b")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_b")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("first option"),
|
|
|
|
Arg::new("flag_a").long("flag_a").help("second flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_a")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_a")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("second option"),
|
2018-01-25 04:05:05 +00:00
|
|
|
]),
|
|
|
|
);
|
|
|
|
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_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,
|
|
|
|
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-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2016-10-26 18:35:20 +00:00
|
|
|
.global_setting(AppSettings::DeriveDisplayOrder)
|
2018-01-25 04:05:05 +00:00
|
|
|
.subcommand(
|
2022-02-12 03:48:29 +00:00
|
|
|
Command::new("sub").version("1.2").args(&[
|
2021-11-18 16:17:15 +00:00
|
|
|
Arg::new("flag_b").long("flag_b").help("first flag"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_b")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_b")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("first option"),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("flag_a")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("flag_a")
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("second flag")
|
2018-01-25 04:05:05 +00:00
|
|
|
.display_order(0),
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option_a")
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("option_a")
|
|
|
|
.takes_value(true)
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("second option"),
|
2018-01-25 04:05:05 +00:00
|
|
|
]),
|
|
|
|
);
|
|
|
|
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_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,
|
|
|
|
false
|
|
|
|
));
|
2016-10-26 18:35:20 +00:00
|
|
|
}
|
2021-02-07 11:58:43 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn prefer_user_help_with_derive_order() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2021-02-07 11:58:43 +00:00
|
|
|
.setting(AppSettings::DeriveDisplayOrder)
|
|
|
|
.version("1.2")
|
|
|
|
.args(&[
|
|
|
|
Arg::new("help")
|
|
|
|
.long("help")
|
|
|
|
.short('h')
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("Print help message"),
|
|
|
|
Arg::new("flag_b").long("flag_b").help("first flag"),
|
|
|
|
Arg::new("flag_a").long("flag_a").help("second flag"),
|
2021-02-07 11:58:43 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2021-02-07 11:58:43 +00:00
|
|
|
"test --help",
|
|
|
|
PREFER_USER_HELP_DERIVE_ORDER,
|
|
|
|
false
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn prefer_user_help_in_subcommand_with_derive_order() {
|
2022-02-14 21:47:20 +00:00
|
|
|
let cmd = Command::new("test")
|
2021-02-07 11:58:43 +00:00
|
|
|
.global_setting(AppSettings::DeriveDisplayOrder)
|
|
|
|
.subcommand(
|
2022-02-12 03:48:29 +00:00
|
|
|
Command::new("sub").version("1.2").args(&[
|
2021-02-07 11:58:43 +00:00
|
|
|
Arg::new("help")
|
|
|
|
.long("help")
|
|
|
|
.short('h')
|
2021-11-18 16:17:15 +00:00
|
|
|
.help("Print help message"),
|
|
|
|
Arg::new("flag_b").long("flag_b").help("first flag"),
|
|
|
|
Arg::new("flag_a").long("flag_a").help("second flag"),
|
2021-02-07 11:58:43 +00:00
|
|
|
]),
|
|
|
|
);
|
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
2022-02-14 21:47:20 +00:00
|
|
|
cmd,
|
2021-02-07 11:58:43 +00:00
|
|
|
"test sub --help",
|
|
|
|
PREFER_USER_HELP_SUBCMD_DERIVE_ORDER,
|
|
|
|
false
|
|
|
|
));
|
|
|
|
}
|