2022-02-12 03:48:29 +00:00
|
|
|
use clap::{Arg, Command};
|
2018-02-26 03:02:15 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn indices_mult_opts() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2018-08-02 03:13:51 +00:00
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("exclude")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('e')
|
|
|
|
.takes_value(true)
|
2021-06-16 05:28:25 +00:00
|
|
|
.multiple_values(true)
|
|
|
|
.multiple_occurrences(true),
|
2018-08-02 03:13:51 +00:00
|
|
|
)
|
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("include")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('i')
|
|
|
|
.takes_value(true)
|
2021-06-16 05:28:25 +00:00
|
|
|
.multiple_values(true),
|
2018-08-02 03:13:51 +00:00
|
|
|
)
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-e", "A", "B", "-i", "B", "C", "-e", "C"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("exclude").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[2, 3, 8]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("include").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[5, 6]
|
|
|
|
);
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn index_mult_opts() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2018-08-02 03:13:51 +00:00
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("exclude")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('e')
|
|
|
|
.takes_value(true)
|
2021-06-16 05:28:25 +00:00
|
|
|
.multiple_values(true)
|
|
|
|
.multiple_occurrences(true),
|
2018-08-02 03:13:51 +00:00
|
|
|
)
|
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("include")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('i')
|
|
|
|
.takes_value(true)
|
2021-06-16 05:28:25 +00:00
|
|
|
.multiple_values(true),
|
2018-08-02 03:13:51 +00:00
|
|
|
)
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-e", "A", "B", "-i", "B", "C", "-e", "C"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(m.index_of("exclude"), Some(2));
|
|
|
|
assert_eq!(m.index_of("include"), Some(5));
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn index_flag() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("exclude").short('e'))
|
|
|
|
.arg(Arg::new("include").short('i'))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-e", "-i"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(m.index_of("exclude"), Some(1));
|
|
|
|
assert_eq!(m.index_of("include"), Some(2));
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn index_flags() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("exclude").short('e').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("include").short('i').multiple_occurrences(true))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-e", "-i", "-e", "-e", "-i"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(m.index_of("exclude"), Some(1));
|
|
|
|
assert_eq!(m.index_of("include"), Some(2));
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn indices_mult_flags() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("exclude").short('e').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("include").short('i').multiple_occurrences(true))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-e", "-i", "-e", "-e", "-i"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("exclude").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[1, 3, 4]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("include").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[2, 5]
|
|
|
|
);
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn indices_mult_flags_combined() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("exclude").short('e').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("include").short('i').multiple_occurrences(true))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-eieei"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("exclude").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[1, 3, 4]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("include").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[2, 5]
|
|
|
|
);
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn indices_mult_flags_opt_combined() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("exclude").short('e').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("include").short('i').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("option").short('o').takes_value(true))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-eieeio", "val"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("exclude").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[1, 3, 4]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("include").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[2, 5]
|
|
|
|
);
|
|
|
|
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[7]);
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn indices_mult_flags_opt_combined_eq() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("ind")
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("exclude").short('e').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("include").short('i').multiple_occurrences(true))
|
|
|
|
.arg(Arg::new("option").short('o').takes_value(true))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["ind", "-eieeio=val"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("exclude").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[1, 3, 4]
|
|
|
|
);
|
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("include").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[2, 5]
|
|
|
|
);
|
|
|
|
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[7]);
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn indices_mult_opt_value_delim_eq() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("myapp")
|
2018-08-02 03:13:51 +00:00
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('o')
|
|
|
|
.takes_value(true)
|
2022-02-09 17:16:34 +00:00
|
|
|
.use_value_delimiter(true)
|
2021-06-16 05:28:25 +00:00
|
|
|
.multiple_values(true),
|
2018-08-02 03:13:51 +00:00
|
|
|
)
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["myapp", "-o=val1,val2,val3"])
|
|
|
|
.unwrap();
|
2018-08-02 03:13:51 +00:00
|
|
|
assert_eq!(
|
|
|
|
m.indices_of("option").unwrap().collect::<Vec<_>>(),
|
|
|
|
&[2, 3, 4]
|
|
|
|
);
|
2018-02-26 03:02:15 +00:00
|
|
|
}
|
|
|
|
|
2018-03-04 02:02:29 +00:00
|
|
|
#[test]
|
|
|
|
fn indices_mult_opt_value_no_delim_eq() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("myapp")
|
2018-08-02 03:13:51 +00:00
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('o')
|
|
|
|
.takes_value(true)
|
2021-06-16 05:28:25 +00:00
|
|
|
.multiple_values(true),
|
2018-08-02 03:13:51 +00:00
|
|
|
)
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["myapp", "-o=val1,val2,val3"])
|
|
|
|
.unwrap();
|
2018-03-04 02:02:29 +00:00
|
|
|
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[2]);
|
|
|
|
}
|
|
|
|
|
2018-02-26 03:02:15 +00:00
|
|
|
#[test]
|
|
|
|
fn indices_mult_opt_mult_flag() {
|
2022-02-12 03:48:29 +00:00
|
|
|
let m = Command::new("myapp")
|
2018-08-02 03:13:51 +00:00
|
|
|
.arg(
|
2020-05-14 20:50:56 +00:00
|
|
|
Arg::new("option")
|
2018-08-02 03:13:51 +00:00
|
|
|
.short('o')
|
|
|
|
.takes_value(true)
|
|
|
|
.multiple_occurrences(true),
|
|
|
|
)
|
2020-05-14 20:50:56 +00:00
|
|
|
.arg(Arg::new("flag").short('f').multiple_occurrences(true))
|
2021-12-27 18:56:12 +00:00
|
|
|
.try_get_matches_from(vec!["myapp", "-o", "val1", "-f", "-o", "val2", "-f"])
|
|
|
|
.unwrap();
|
2018-02-26 03:02:15 +00:00
|
|
|
|
|
|
|
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[2, 5]);
|
|
|
|
assert_eq!(m.indices_of("flag").unwrap().collect::<Vec<_>>(), &[3, 6]);
|
2018-03-04 02:04:28 +00:00
|
|
|
}
|