mirror of
https://github.com/clap-rs/clap
synced 2024-12-13 14:22:34 +00:00
89 lines
2.6 KiB
Rust
89 lines
2.6 KiB
Rust
mod utils;
|
|
|
|
use clap::{arg, App, Arg};
|
|
|
|
#[test]
|
|
fn issue_1076() {
|
|
let mut app = App::new("myprog")
|
|
.arg(
|
|
Arg::new("GLOBAL_ARG")
|
|
.long("global-arg")
|
|
.help("Specifies something needed by the subcommands")
|
|
.global(true)
|
|
.takes_value(true)
|
|
.default_value("default_value"),
|
|
)
|
|
.arg(
|
|
Arg::new("GLOBAL_FLAG")
|
|
.long("global-flag")
|
|
.help("Specifies something needed by the subcommands")
|
|
.global(true)
|
|
.takes_value(true),
|
|
)
|
|
.subcommand(App::new("outer").subcommand(App::new("inner")));
|
|
let _ = app.try_get_matches_from_mut(vec!["myprog"]);
|
|
let _ = app.try_get_matches_from_mut(vec!["myprog"]);
|
|
let _ = app.try_get_matches_from_mut(vec!["myprog"]);
|
|
}
|
|
|
|
#[test]
|
|
fn propagate_global_arg_in_subcommand_to_subsubcommand_1385() {
|
|
let m1 = App::new("foo")
|
|
.subcommand(
|
|
App::new("sub1")
|
|
.arg(Arg::new("arg1").long("arg1").takes_value(true).global(true))
|
|
.subcommand(App::new("sub1a")),
|
|
)
|
|
.get_matches_from(&["foo", "sub1", "--arg1", "v1", "sub1a"]);
|
|
assert_eq!(
|
|
"v1",
|
|
m1.subcommand_matches("sub1")
|
|
.unwrap()
|
|
.subcommand_matches("sub1a")
|
|
.unwrap()
|
|
.value_of("arg1")
|
|
.unwrap()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn propagate_global_arg_to_subcommand_in_subsubcommand_2053() {
|
|
let m = App::new("opts")
|
|
.arg(arg!(--"global-flag").global(true))
|
|
.arg(arg!(--"global-str" <str>).required(false).global(true))
|
|
.subcommand(
|
|
App::new("test")
|
|
.arg(arg!(--"sub-flag").global(true))
|
|
.arg(arg!(--"sub-str" <str>).required(false).global(true))
|
|
.subcommand(App::new("test")),
|
|
)
|
|
.get_matches_from(&[
|
|
"app",
|
|
"test",
|
|
"test",
|
|
"--global-flag",
|
|
"--global-str",
|
|
"hello",
|
|
"--sub-flag",
|
|
"--sub-str",
|
|
"world",
|
|
]);
|
|
assert_eq!(
|
|
Some("world"),
|
|
m.subcommand_matches("test").unwrap().value_of("sub-str")
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn global_arg_available_in_subcommand() {
|
|
let m = App::new("opt")
|
|
.args(&[
|
|
Arg::new("global").global(true).long("global"),
|
|
Arg::new("not").global(false).long("not"),
|
|
])
|
|
.subcommand(App::new("ping"))
|
|
.get_matches_from(&["opt", "ping", "--global"]);
|
|
|
|
assert!(m.is_present("global"));
|
|
assert!(m.subcommand_matches("ping").unwrap().is_present("global"));
|
|
}
|