1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
|
extern crate clap;
extern crate regex;
include!("../clap-test.rs");
use clap::{App, Arg};
#[test]
fn indices_mult_opts() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.takes_value(true)
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.takes_value(true)
.multiple(true))
.get_matches_from(vec!["ind", "-e", "A", "B", "-i", "B", "C", "-e", "C"]);
assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), &[2, 3, 8]);
assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), &[5, 6]);
}
#[test]
fn index_mult_opts() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.takes_value(true)
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.takes_value(true)
.multiple(true))
.get_matches_from(vec!["ind", "-e", "A", "B", "-i", "B", "C", "-e", "C"]);
assert_eq!(m.index_of("exclude"), Some(2));
assert_eq!(m.index_of("include"), Some(5));
}
#[test]
fn index_flag() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e"))
.arg(Arg::with_name("include")
.short("i"))
.get_matches_from(vec!["ind", "-e", "-i"]);
assert_eq!(m.index_of("exclude"), Some(1));
assert_eq!(m.index_of("include"), Some(2));
}
#[test]
fn index_flags() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.multiple(true))
.get_matches_from(vec!["ind", "-e", "-i", "-e", "-e", "-i"]);
assert_eq!(m.index_of("exclude"), Some(1));
assert_eq!(m.index_of("include"), Some(2));
}
#[test]
fn indices_mult_flags() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.multiple(true))
.get_matches_from(vec!["ind", "-e", "-i", "-e", "-e", "-i"]);
assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), &[1, 3, 4]);
assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), &[2, 5]);
}
#[test]
fn indices_mult_flags_combined() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.multiple(true))
.get_matches_from(vec!["ind", "-eieei"]);
assert_eq!(m.indices_of("exclude").unwrap().collect::<Vec<_>>(), &[1, 3, 4]);
assert_eq!(m.indices_of("include").unwrap().collect::<Vec<_>>(), &[2, 5]);
}
#[test]
fn indices_mult_flags_opt_combined() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.multiple(true))
.arg(Arg::with_name("option")
.short("o")
.takes_value(true))
.get_matches_from(vec!["ind", "-eieeio", "val"]);
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]);
}
#[test]
fn indices_mult_flags_opt_combined_eq() {
let m = App::new("ind")
.arg(Arg::with_name("exclude")
.short("e")
.multiple(true))
.arg(Arg::with_name("include")
.short("i")
.multiple(true))
.arg(Arg::with_name("option")
.short("o")
.takes_value(true))
.get_matches_from(vec!["ind", "-eieeio=val"]);
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]);
}
#[test]
fn indices_mult_opt_value_delim_eq() {
let m = App::new("myapp")
.arg(Arg::with_name("option")
.short("o")
.takes_value(true)
.use_delimiter(true)
.multiple(true))
.get_matches_from(vec!["myapp", "-o=val1,val2,val3"]);
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[2, 3, 4]);
}
#[test]
fn indices_mult_opt_value_no_delim_eq() {
let m = App::new("myapp")
.arg(Arg::with_name("option")
.short("o")
.takes_value(true)
.multiple(true))
.get_matches_from(vec!["myapp", "-o=val1,val2,val3"]);
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[2]);
}
#[test]
fn indices_mult_opt_mult_flag() {
let m = App::new("myapp")
.arg(Arg::with_name("option")
.short("o")
.takes_value(true)
.multiple(true))
.arg(Arg::with_name("flag")
.short("f")
.multiple(true))
.get_matches_from(vec!["myapp", "-o", "val1", "-f", "-o", "val2", "-f"]);
assert_eq!(m.indices_of("option").unwrap().collect::<Vec<_>>(), &[2, 5]);
assert_eq!(m.indices_of("flag").unwrap().collect::<Vec<_>>(), &[3, 6]);
}
|