clap/tests/builder/positionals.rs

358 lines
12 KiB
Rust
Raw Normal View History

use clap::{arg, error::ErrorKind, Arg, ArgAction, Command};
2015-09-17 19:20:56 +00:00
#[test]
fn only_pos_follow() {
2022-02-12 03:48:29 +00:00
let r = Command::new("onlypos")
2022-11-24 13:54:25 +00:00
.args([arg!(f: -f [flag] "some opt"), arg!([arg] "some arg")])
.try_get_matches_from(vec!["", "--", "-f"]);
2021-12-27 19:57:38 +00:00
assert!(r.is_ok(), "{}", r.unwrap_err());
let m = r.unwrap();
assert!(m.contains_id("arg"));
assert!(!m.contains_id("f"));
assert_eq!(
m.get_one::<String>("arg").map(|v| v.as_str()).unwrap(),
"-f"
);
}
#[test]
fn issue_946() {
2022-02-12 03:48:29 +00:00
let r = Command::new("compiletest")
.arg(arg!(--exact "filters match exactly").action(ArgAction::SetTrue))
2018-01-25 04:05:05 +00:00
.arg(
clap::Arg::new("filter")
2018-01-25 04:05:05 +00:00
.index(1)
.action(ArgAction::Set)
.allow_hyphen_values(true)
.help("filters to apply to output"),
2018-01-25 04:05:05 +00:00
)
.try_get_matches_from(vec!["compiletest", "--exact"]);
assert!(r.is_ok(), "{r:#?}");
let matches = r.unwrap();
assert!(*matches.get_one::<bool>("exact").expect("defaulted by clap"));
assert!(matches
.get_one::<String>("filter")
.map(|v| v.as_str())
.is_none());
}
2015-09-17 19:20:56 +00:00
#[test]
fn positional() {
2022-02-12 03:48:29 +00:00
let r = Command::new("positional")
2022-11-24 13:54:25 +00:00
.args([
arg!(-f --flag "some flag").action(ArgAction::SetTrue),
Arg::new("positional").index(1),
])
.try_get_matches_from(vec!["", "-f", "test"]);
assert!(r.is_ok(), "{r:#?}");
let m = r.unwrap();
assert!(m.contains_id("positional"));
assert!(*m.get_one::<bool>("flag").expect("defaulted by clap"));
assert_eq!(
m.get_one::<String>("positional")
.map(|v| v.as_str())
.unwrap(),
"test"
);
2015-09-17 19:20:56 +00:00
2022-02-12 03:48:29 +00:00
let m = Command::new("positional")
2022-11-24 13:54:25 +00:00
.args([
arg!(-f --flag "some flag").action(ArgAction::SetTrue),
Arg::new("positional").index(1),
])
.try_get_matches_from(vec!["", "test", "--flag"])
.unwrap();
assert!(m.contains_id("positional"));
assert!(*m.get_one::<bool>("flag").expect("defaulted by clap"));
assert_eq!(
m.get_one::<String>("positional")
.map(|v| v.as_str())
.unwrap(),
"test"
);
2015-09-17 19:20:56 +00:00
}
#[test]
fn lots_o_vals() {
2022-02-12 03:48:29 +00:00
let r = Command::new("opts")
2021-11-19 20:33:11 +00:00
.arg(arg!(<opt>... "some pos"))
.try_get_matches_from(vec![
2018-01-25 04:05:05 +00:00
"", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
"some", "some", "some", "some", "some", "some", "some", "some", "some", "some", "some",
2018-01-25 04:05:05 +00:00
"some",
]);
2021-12-27 19:57:38 +00:00
assert!(r.is_ok(), "{}", r.unwrap_err());
let m = r.unwrap();
assert!(m.contains_id("opt"));
assert_eq!(m.get_many::<String>("opt").unwrap().count(), 297); // i.e. more than u8
}
2015-09-17 19:20:56 +00:00
#[test]
fn positional_multiple() {
2022-02-12 03:48:29 +00:00
let r = Command::new("positional_multiple")
2022-11-24 13:54:25 +00:00
.args([
arg!(-f --flag "some flag").action(ArgAction::SetTrue),
2021-02-24 15:07:57 +00:00
Arg::new("positional")
.index(1)
.action(ArgAction::Set)
.num_args(1..),
2018-01-25 04:05:05 +00:00
])
.try_get_matches_from(vec!["", "-f", "test1", "test2", "test3"]);
assert!(r.is_ok(), "{r:#?}");
let m = r.unwrap();
assert!(m.contains_id("positional"));
assert!(*m.get_one::<bool>("flag").expect("defaulted by clap"));
2018-01-25 04:05:05 +00:00
assert_eq!(
&*m.get_many::<String>("positional")
.unwrap()
.map(|v| v.as_str())
.collect::<Vec<_>>(),
2022-11-24 13:54:25 +00:00
["test1", "test2", "test3"]
2018-01-25 04:05:05 +00:00
);
}
2015-09-17 19:20:56 +00:00
#[test]
fn positional_multiple_3() {
2022-02-12 03:48:29 +00:00
let r = Command::new("positional_multiple")
2022-11-24 13:54:25 +00:00
.args([
arg!(-f --flag "some flag").action(ArgAction::SetTrue),
2021-02-24 15:07:57 +00:00
Arg::new("positional")
.index(1)
.action(ArgAction::Set)
.num_args(1..),
2018-01-25 04:05:05 +00:00
])
.try_get_matches_from(vec!["", "test1", "test2", "test3", "--flag"]);
assert!(r.is_ok(), "{r:#?}");
let m = r.unwrap();
assert!(m.contains_id("positional"));
assert!(*m.get_one::<bool>("flag").expect("defaulted by clap"));
2018-01-25 04:05:05 +00:00
assert_eq!(
&*m.get_many::<String>("positional")
.unwrap()
.map(|v| v.as_str())
.collect::<Vec<_>>(),
2022-11-24 13:54:25 +00:00
["test1", "test2", "test3"]
2018-01-25 04:05:05 +00:00
);
2015-09-17 19:20:56 +00:00
}
#[test]
fn positional_multiple_2() {
2022-02-12 03:48:29 +00:00
let result = Command::new("positional_multiple")
2022-11-24 13:54:25 +00:00
.args([arg!(-f --flag "some flag"), Arg::new("positional").index(1)])
.try_get_matches_from(vec!["", "-f", "test1", "test2", "test3"]);
2015-09-17 19:20:56 +00:00
assert!(result.is_err());
let err = result.err().unwrap();
2022-01-25 22:19:28 +00:00
assert_eq!(err.kind(), ErrorKind::UnknownArgument);
2015-09-17 19:20:56 +00:00
}
#[test]
fn positional_possible_values() {
2022-02-12 03:48:29 +00:00
let r = Command::new("positional_possible_values")
2022-11-24 13:54:25 +00:00
.args([
arg!(-f --flag "some flag").action(ArgAction::SetTrue),
2022-05-24 01:16:02 +00:00
Arg::new("positional").index(1).value_parser(["test123"]),
2018-01-25 04:05:05 +00:00
])
.try_get_matches_from(vec!["", "-f", "test123"]);
assert!(r.is_ok(), "{r:#?}");
let m = r.unwrap();
assert!(m.contains_id("positional"));
assert!(*m.get_one::<bool>("flag").expect("defaulted by clap"));
2018-01-25 04:05:05 +00:00
assert_eq!(
&*m.get_many::<String>("positional")
.unwrap()
.map(|v| v.as_str())
.collect::<Vec<_>>(),
2022-11-24 13:54:25 +00:00
["test123"]
2018-01-25 04:05:05 +00:00
);
}
#[test]
fn create_positional() {
2022-02-12 03:48:29 +00:00
let _ = Command::new("test")
.arg(Arg::new("test").index(1).help("testing testing"))
.try_get_matches_from(vec![""])
.unwrap();
}
#[test]
fn positional_hyphen_does_not_panic() {
2022-02-12 03:48:29 +00:00
let _ = Command::new("test")
.arg(Arg::new("dummy"))
.try_get_matches_from(vec!["test", "-"])
.unwrap();
}
2016-02-09 14:05:19 +00:00
#[test]
fn single_positional_usage_string() {
2022-02-14 21:47:20 +00:00
let mut cmd = Command::new("test").arg(arg!([FILE] "some file"));
crate::utils::assert_eq(cmd.render_usage().to_string(), "Usage: test [FILE]");
}
#[test]
fn single_positional_multiple_usage_string() {
2022-02-14 21:47:20 +00:00
let mut cmd = Command::new("test").arg(arg!([FILE]... "some file"));
crate::utils::assert_eq(cmd.render_usage().to_string(), "Usage: test [FILE]...");
}
#[test]
fn multiple_positional_usage_string() {
2022-02-14 21:47:20 +00:00
let mut cmd = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!([FILE] "some file"))
.arg(arg!([FILES]... "some file"));
crate::utils::assert_eq(
cmd.render_usage().to_string(),
"\
Usage: test [FILE] [FILES]...",
);
}
#[test]
fn multiple_positional_one_required_usage_string() {
2022-02-14 21:47:20 +00:00
let mut cmd = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!(<FILE> "some file"))
.arg(arg!([FILES]... "some file"));
crate::utils::assert_eq(
cmd.render_usage().to_string(),
"Usage: test <FILE> [FILES]...",
);
}
#[test]
fn single_positional_required_usage_string() {
2022-02-14 21:47:20 +00:00
let mut cmd = Command::new("test").arg(arg!(<FILE> "some file"));
crate::utils::assert_eq(cmd.render_usage().to_string(), "Usage: test <FILE>");
}
2019-06-25 23:02:53 +00:00
// This tests a programmer error and will only succeed with debug_assertions
#[cfg(debug_assertions)]
#[test]
#[should_panic = "Found non-required positional argument \
2020-04-09 22:33:16 +00:00
with a lower index than a required positional argument"]
fn missing_required() {
2022-02-12 03:48:29 +00:00
let _ = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!([FILE1] "some file"))
.arg(arg!(<FILE2> "some file"))
2019-06-25 23:02:53 +00:00
.try_get_matches_from(vec![""]);
}
#[test]
fn missing_required_2() {
2022-02-12 03:48:29 +00:00
let r = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!(<FILE1> "some file"))
.arg(arg!(<FILE2> "some file"))
.try_get_matches_from(vec!["test", "file"]);
assert!(r.is_err());
2022-01-25 22:19:28 +00:00
assert_eq!(r.unwrap_err().kind(), ErrorKind::MissingRequiredArgument);
}
2017-03-11 05:17:57 +00:00
#[test]
fn last_positional() {
2022-02-12 03:48:29 +00:00
let r = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!(<TARGET> "some target"))
.arg(arg!([CORPUS] "some corpus"))
.arg(arg!([ARGS]... "some file").last(true))
.try_get_matches_from(vec!["test", "tgt", "--", "arg"]);
2021-12-27 19:57:38 +00:00
assert!(r.is_ok(), "{}", r.unwrap_err());
2017-03-11 05:17:57 +00:00
let m = r.unwrap();
assert_eq!(
m.get_many::<String>("ARGS")
.unwrap()
.map(|v| v.as_str())
.collect::<Vec<_>>(),
2022-11-24 13:54:25 +00:00
["arg"]
);
2017-03-11 05:17:57 +00:00
}
#[test]
fn last_positional_no_double_dash() {
2022-02-12 03:48:29 +00:00
let r = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!(<TARGET> "some target"))
.arg(arg!([CORPUS] "some corpus"))
.arg(arg!([ARGS]... "some file").last(true))
.try_get_matches_from(vec!["test", "tgt", "crp", "arg"]);
2017-03-11 05:17:57 +00:00
assert!(r.is_err());
2022-01-25 22:19:28 +00:00
assert_eq!(r.unwrap_err().kind(), ErrorKind::UnknownArgument);
}
#[test]
fn last_positional_second_to_last_mult() {
2022-02-12 03:48:29 +00:00
let r = Command::new("test")
2021-11-19 20:33:11 +00:00
.arg(arg!(<TARGET> "some target"))
.arg(arg!([CORPUS]... "some corpus"))
.arg(arg!([ARGS]... "some file").last(true))
.try_get_matches_from(vec!["test", "tgt", "crp1", "crp2", "--", "arg"]);
2022-01-25 22:19:28 +00:00
assert!(r.is_ok(), "{:?}", r.unwrap_err().kind());
2018-01-25 04:05:05 +00:00
}
#[cfg(debug_assertions)]
#[test]
#[should_panic = "Argument 'arg' is a positional argument and can't have short or long name versions"]
fn positional_arg_with_long() {
2022-02-12 03:48:29 +00:00
use clap::{Arg, Command};
2022-02-12 03:48:29 +00:00
let _ = Command::new("test")
.arg(Arg::new("arg").index(1).long("arg"))
.try_get_matches();
}
#[cfg(debug_assertions)]
#[test]
#[should_panic = "Argument 'arg' is a positional argument and can't have short or long name versions"]
fn positional_arg_with_short() {
2022-02-12 03:48:29 +00:00
use clap::{Arg, Command};
2022-02-12 03:48:29 +00:00
let _ = Command::new("test")
.arg(Arg::new("arg").index(1).short('a'))
.try_get_matches();
}
#[test]
fn ignore_hyphen_values_on_last() {
2022-02-14 21:47:20 +00:00
let cmd = clap::Command::new("foo")
.arg(
clap::Arg::new("cmd")
.num_args(1..)
.last(true)
.allow_hyphen_values(true),
)
.arg(
clap::Arg::new("name")
.long("name")
.short('n')
.action(ArgAction::Set)
.required(false),
);
2022-02-14 21:47:20 +00:00
let matches = cmd.try_get_matches_from(["test", "-n", "foo"]).unwrap();
assert_eq!(
matches.get_one::<String>("name").map(|v| v.as_str()),
Some("foo")
);
}