forked from klingtnet/rosc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
address_test.rs
306 lines (274 loc) · 13.6 KB
/
address_test.rs
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
extern crate rosc;
#[cfg(feature = "std")]
use rosc::address::{verify_address, verify_address_pattern, Matcher, OscAddress};
#[cfg(feature = "std")]
#[test]
fn test_matcher() {
let mut matcher;
// Regular address using only alphanumeric parts
matcher = Matcher::new("/oscillator/1/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/1/frequency")).expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/1/phase")).expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/1/frequencyfoo"))
.expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/prefix/oscillator/1/frequency"))
.expect("Valid address pattern")
));
// Choice
matcher = Matcher::new("/foo{bar,baz}").expect("Should be valid");
assert!(matcher
.match_address(&OscAddress::new(String::from("/foobar")).expect("Valid address pattern")));
assert!(matcher
.match_address(&OscAddress::new(String::from("/foobaz")).expect("Valid address pattern")));
matcher = Matcher::new("/foo{bar,baz,tron}").expect("Should be valid");
assert!(matcher
.match_address(&OscAddress::new(String::from("/footron")).expect("Valid address pattern")));
// Character class
// Character classes are sets or ranges of characters to match.
// e.g. [a-z] will match any lower case alphabetic character. [abcd] will match the characters abcd.
// They can be negated with '!', e.g. [!0-9] will match all characters except 0-9
// Basic example
matcher = Matcher::new("/oscillator/[0-9]").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/0")).expect("Valid address pattern")
)); // Beginning of range included
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/6")).expect("Valid address pattern")
)); // Middle of range
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/9")).expect("Valid address pattern")
)); // Last member of range included
// Inverted order should fail
Matcher::new("/oscillator/[9-0]").expect_err("Inverted range accepted");
// Multiple ranges
matcher = Matcher::new("/oscillator/[a-zA-Z0-9]").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/0")).expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/a")).expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/A")).expect("Valid address pattern")
));
// Negated range
matcher = Matcher::new("/oscillator/[!0-9]").expect("Should be valid");
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/1")).expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/a")).expect("Valid address pattern")
));
// Extra exclamation points must be entirely ignored
matcher = Matcher::new("/oscillator/[!0-9!a-z!]").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/A")).expect("Valid address pattern")
));
// Trailing dash has no special meaning
matcher = Matcher::new("/oscillator/[abcd-]").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/a")).expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/-")).expect("Valid address pattern")
));
// Single wildcard
// A single wildcard '?' matches exactly one alphanumeric character
matcher = Matcher::new("/oscillator/?/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/1/frequency")).expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/F/frequency")).expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/10/frequency")).expect("Valid address pattern")
));
// Test if two consecutive wildcards match
matcher = Matcher::new("/oscillator/??/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/10/frequency")).expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/1/frequency")).expect("Valid address pattern")
));
// Test if it works if it is surrounded by non-wildcards
matcher = Matcher::new("/oscillator/prefixed?postfixed/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/prefixed1postfixed/frequency"))
.expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/prefixedpostfixed/frequency"))
.expect("Valid address pattern")
));
// Wildcard
// Wildcards '*' match zero or more alphanumeric characters. The implementation is greedy,
// meaning it will match the longest possible sequence
matcher = Matcher::new("/oscillator/*/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/anything123/frequency"))
.expect("Valid address pattern")
));
assert!(matcher.match_address(&OscAddress::new(String::from("/oscillator/!\"$%&'()+-.0123456789:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz|~/frequency")).expect("Valid address pattern")));
// Test that wildcard doesn't cross part boundary
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/extra/part/frequency"))
.expect("Valid address pattern")
));
// Test greediness
matcher = Matcher::new("/oscillator/*bar/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobar/frequency"))
.expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobarbar/frequency"))
.expect("Valid address pattern")
));
// Minimum length of 2
matcher = Matcher::new("/oscillator/*??/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobar/frequency"))
.expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/f/frequency")).expect("Valid address pattern")
));
// Minimum length of 2 and another component follows
matcher = Matcher::new("/oscillator/*??baz/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobarbaz/frequency"))
.expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/fbaz/frequency"))
.expect("Valid address pattern")
));
// Mix with character class
matcher = Matcher::new("/oscillator/*[a-d]/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/a/frequency")).expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/fooa/frequency"))
.expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/foox/frequency"))
.expect("Valid address pattern")
));
// Mix with choice
matcher = Matcher::new("/oscillator/*{bar,baz}/frequency").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobar/frequency"))
.expect("Valid address pattern")
));
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/baz/frequency")).expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/something/frequency"))
.expect("Valid address pattern")
));
// Wildcard as last part
matcher = Matcher::new("/oscillator/*").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobar")).expect("Valid address pattern")
));
assert!(!matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobar/frequency"))
.expect("Valid address pattern")
));
// Wildcard with more components in part but it's the last part
matcher = Matcher::new("/oscillator/*bar").expect("Should be valid");
assert!(matcher.match_address(
&OscAddress::new(String::from("/oscillator/foobar")).expect("Valid address pattern")
));
// Check for allowed literal characters
matcher = Matcher::new(
"/!\"$%&'()+-.0123456789:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz|~",
)
.expect("Should be valid");
assert!(matcher.match_address(&OscAddress::new(String::from("/!\"$%&'()+-.0123456789:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz|~")).expect("Valid address pattern")));
// Check that single wildcard matches all legal characters
matcher = Matcher::new("/?").expect("Should be valid");
let legal =
"!\"$%&'()+-.0123456789:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz|~";
for c in legal.chars() {
assert!(matcher
.match_address(&OscAddress::new(format!("/{}", c)).expect("Valid address pattern")));
}
// Make sure the character class deduplicator is triggered for code coverage
matcher = Matcher::new("/[a-za-za-z]").expect("Should be valid");
assert!(
matcher.match_address(&OscAddress::new(String::from("/a")).expect("Valid address pattern"))
);
}
#[cfg(feature = "std")]
#[test]
fn test_verify_address() {
verify_address("/test").expect("Should be valid");
verify_address("/oscillator/1/frequency").expect("Should be valid");
verify_address("/!\"$%&'()+-.0123456789:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz|~/foo").expect("Should be valid");
// No '/' at beginning
verify_address("test").expect_err("Should not be valid");
// '/' at the end
verify_address("/test/").expect_err("Should not be valid");
// Different address pattern elements that are not allowed in regular addresses
verify_address("/test*").expect_err("Should not be valid");
verify_address("/test?").expect_err("Should not be valid");
verify_address("/test{foo,bar}").expect_err("Should not be valid");
verify_address("/test[a-z]").expect_err("Should not be valid");
}
#[cfg(feature = "std")]
#[test]
fn test_verify_address_pattern() {
verify_address_pattern("/test").expect("Should be valid");
verify_address_pattern("/oscillator/1/frequency").expect("Should be valid");
verify_address_pattern("/!\"$%&'()+-.0123456789:;<=>@ABCDEFGHIJKLMNOPQRSTUVWXYZ^_`abcdefghijklmnopqrstuvwxyz|~/foo").expect("Should be valid");
// No '/' at beginning
verify_address_pattern("test").expect_err("Should not be valid");
// '/' at the end
verify_address_pattern("/test/").expect_err("Should not be valid");
// Different address pattern elements
verify_address_pattern("/test*").expect("Should be valid");
verify_address_pattern("/test?").expect("Should be valid");
verify_address_pattern("/test{foo,bar}").expect("Should be valid");
verify_address_pattern("/test[a-z]").expect("Should be valid");
verify_address_pattern("/test[a-defgh]").expect("Should be valid");
verify_address_pattern("/test[a-defg-z]").expect("Should be valid");
verify_address_pattern("/test[a-za-z]").expect("Should be valid");
verify_address_pattern("/test[a-z]*??/{foo,bar,baz}[!a-z0-9]/*").expect("Should be valid");
verify_address_pattern("/test{foo}").expect("Should be valid");
// Empty element in choice
verify_address_pattern("/{asd,}/").expect_err("Should not be valid");
// Illegal character in range
verify_address_pattern("/[a-b*]/").expect_err("Should not be valid");
// Character range is reversed
verify_address_pattern("/[b-a]").expect_err("Should not be valid");
// Character range starting and ending at same character
verify_address_pattern("/[a-a]").expect_err("Should not be valid");
// Empty
verify_address_pattern("").expect_err("Should not be valid");
// Empty part
verify_address_pattern("//empty/part").expect_err("Should not be valid");
// Unclosed range
verify_address_pattern("/[a-/foo").expect_err("Should not be valid");
verify_address_pattern("/[a-").expect_err("Should not be valid");
// Empty range
verify_address_pattern("/[]").expect_err("Should not be valid");
verify_address_pattern("/[!]").expect_err("Should not be valid");
// Unclosed alternative
verify_address_pattern("/{foo,bar/foo").expect_err("Should not be valid");
verify_address_pattern("/{foo,/bar").expect_err("Should not be valid");
verify_address_pattern("/{foo").expect_err("Should not be valid");
verify_address_pattern("/foo{,").expect_err("Should not be valid");
}