2020-02-04 08:10:53 +00:00
|
|
|
mod utils;
|
2016-01-13 16:06:00 +00:00
|
|
|
|
2021-09-04 20:10:24 +00:00
|
|
|
use clap::{App, AppSettings, Arg, ErrorKind};
|
2016-01-13 16:06:00 +00:00
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static VISIBLE_ALIAS_HELP: &str = "clap-test 2.6
|
2016-06-10 01:55:53 +00:00
|
|
|
|
|
|
|
USAGE:
|
2016-06-24 04:17:04 +00:00
|
|
|
clap-test [SUBCOMMAND]
|
2016-06-10 01:55:53 +00:00
|
|
|
|
2021-10-11 22:01:33 +00:00
|
|
|
OPTIONS:
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2016-06-10 01:55:53 +00:00
|
|
|
|
|
|
|
SUBCOMMANDS:
|
2021-07-30 03:23:25 +00:00
|
|
|
help Print this message or the help of the given subcommand(s)
|
2021-09-24 15:58:39 +00:00
|
|
|
test Some help [aliases: dongle, done]
|
|
|
|
";
|
2016-06-13 01:52:18 +00:00
|
|
|
|
2019-10-02 13:27:19 +00:00
|
|
|
static INVISIBLE_ALIAS_HELP: &str = "clap-test 2.6
|
2016-06-13 01:52:18 +00:00
|
|
|
|
|
|
|
USAGE:
|
2016-06-24 04:17:04 +00:00
|
|
|
clap-test [SUBCOMMAND]
|
2016-06-13 01:52:18 +00:00
|
|
|
|
2021-10-11 22:01:33 +00:00
|
|
|
OPTIONS:
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2016-06-13 01:52:18 +00:00
|
|
|
|
|
|
|
SUBCOMMANDS:
|
2021-07-30 03:23:25 +00:00
|
|
|
help Print this message or the help of the given subcommand(s)
|
2021-09-24 15:58:39 +00:00
|
|
|
test Some help
|
|
|
|
";
|
2016-06-10 01:55:53 +00:00
|
|
|
|
2020-04-02 04:35:48 +00:00
|
|
|
static SUBCMD_ALPHA_ORDER: &str = "test 1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test [SUBCOMMAND]
|
|
|
|
|
2021-10-11 22:01:33 +00:00
|
|
|
OPTIONS:
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2020-04-02 04:35:48 +00:00
|
|
|
|
|
|
|
SUBCOMMANDS:
|
|
|
|
a1 blah a1
|
|
|
|
b1 blah b1
|
2021-09-24 15:58:39 +00:00
|
|
|
help Print this message or the help of the given subcommand(s)
|
|
|
|
";
|
2020-04-02 04:35:48 +00:00
|
|
|
|
|
|
|
static SUBCMD_DECL_ORDER: &str = "test 1
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
test [SUBCOMMAND]
|
|
|
|
|
2021-10-11 22:01:33 +00:00
|
|
|
OPTIONS:
|
2021-07-30 03:23:25 +00:00
|
|
|
-h, --help Print help information
|
|
|
|
-V, --version Print version information
|
2020-04-02 04:35:48 +00:00
|
|
|
|
|
|
|
SUBCOMMANDS:
|
|
|
|
b1 blah b1
|
|
|
|
a1 blah a1
|
2021-09-24 15:58:39 +00:00
|
|
|
help Print this message or the help of the given subcommand(s)
|
|
|
|
";
|
2020-04-02 04:35:48 +00:00
|
|
|
|
2017-01-03 04:05:23 +00:00
|
|
|
#[cfg(feature = "suggestions")]
|
2019-10-02 13:27:19 +00:00
|
|
|
static DYM_SUBCMD: &str = "error: The subcommand 'subcm' wasn't recognized
|
2020-04-12 01:39:13 +00:00
|
|
|
|
2018-01-09 15:24:24 +00:00
|
|
|
Did you mean 'subcmd'?
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2018-01-09 15:24:24 +00:00
|
|
|
If you believe you received this message in error, try re-running with 'dym -- subcm'
|
2017-01-03 04:05:23 +00:00
|
|
|
|
|
|
|
USAGE:
|
2018-01-09 15:24:24 +00:00
|
|
|
dym [SUBCOMMAND]
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2021-09-24 15:58:39 +00:00
|
|
|
For more information try --help
|
|
|
|
";
|
2017-01-03 04:05:23 +00:00
|
|
|
|
2020-03-01 09:07:37 +00:00
|
|
|
#[cfg(feature = "suggestions")]
|
|
|
|
static DYM_SUBCMD_AMBIGUOUS: &str = "error: The subcommand 'te' wasn't recognized
|
2020-04-12 01:39:13 +00:00
|
|
|
|
2020-03-01 09:07:37 +00:00
|
|
|
Did you mean 'test' or 'temp'?
|
|
|
|
|
|
|
|
If you believe you received this message in error, try re-running with 'dym -- te'
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
dym [SUBCOMMAND]
|
|
|
|
|
2021-09-24 15:58:39 +00:00
|
|
|
For more information try --help
|
|
|
|
";
|
2020-03-01 09:07:37 +00:00
|
|
|
|
2020-10-07 12:17:26 +00:00
|
|
|
static SUBCMD_AFTER_DOUBLE_DASH: &str =
|
|
|
|
"error: Found argument 'subcmd' which wasn't expected, or isn't valid in this context
|
|
|
|
|
2020-10-09 16:31:00 +00:00
|
|
|
\tIf you tried to supply `subcmd` as a subcommand, remove the '--' before it.
|
2020-10-07 12:17:26 +00:00
|
|
|
|
|
|
|
USAGE:
|
|
|
|
app [SUBCOMMAND]
|
|
|
|
|
2021-09-24 15:58:39 +00:00
|
|
|
For more information try --help
|
|
|
|
";
|
2020-10-07 12:17:26 +00:00
|
|
|
|
2016-01-13 16:06:00 +00:00
|
|
|
#[test]
|
|
|
|
fn subcommand() {
|
|
|
|
let m = App::new("test")
|
2018-01-25 04:05:05 +00:00
|
|
|
.subcommand(
|
2018-10-19 20:42:13 +00:00
|
|
|
App::new("some").arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("test")
|
2018-07-23 19:09:42 +00:00
|
|
|
.short('t')
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("test")
|
|
|
|
.takes_value(true)
|
2020-04-21 15:51:38 +00:00
|
|
|
.about("testing testing"),
|
2018-01-25 04:05:05 +00:00
|
|
|
),
|
2018-11-14 17:05:06 +00:00
|
|
|
)
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("other").long("other"))
|
2016-01-21 05:18:53 +00:00
|
|
|
.get_matches_from(vec!["myprog", "some", "--test", "testing"]);
|
2016-01-13 16:06:00 +00:00
|
|
|
|
|
|
|
assert_eq!(m.subcommand_name().unwrap(), "some");
|
|
|
|
let sub_m = m.subcommand_matches("some").unwrap();
|
|
|
|
assert!(sub_m.is_present("test"));
|
|
|
|
assert_eq!(sub_m.value_of("test").unwrap(), "testing");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_none_given() {
|
|
|
|
let m = App::new("test")
|
2018-01-25 04:05:05 +00:00
|
|
|
.subcommand(
|
2018-10-19 20:42:13 +00:00
|
|
|
App::new("some").arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("test")
|
2018-07-23 19:09:42 +00:00
|
|
|
.short('t')
|
2018-01-25 04:05:05 +00:00
|
|
|
.long("test")
|
|
|
|
.takes_value(true)
|
2020-04-21 15:51:38 +00:00
|
|
|
.about("testing testing"),
|
2018-01-25 04:05:05 +00:00
|
|
|
),
|
2018-11-14 17:05:06 +00:00
|
|
|
)
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("other").long("other"))
|
2016-01-13 16:06:00 +00:00
|
|
|
.get_matches_from(vec![""]);
|
|
|
|
|
|
|
|
assert!(m.subcommand_name().is_none());
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_multiple() {
|
|
|
|
let m = App::new("test")
|
|
|
|
.subcommands(vec![
|
2018-10-19 20:42:13 +00:00
|
|
|
App::new("some").arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("test")
|
2018-07-23 19:09:42 +00:00
|
|
|
.short('t')
|
2016-01-13 16:06:00 +00:00
|
|
|
.long("test")
|
|
|
|
.takes_value(true)
|
2020-04-21 15:51:38 +00:00
|
|
|
.about("testing testing"),
|
2018-01-25 04:05:05 +00:00
|
|
|
),
|
2020-05-14 20:50:56 +00:00
|
|
|
App::new("add").arg(Arg::new("roster").short('r')),
|
2016-01-13 16:06:00 +00:00
|
|
|
])
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("other").long("other"))
|
2016-01-21 05:18:53 +00:00
|
|
|
.get_matches_from(vec!["myprog", "some", "--test", "testing"]);
|
2016-01-13 16:06:00 +00:00
|
|
|
|
|
|
|
assert!(m.subcommand_matches("some").is_some());
|
|
|
|
assert!(m.subcommand_matches("add").is_none());
|
|
|
|
assert_eq!(m.subcommand_name().unwrap(), "some");
|
|
|
|
let sub_m = m.subcommand_matches("some").unwrap();
|
|
|
|
assert!(sub_m.is_present("test"));
|
|
|
|
assert_eq!(sub_m.value_of("test").unwrap(), "testing");
|
|
|
|
}
|
|
|
|
|
2020-04-02 04:35:48 +00:00
|
|
|
#[test]
|
|
|
|
fn subcommand_display_order() {
|
2020-04-02 13:48:01 +00:00
|
|
|
let app_subcmd_alpha_order = App::new("test").version("1").subcommands(vec![
|
|
|
|
App::new("b1")
|
|
|
|
.about("blah b1")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("test").short('t')),
|
2020-04-02 13:48:01 +00:00
|
|
|
App::new("a1")
|
|
|
|
.about("blah a1")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("roster").short('r')),
|
2020-04-02 13:48:01 +00:00
|
|
|
]);
|
2020-04-02 04:35:48 +00:00
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app_subcmd_alpha_order,
|
|
|
|
"test --help",
|
|
|
|
SUBCMD_ALPHA_ORDER,
|
|
|
|
false,
|
|
|
|
));
|
|
|
|
|
|
|
|
let app_subcmd_decl_order = App::new("test")
|
|
|
|
.version("1")
|
|
|
|
.setting(clap::AppSettings::DeriveDisplayOrder)
|
|
|
|
.subcommands(vec![
|
2020-04-02 13:48:01 +00:00
|
|
|
App::new("b1")
|
|
|
|
.about("blah b1")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("test").short('t')),
|
2020-04-02 13:48:01 +00:00
|
|
|
App::new("a1")
|
|
|
|
.about("blah a1")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("roster").short('r')),
|
2020-04-02 04:35:48 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app_subcmd_decl_order,
|
|
|
|
"test --help",
|
|
|
|
SUBCMD_DECL_ORDER,
|
|
|
|
false,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2016-05-10 19:26:43 +00:00
|
|
|
#[test]
|
|
|
|
fn single_alias() {
|
|
|
|
let m = App::new("myprog")
|
2018-10-19 20:42:13 +00:00
|
|
|
.subcommand(App::new("test").alias("do-stuff"))
|
2018-01-25 04:05:05 +00:00
|
|
|
.get_matches_from(vec!["myprog", "do-stuff"]);
|
2016-05-10 19:26:43 +00:00
|
|
|
assert_eq!(m.subcommand_name(), Some("test"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn multiple_aliases() {
|
|
|
|
let m = App::new("myprog")
|
2018-10-19 20:42:13 +00:00
|
|
|
.subcommand(App::new("test").aliases(&["do-stuff", "test-stuff"]))
|
2018-01-25 04:05:05 +00:00
|
|
|
.get_matches_from(vec!["myprog", "test-stuff"]);
|
2016-05-10 19:26:43 +00:00
|
|
|
assert_eq!(m.subcommand_name(), Some("test"));
|
|
|
|
}
|
|
|
|
|
2016-05-09 03:20:50 +00:00
|
|
|
#[test]
|
2018-01-25 04:05:05 +00:00
|
|
|
#[cfg(feature = "suggestions")]
|
2016-05-09 03:20:50 +00:00
|
|
|
fn subcmd_did_you_mean_output() {
|
2018-10-19 20:42:13 +00:00
|
|
|
let app = App::new("dym").subcommand(App::new("subcmd"));
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_output(app, "dym subcm", DYM_SUBCMD, true));
|
2018-01-09 15:24:24 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 09:07:37 +00:00
|
|
|
#[test]
|
|
|
|
#[cfg(feature = "suggestions")]
|
|
|
|
fn subcmd_did_you_mean_output_ambiguous() {
|
|
|
|
let app = App::new("dym")
|
|
|
|
.subcommand(App::new("test"))
|
|
|
|
.subcommand(App::new("temp"));
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app,
|
|
|
|
"dym te",
|
|
|
|
DYM_SUBCMD_AMBIGUOUS,
|
|
|
|
true
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-09 15:24:24 +00:00
|
|
|
#[test]
|
2018-01-25 04:05:05 +00:00
|
|
|
#[cfg(feature = "suggestions")]
|
2018-01-09 15:24:24 +00:00
|
|
|
fn subcmd_did_you_mean_output_arg() {
|
2020-10-09 16:31:00 +00:00
|
|
|
static EXPECTED: &str =
|
|
|
|
"error: Found argument '--subcmarg' which wasn't expected, or isn't valid in this context
|
|
|
|
|
|
|
|
\tDid you mean to put '--subcmdarg' after the subcommand 'subcmd'?
|
|
|
|
|
|
|
|
\tIf you tried to supply `--subcmarg` as a value rather than a flag, use `-- --subcmarg`
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
dym [SUBCOMMAND]
|
|
|
|
|
2021-09-24 15:58:39 +00:00
|
|
|
For more information try --help
|
|
|
|
";
|
2020-10-09 16:31:00 +00:00
|
|
|
|
|
|
|
let app = App::new("dym")
|
|
|
|
.subcommand(App::new("subcmd").arg(Arg::from("-s --subcmdarg [subcmdarg] 'tests'")));
|
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app,
|
|
|
|
"dym --subcmarg subcmd",
|
|
|
|
EXPECTED,
|
|
|
|
true
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(feature = "suggestions")]
|
|
|
|
fn subcmd_did_you_mean_output_arg_false_positives() {
|
|
|
|
static EXPECTED: &str =
|
|
|
|
"error: Found argument '--subcmarg' which wasn't expected, or isn't valid in this context
|
|
|
|
|
|
|
|
\tIf you tried to supply `--subcmarg` as a value rather than a flag, use `-- --subcmarg`
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
dym [SUBCOMMAND]
|
|
|
|
|
2021-09-24 15:58:39 +00:00
|
|
|
For more information try --help
|
|
|
|
";
|
2020-10-09 16:31:00 +00:00
|
|
|
|
|
|
|
let app = App::new("dym")
|
|
|
|
.subcommand(App::new("subcmd").arg(Arg::from("-s --subcmdarg [subcmdarg] 'tests'")));
|
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app,
|
|
|
|
"dym --subcmarg foo",
|
|
|
|
EXPECTED,
|
|
|
|
true
|
|
|
|
));
|
2016-05-09 03:20:50 +00:00
|
|
|
}
|
2016-06-10 00:39:51 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn alias_help() {
|
|
|
|
let m = App::new("myprog")
|
2018-10-19 20:42:13 +00:00
|
|
|
.subcommand(App::new("test").alias("do-stuff"))
|
|
|
|
.try_get_matches_from(vec!["myprog", "help", "do-stuff"]);
|
2016-06-10 00:39:51 +00:00
|
|
|
assert!(m.is_err());
|
2020-07-20 01:27:07 +00:00
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::DisplayHelp);
|
2016-06-10 01:55:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn visible_aliases_help_output() {
|
2018-01-25 04:05:05 +00:00
|
|
|
let app = App::new("clap-test").version("2.6").subcommand(
|
2018-10-19 20:42:13 +00:00
|
|
|
App::new("test")
|
2016-06-10 01:55:53 +00:00
|
|
|
.about("Some help")
|
|
|
|
.alias("invisible")
|
2016-06-13 01:52:18 +00:00
|
|
|
.visible_alias("dongle")
|
2018-01-25 04:05:05 +00:00
|
|
|
.visible_alias("done"),
|
|
|
|
);
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_output(
|
2018-01-25 04:05:05 +00:00
|
|
|
app,
|
|
|
|
"clap-test --help",
|
|
|
|
VISIBLE_ALIAS_HELP,
|
|
|
|
false
|
|
|
|
));
|
2016-06-10 01:55:53 +00:00
|
|
|
}
|
2016-06-13 01:52:18 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn invisible_aliases_help_output() {
|
2018-11-14 17:05:06 +00:00
|
|
|
let app = App::new("clap-test")
|
|
|
|
.version("2.6")
|
|
|
|
.subcommand(App::new("test").about("Some help").alias("invisible"));
|
2020-02-04 08:10:53 +00:00
|
|
|
assert!(utils::compare_output(
|
2018-01-25 04:05:05 +00:00
|
|
|
app,
|
|
|
|
"clap-test --help",
|
|
|
|
INVISIBLE_ALIAS_HELP,
|
|
|
|
false
|
|
|
|
));
|
2016-06-24 04:17:04 +00:00
|
|
|
}
|
2017-10-24 21:00:43 +00:00
|
|
|
|
2020-02-14 16:22:01 +00:00
|
|
|
#[test]
|
2021-10-09 15:44:31 +00:00
|
|
|
#[cfg(feature = "unstable-replace")]
|
2020-02-14 16:22:01 +00:00
|
|
|
fn replace() {
|
|
|
|
let m = App::new("prog")
|
|
|
|
.subcommand(App::new("module").subcommand(App::new("install").about("Install module")))
|
|
|
|
.replace("install", &["module", "install"])
|
|
|
|
.get_matches_from(vec!["prog", "install"]);
|
|
|
|
|
|
|
|
assert_eq!(m.subcommand_name(), Some("module"));
|
|
|
|
assert_eq!(
|
|
|
|
m.subcommand_matches("module").unwrap().subcommand_name(),
|
|
|
|
Some("install")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-10-24 21:00:43 +00:00
|
|
|
#[test]
|
|
|
|
fn issue_1031_args_with_same_name() {
|
|
|
|
let res = App::new("prog")
|
2018-04-21 18:59:19 +00:00
|
|
|
.arg(Arg::from("--ui-path=<PATH>"))
|
2018-10-19 20:42:13 +00:00
|
|
|
.subcommand(App::new("signer"))
|
|
|
|
.try_get_matches_from(vec!["prog", "--ui-path", "signer"]);
|
2017-10-24 21:00:43 +00:00
|
|
|
|
|
|
|
assert!(res.is_ok(), "{:?}", res.unwrap_err().kind);
|
|
|
|
let m = res.unwrap();
|
|
|
|
assert_eq!(m.value_of("ui-path"), Some("signer"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_1031_args_with_same_name_no_more_vals() {
|
|
|
|
let res = App::new("prog")
|
2018-04-21 18:59:19 +00:00
|
|
|
.arg(Arg::from("--ui-path=<PATH>"))
|
2018-10-19 20:42:13 +00:00
|
|
|
.subcommand(App::new("signer"))
|
|
|
|
.try_get_matches_from(vec!["prog", "--ui-path", "value", "signer"]);
|
2017-10-24 21:00:43 +00:00
|
|
|
|
|
|
|
assert!(res.is_ok(), "{:?}", res.unwrap_err().kind);
|
|
|
|
let m = res.unwrap();
|
|
|
|
assert_eq!(m.value_of("ui-path"), Some("value"));
|
|
|
|
assert_eq!(m.subcommand_name(), Some("signer"));
|
2018-01-25 04:05:05 +00:00
|
|
|
}
|
2018-03-01 11:52:30 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_1161_multiple_hyphen_hyphen() {
|
|
|
|
// from example 22
|
|
|
|
let res = App::new("myprog")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("eff").short('f'))
|
|
|
|
.arg(Arg::new("pea").short('p').takes_value(true))
|
2021-06-16 05:28:25 +00:00
|
|
|
.arg(
|
|
|
|
Arg::new("slop")
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple_values(true)
|
|
|
|
.last(true),
|
|
|
|
)
|
2018-10-19 20:42:13 +00:00
|
|
|
.try_get_matches_from(vec![
|
2018-08-02 03:13:51 +00:00
|
|
|
"-f",
|
|
|
|
"-p=bob",
|
|
|
|
"--",
|
|
|
|
"sloppy",
|
|
|
|
"slop",
|
|
|
|
"-a",
|
|
|
|
"--",
|
|
|
|
"subprogram",
|
|
|
|
"position",
|
|
|
|
"args",
|
|
|
|
]);
|
2018-03-01 11:52:30 +00:00
|
|
|
|
|
|
|
assert!(res.is_ok(), "{:?}", res.unwrap_err().kind);
|
|
|
|
let m = res.unwrap();
|
|
|
|
|
2018-08-02 03:13:51 +00:00
|
|
|
let expected = Some(vec![
|
|
|
|
"sloppy",
|
|
|
|
"slop",
|
|
|
|
"-a",
|
|
|
|
"--",
|
|
|
|
"subprogram",
|
|
|
|
"position",
|
|
|
|
"args",
|
|
|
|
]);
|
|
|
|
let actual = m.values_of("slop").map(|vals| vals.collect::<Vec<_>>());
|
2018-03-01 11:52:30 +00:00
|
|
|
|
|
|
|
assert_eq!(expected, actual);
|
2018-08-02 03:13:51 +00:00
|
|
|
}
|
2020-03-05 12:02:48 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_1722_not_emit_error_when_arg_follows_similar_to_a_subcommand() {
|
|
|
|
let m = App::new("myprog")
|
|
|
|
.subcommand(App::new("subcommand"))
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("argument"))
|
2020-03-05 12:02:48 +00:00
|
|
|
.try_get_matches_from(vec!["myprog", "--", "subcommand"]);
|
|
|
|
assert_eq!(m.unwrap().value_of("argument"), Some("subcommand"));
|
|
|
|
}
|
2020-06-26 01:21:28 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_placeholder_test() {
|
2020-06-28 03:19:57 +00:00
|
|
|
let mut app = App::new("myprog")
|
2020-06-26 01:21:28 +00:00
|
|
|
.subcommand(App::new("subcommand"))
|
2020-07-07 03:08:26 +00:00
|
|
|
.subcommand_placeholder("TEST_PLACEHOLDER", "TEST_HEADER");
|
2020-06-26 01:21:28 +00:00
|
|
|
|
2021-10-15 14:36:44 +00:00
|
|
|
assert_eq!(&app.render_usage(), "USAGE:\n myprog [TEST_PLACEHOLDER]");
|
2020-06-28 03:19:57 +00:00
|
|
|
|
|
|
|
let mut help_text = Vec::new();
|
2020-07-07 07:23:00 +00:00
|
|
|
app.write_help(&mut help_text)
|
|
|
|
.expect("Failed to write to internal buffer");
|
2020-06-28 03:19:57 +00:00
|
|
|
|
2020-07-07 07:23:00 +00:00
|
|
|
assert!(String::from_utf8(help_text)
|
|
|
|
.unwrap()
|
|
|
|
.contains("TEST_HEADER:"));
|
2020-06-26 01:21:28 +00:00
|
|
|
}
|
2020-10-07 12:17:26 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_used_after_double_dash() {
|
|
|
|
let app = App::new("app").subcommand(App::new("subcmd"));
|
|
|
|
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app,
|
|
|
|
"app -- subcmd",
|
|
|
|
SUBCMD_AFTER_DOUBLE_DASH,
|
|
|
|
true
|
|
|
|
));
|
|
|
|
}
|
2020-11-07 12:32:28 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_after_argument() {
|
|
|
|
let m = App::new("myprog")
|
|
|
|
.arg(Arg::new("some_text"))
|
|
|
|
.subcommand(App::new("test"))
|
|
|
|
.get_matches_from(vec!["myprog", "teat", "test"]);
|
|
|
|
assert_eq!(m.value_of("some_text"), Some("teat"));
|
|
|
|
assert_eq!(m.subcommand().unwrap().0, "test");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_after_argument_looks_like_help() {
|
|
|
|
let m = App::new("myprog")
|
|
|
|
.arg(Arg::new("some_text"))
|
|
|
|
.subcommand(App::new("test"))
|
|
|
|
.get_matches_from(vec!["myprog", "helt", "test"]);
|
|
|
|
assert_eq!(m.value_of("some_text"), Some("helt"));
|
|
|
|
assert_eq!(m.subcommand().unwrap().0, "test");
|
|
|
|
}
|
2021-05-25 23:40:38 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn issue_2494_subcommand_is_present() {
|
|
|
|
let app = App::new("opt")
|
|
|
|
.arg(Arg::new("global").long("global"))
|
|
|
|
.subcommand(App::new("global"));
|
|
|
|
|
|
|
|
let m = app.clone().get_matches_from(&["opt", "--global", "global"]);
|
|
|
|
assert_eq!(m.subcommand_name().unwrap(), "global");
|
|
|
|
assert!(m.is_present("global"));
|
|
|
|
|
|
|
|
let m = app.clone().get_matches_from(&["opt", "--global"]);
|
|
|
|
assert!(m.subcommand_name().is_none());
|
|
|
|
assert!(m.is_present("global"));
|
|
|
|
|
|
|
|
let m = app.get_matches_from(&["opt", "global"]);
|
|
|
|
assert_eq!(m.subcommand_name().unwrap(), "global");
|
|
|
|
assert!(!m.is_present("global"));
|
|
|
|
}
|
2021-09-04 20:10:24 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn subcommand_not_recognized() {
|
|
|
|
let app = App::new("fake")
|
|
|
|
.subcommand(App::new("sub"))
|
|
|
|
.setting(AppSettings::DisableHelpSubcommand)
|
|
|
|
.setting(AppSettings::InferSubcommands);
|
|
|
|
assert!(utils::compare_output(
|
|
|
|
app,
|
|
|
|
"fake help",
|
|
|
|
"error: The subcommand 'help' wasn't recognized
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
fake <subcommands>
|
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
",
|
|
|
|
true
|
|
|
|
));
|
|
|
|
}
|
2021-09-14 20:38:41 +00:00
|
|
|
|
2021-10-12 19:35:59 +00:00
|
|
|
#[cfg(feature = "unstable-multicall")]
|
2021-09-14 20:38:41 +00:00
|
|
|
#[test]
|
|
|
|
fn busybox_like_multicall() {
|
|
|
|
let app = App::new("busybox")
|
|
|
|
.setting(AppSettings::Multicall)
|
|
|
|
.subcommand(App::new("true"))
|
|
|
|
.subcommand(App::new("false"));
|
|
|
|
|
|
|
|
let m = app.clone().get_matches_from(&["busybox", "true"]);
|
|
|
|
assert_eq!(m.subcommand_name(), Some("true"));
|
|
|
|
|
|
|
|
let m = app.clone().get_matches_from(&["true"]);
|
|
|
|
assert_eq!(m.subcommand_name(), Some("true"));
|
|
|
|
|
|
|
|
let m = app.clone().try_get_matches_from(&["a.out"]);
|
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::UnknownArgument);
|
|
|
|
}
|
|
|
|
|
2021-10-12 19:35:59 +00:00
|
|
|
#[cfg(feature = "unstable-multicall")]
|
2021-09-14 20:38:41 +00:00
|
|
|
#[test]
|
|
|
|
fn hostname_like_multicall() {
|
|
|
|
let mut app = App::new("hostname")
|
|
|
|
.setting(AppSettings::Multicall)
|
|
|
|
.subcommand(App::new("hostname"))
|
|
|
|
.subcommand(App::new("dnsdomainname"));
|
|
|
|
|
|
|
|
let m = app.clone().get_matches_from(&["hostname"]);
|
|
|
|
assert_eq!(m.subcommand_name(), Some("hostname"));
|
|
|
|
|
|
|
|
let m = app.clone().get_matches_from(&["dnsdomainname"]);
|
|
|
|
assert_eq!(m.subcommand_name(), Some("dnsdomainname"));
|
|
|
|
|
|
|
|
let m = app.clone().try_get_matches_from(&["a.out"]);
|
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::UnknownArgument);
|
|
|
|
|
|
|
|
let m = app.try_get_matches_from_mut(&["hostname", "hostname"]);
|
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::UnknownArgument);
|
|
|
|
|
|
|
|
let m = app.try_get_matches_from(&["hostname", "dnsdomainname"]);
|
|
|
|
assert!(m.is_err());
|
|
|
|
assert_eq!(m.unwrap_err().kind, ErrorKind::UnknownArgument);
|
|
|
|
}
|