-
Notifications
You must be signed in to change notification settings - Fork 457
/
Copy pathlib.rs
1793 lines (1648 loc) · 60.1 KB
/
lib.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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*!
A crate for defining tests in a TOML format and applying them to regex engine
implementations.
Generally speaking, if you aren't writing your own regex engine and looking to
test it, then this crate is probably not for you. Moreover, this crate does not
come with any actual tests. It merely defines the test format and provides some
convenient routines for executing tests within the context of Rust unit tests.
# Format
The entire test corpus is derived from zero or more TOML files. Each TOML
file contains zero or more tests, where each test is defined as a table via
`[[test]]`.
Each test has the following fields:
* `name` - A name for the test. It must be unique within its file. A test's
[`RegexTest::full_name`] is derived either via `{group_name}/{name}` or
`{group_name}/{name}/{additional_name}`, with the latter being used only when
[`TestRunner::expand`] is used. The `group_name` is derived from the file stem
(the file name without the `.toml suffix).
* `regex` - The regex to test. This is either a string or a (possibly empty)
list of regex patterns. When using a list, the underlying regex engine is
expected to support multiple patterns where each are identified starting from
`0` and incrementing by 1 for each subsequent pattern.
* `haystack` - The text to search.
* `bounds` - An optional field whose value is a table with `start` and `end`
fields, whose values must be valid for the given `haystack`. When set,
the search will only execute within these bounds. When absent, the bounds
correspond to `start = 0` and `end = haystack.len()`.
* `matches` - Zero or more match values. Each match value can be in one of four
formats:
* A simple span, i.e., `[5, 12]`, corresponding to the start and end of the
match, in byte offsets. The start is inclusive and the end is exclusive.
The pattern ID for the match is assumed to be `0`.
* A table corresponding to the matching pattern ID and the span of the
match. For example, `{ id = 5, span = [20, 21] }`.
* A list of capture group spans, with the first corresponding to the
overall match and the pattern ID assumed to be `0`. For example,
`[[5, 10], [6, 8], [], [9, 10]]`, where `[]` corresponds to a group
present in the regex but one that did not participate in a match.
* A table corresponding to the matching pattern ID and a list of spans
corresponding to the capture groups. For example,
`{ id = 5, spans = [[5, 10], [6, 8], [], [9, 10]] }`. This is the most
general, but also most verbose, syntax.
* `match-limit` - An optional field that specifies a limit on the number of
matches. When absent, no limit is enforced and all matches should be reported
by the regex engine. This can be useful, for example, when one only cares about
the first match.
* `compiles` - An optional field indicating whether the regex is expected to
compile. It defaults to `true` when absent. When `true`, if the regex does not
compile, then the test fails. Conversely, when `false`, if the regex _does_
compile, then the test fails.
* `anchored` - Whether to execute an anchored search or not. Note that this is
not the same as adding a `^` to the beginning of your regex pattern. `^` always
requires the regex to match at position `0`, but an anchored search simply
requires that the regex match at the starting position of the search. (The
starting position of the search can be configured via the optional `bounds`
field.)
* `case-insensitive` - Whether to match the regex case insensitively. This is
disabled by default. There is no real difference between using this field and
adding a `(?i)` to the beginning of your regex. (Some regex engines may not
support `(?i)`.)
* `unescape` - When enabled, the haystack is unescaped. Sequences like `\x00`
are turned into their corresponding byte values. This permits one to write
haystacks that contain invalid UTF-8 without embedding actual invalid UTF-8
into a TOML file (which is not allowed). There is generally no other reason to
enable `unescape`.
* `unicode` - When enabled, the regex pattern should be compiled with its
corresponding Unicode mode enabled. For example, `[^a]` matches any UTF-8
encoding of any codepoint other than `a`. Case insensitivty should be Unicode
aware. Unicode classes like `\pL` are available. The Perl classes `\w`, `\s`
and `\d` should be Unicode aware. And so on. This is an optional field and is
enabled by default.
* `utf8` - When this is enabled, all regex match substrings should be entirely
valid UTF-8. While parts of the haystack the regex searches through may not be
valid UTF-8, only the portions that are valid UTF-8 may be reported in match
spans. Importantly, this includes zero-width matches. Zero-width matches must
never split the UTF-8 encoding of a single codepoint when this is enabled. This
is an optional field and is enabled by default.
* `line-terminator` - This sets the line terminator used by the multi-line
assertions `(?m:^)` and `(?m:$)`. It defaults to `\n`. It must be exactly one
byte. This field is automatically unescaped in order to permit a non-ASCII
byte.
* `match-kind` - May be one of `all`, `leftmost-first` or `leftmost-longest`.
See [`MatchKind`] for more details. This is an optional field and defaults to
`leftmost-first`.
* `search-kind` - May be one of `earliest`, `leftmost` or `overlapping`. See
[`SearchKind`] for more details. This is an optional field and defaults to
`leftmost`.
*/
#![deny(missing_docs)]
/// For convenience, `anyhow::Error` is used to represents errors in this
/// crate.
///
/// For this reason, `anyhow` is a public dependency and is re-exported here.
pub extern crate anyhow;
use std::{borrow::Borrow, collections::HashSet, fs, path::Path};
use {
anyhow::{bail, Context, Result},
bstr::{BString, ByteSlice, ByteVec},
serde::Deserialize,
};
const ENV_REGEX_TEST: &str = "REGEX_TEST";
const ENV_REGEX_TEST_VERBOSE: &str = "REGEX_TEST_VERBOSE";
/// A collection of regex tests.
#[derive(Clone, Debug, Deserialize)]
pub struct RegexTests {
/// 'default' permits an empty TOML file.
#[serde(default, rename = "test")]
tests: Vec<RegexTest>,
#[serde(skip)]
seen: HashSet<String>,
}
impl RegexTests {
/// Create a new empty collection of glob tests.
pub fn new() -> RegexTests {
RegexTests { tests: vec![], seen: HashSet::new() }
}
/// Loads all of the tests in the given TOML file. The group name assigned
/// to each test is the stem of the file name. For example, if one loads
/// `foo/bar.toml`, then the group name for each test will be `bar`.
pub fn load<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
let path = path.as_ref();
let data = fs::read(path)
.with_context(|| format!("failed to read {}", path.display()))?;
let group_name = path
.file_stem()
.with_context(|| {
format!("failed to get file name of {}", path.display())
})?
.to_str()
.with_context(|| {
format!("invalid UTF-8 found in {}", path.display())
})?;
self.load_slice(&group_name, &data)
.with_context(|| format!("error loading {}", path.display()))?;
Ok(())
}
/// Load all of the TOML encoded tests in `data` into this collection.
/// The given group name is assigned to all loaded tests.
pub fn load_slice(&mut self, group_name: &str, data: &[u8]) -> Result<()> {
let data = std::str::from_utf8(&data).with_context(|| {
format!("data in {group_name} is not valid UTF-8")
})?;
let mut index = 1;
let mut tests: RegexTests =
toml::from_str(&data).with_context(|| {
format!("error decoding TOML for '{group_name}'")
})?;
for t in &mut tests.tests {
t.group = group_name.to_string();
if t.name.is_empty() {
t.name = format!("{index}");
index += 1;
}
t.full_name = format!("{}/{}", t.group, t.name);
if t.unescape {
t.haystack = BString::from(Vec::unescape_bytes(
// OK because TOML requires valid UTF-8.
t.haystack.to_str().unwrap(),
));
}
if t.line_terminator.is_empty() {
t.line_terminator = BString::from("\n");
} else {
t.line_terminator = BString::from(Vec::unescape_bytes(
// OK because TOML requires valid UTF-8.
t.line_terminator.to_str().unwrap(),
));
anyhow::ensure!(
t.line_terminator.len() == 1,
"line terminator '{:?}' has length not equal to 1",
t.line_terminator,
);
}
if self.seen.contains(t.full_name()) {
bail!("found duplicate tests for name '{}'", t.full_name());
}
self.seen.insert(t.full_name().to_string());
}
self.tests.extend(tests.tests);
Ok(())
}
/// Return an iterator over all regex tests that have been loaded. The
/// order of the iterator corresponds to the order in which the tests were
/// loaded.
///
/// This is useful to pass to [`TestRunner::test_iter`].
pub fn iter(&self) -> RegexTestsIter {
RegexTestsIter(self.tests.iter())
}
}
/// A regex test describes the inputs and expected outputs of a regex match.
///
/// Each `RegexTest` represents a single `[[test]]` table in a TOML test file.
#[derive(Clone, Debug, Deserialize)]
#[serde(deny_unknown_fields)]
pub struct RegexTest {
#[serde(skip)]
group: String,
#[serde(default)]
name: String,
#[serde(skip)]
additional_name: String,
#[serde(skip)]
full_name: String,
regex: RegexesFormat,
haystack: BString,
bounds: Option<Span>,
matches: Vec<Captures>,
#[serde(rename = "match-limit")]
match_limit: Option<usize>,
#[serde(default = "default_true")]
compiles: bool,
#[serde(default)]
anchored: bool,
#[serde(default, rename = "case-insensitive")]
case_insensitive: bool,
#[serde(default)]
unescape: bool,
#[serde(default = "default_true")]
unicode: bool,
#[serde(default = "default_true")]
utf8: bool,
#[serde(default, rename = "line-terminator")]
line_terminator: BString,
#[serde(default, rename = "match-kind")]
match_kind: MatchKind,
#[serde(default, rename = "search-kind")]
search_kind: SearchKind,
}
impl RegexTest {
/// Return the group name of this test.
///
/// Usually the group name corresponds to a collection of related
/// tests. More specifically, when using [`RegexTests::load`], the
/// group name corresponds to the file stem (the file name without the
/// `.toml` suffix). Otherwise, the group name is whatever is given to
/// [`RegexTests::load_slice`].
pub fn group(&self) -> &str {
&self.group
}
/// The name of this test.
///
/// Note that this is only the name as given in the `[[test]]` block. The
/// actual full name used for filtering and reporting can be retrieved with
/// [`RegexTest::full_name`].
pub fn name(&self) -> &str {
&self.name
}
/// The additional name for this test.
///
/// This is only non-empty when the test runner was expanded with
/// [`TestRunner::expand`].
pub fn additional_name(&self) -> &str {
&self.additional_name
}
/// The full name of this test, which is formed by joining the group
/// name, the test name and the additional name with a `/`.
pub fn full_name(&self) -> &str {
&self.full_name
}
/// Return all of the regexes that should be matched for this test. This
/// slice may be empty!
pub fn regexes(&self) -> &[String] {
self.regex.patterns()
}
/// Return the bytes on which the regex should be matched.
pub fn haystack(&self) -> &[u8] {
&self.haystack
}
/// Returns the bounds of a search.
///
/// If the test didn't specify any bounds, then the bounds returned are
/// equivalent to the entire haystack.
pub fn bounds(&self) -> Span {
self.bounds.unwrap_or(Span { start: 0, end: self.haystack().len() })
}
/// Returns the limit on the number of matches that should be reported,
/// if specified in the test.
///
/// This is useful for tests that only want to check for the first
/// match. In which case, the match limit is set to 1.
///
/// If there is no match limit, then regex engines are expected to report
/// all matches.
pub fn match_limit(&self) -> Option<usize> {
self.match_limit
}
/// Returns true if the regex(es) in this test are expected to compile.
pub fn compiles(&self) -> bool {
self.compiles
}
/// Whether the regex should perform an anchored search.
///
/// This is distinct from putting a `^` in the regex in that `bounds` may
/// be specified that permit the regex search to start at a position
/// `i > 0`. In which case, enabling anchored mode here requires that any
/// matches produced must have a start offset at `i`.
pub fn anchored(&self) -> bool {
self.anchored
}
/// Returns true if regex matching should be performed without regard to
/// case.
pub fn case_insensitive(&self) -> bool {
self.case_insensitive
}
/// Returns true if regex matching should have Unicode mode enabled.
///
/// For example, `[^a]` matches any UTF-8 encoding of any codepoint other
/// than `a`. Case insensitivty should be Unicode aware. Unicode classes
/// like `\pL` are available. The Perl classes `\w`, `\s` and `\d` should
/// be Unicode aware. And so on.
///
/// This is enabled by default.
pub fn unicode(&self) -> bool {
self.unicode
}
/// Returns true if regex matching should exclusively match valid UTF-8.
/// When this is disabled, matching on arbitrary bytes is permitted.
///
/// When this is enabled, all regex match substrings should be entirely
/// valid UTF-8. While parts of the haystack the regex searches through
/// may not be valid UTF-8, only the portions that are valid UTF-8 may be
/// reported in match spans.
///
/// Importantly, this includes zero-width matches. Zero-width matches must
/// never split the UTF-8 encoding of a single codepoint when this is
/// enabled.
///
/// This is enabled by default.
pub fn utf8(&self) -> bool {
self.utf8
}
/// Returns the line terminator that should be used for the multi-line
/// assertions `(?m:^)` and `(?m:$)`.
///
/// If it isn't set, then this defaults to `\n`.
pub fn line_terminator(&self) -> u8 {
self.line_terminator[0]
}
/// Return the match semantics required by this test.
pub fn match_kind(&self) -> MatchKind {
self.match_kind
}
/// Return the search semantics required by this test.
pub fn search_kind(&self) -> SearchKind {
self.search_kind
}
/// Run the test and return the result produced by the given compiled
/// regex.
fn test(&self, regex: &mut CompiledRegex) -> TestResult {
match regex.matcher {
None => TestResult::skip(),
Some(ref mut match_regex) => match_regex(self),
}
}
/// Append `/name` to the `full_name` of this test.
///
/// This is used to support [`TestRunner::expand`].
fn with_additional_name(&self, name: &str) -> RegexTest {
let additional_name = name.to_string();
let full_name = format!("{}/{}", self.full_name, additional_name);
RegexTest { additional_name, full_name, ..self.clone() }
}
/// Returns true if and only if this test expects at least one of the
/// regexes to match the haystack.
fn is_match(&self) -> bool {
!self.matches.is_empty()
}
/// Returns a slice of pattern IDs that are expected to match the haystack.
/// The slice is empty if no match is expected to occur. The IDs returned
/// are deduplicated and sorted in ascending order.
fn which_matches(&self) -> Vec<usize> {
let mut seen = HashSet::new();
let mut ids = vec![];
for cap in self.matches.iter() {
if !seen.contains(&cap.id) {
seen.insert(cap.id);
ids.push(cap.id);
}
}
ids.sort();
ids
}
/// Extracts the overall match from each `Captures` match in this test
/// and returns it.
fn matches(&self) -> Vec<Match> {
let mut matches = vec![];
for cap in self.matches.iter() {
matches.push(cap.to_match());
}
matches
}
/// Returns the matches expected by this test, including the spans of any
/// matching capture groups.
fn captures(&self) -> Vec<Captures> {
self.matches.clone()
}
}
/// The result of compiling a regex.
///
/// In many implementations, the act of matching a regex can be separated from
/// the act of compiling a regex. A `CompiledRegex` represents a regex that has
/// been compiled and is ready to be used for matching.
///
/// The matching implementation is represented by a closure that accepts a
/// [`&RegexTest`](RegexTest) and returns a [`TestResult`].
pub struct CompiledRegex {
matcher: Option<Box<dyn FnMut(&RegexTest) -> TestResult + 'static>>,
}
impl CompiledRegex {
/// Provide a closure that represents the compiled regex and executes a
/// regex match on any `RegexTest`. The `RegexTest` given to the closure
/// provided is the exact same `RegexTest` that is used to compile this
/// regex.
pub fn compiled(
matcher: impl FnMut(&RegexTest) -> TestResult + 'static,
) -> CompiledRegex {
CompiledRegex { matcher: Some(Box::new(matcher)) }
}
/// Indicate that tests on this regex should be skipped. This typically
/// occurs if the `RegexTest` requires something that an implementation
/// does not support.
pub fn skip() -> CompiledRegex {
CompiledRegex { matcher: None }
}
/// Returns true if the test runner decided to skip the test when
/// attempting to compile the regex.
pub fn is_skip(&self) -> bool {
self.matcher.is_none()
}
}
impl std::fmt::Debug for CompiledRegex {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
let status = match self.matcher {
None => "Skip",
Some(_) => "Run(...)",
};
f.debug_struct("CompiledRegex").field("matcher", &status).finish()
}
}
/// The result of executing a regex search.
///
/// When using the test runner, callers must provide a closure that takes
/// a `RegexTest` and returns a `TestResult`. The `TestResult` is meant to
/// capture the results of matching the haystack against the regex specified by
/// the `RegexTest`.
///
/// Usually this consists of one or more matches, which can be constructed via
/// `TestResult::matches` (for just overall matches) or `TestResult::captures`
/// (for matches with capture group spans). But the regex engine may also
/// report whether a match exists, or just whether a pattern matched or not.
/// That can be done via `TestResult::matched` and `TestResult::which`,
/// respectively.
#[derive(Debug, Clone)]
pub struct TestResult {
kind: TestResultKind,
}
#[derive(Debug, Clone)]
enum TestResultKind {
Match(bool),
Which(Vec<usize>),
StartEnd(Vec<Match>),
Captures(Vec<Captures>),
Skip,
Fail { why: String },
}
impl TestResult {
/// Create a test result that indicates just whether any match was found
/// or not.
pub fn matched(yes: bool) -> TestResult {
TestResult { kind: TestResultKind::Match(yes) }
}
/// Create a test result that indicates which out of possibly many regexes
/// matched the haystack. If `which` is empty, then this is equivalent to
/// `TestResult::matched(false)`.
///
/// Note that the iterator should consist of pattern IDs, where each
/// ID corresponds to a pattern that matches anywhere in the haystack.
/// Multiple patterns may match the same region of the haystack. That is,
/// this supports overlapping matches.
pub fn which<I: IntoIterator<Item = usize>>(it: I) -> TestResult {
let mut which: Vec<usize> = it.into_iter().collect();
which.sort();
TestResult { kind: TestResultKind::Which(which) }
}
/// Create a test result containing a sequence of all matches in the test's
/// haystack. This is useful when the regex engine only reports overall
/// matches and not the spans of each matching capture group.
///
/// If the sequence is empty, then this is equivalent to
/// `TestResult::matched(false)`.
pub fn matches<I: IntoIterator<Item = Match>>(it: I) -> TestResult {
TestResult { kind: TestResultKind::StartEnd(it.into_iter().collect()) }
}
/// Create a test result containing a sequence of all capturing matches in
/// the test's haystack. Each match is a `Captures`, and each `Captures`
/// should include the spans of all matching capturing groups.
///
/// If the sequence is empty, then this is equivalent to
/// `TestResult::matched(false)`.
pub fn captures<I: IntoIterator<Item = Captures>>(it: I) -> TestResult {
TestResult { kind: TestResultKind::Captures(it.into_iter().collect()) }
}
/// Indicate that this test should be skipped. It will not be counted as
/// a failure.
pub fn skip() -> TestResult {
TestResult { kind: TestResultKind::Skip }
}
/// Indicate that this test should be failed for the reason given.
///
/// This is useful when a test needs to be failed for reasons that the
/// test runner itself cannot check. That is, the test is failed by the
/// implementation being tested.
pub fn fail(why: &str) -> TestResult {
TestResult { kind: TestResultKind::Fail { why: why.to_string() } }
}
}
/// A runner for executing regex tests.
///
/// This runner is intended to be used within a Rust unit test, marked with the
/// `#[test]` attribute.
///
/// A test runner is responsible for running tests against a regex
/// implementation. It contains logic for skipping tests and collects test
/// results. Typical usage corresponds to calling [`TestRunner::test_iter`] on
/// an iterator of `RegexTest`s, and then calling `assert` once done. If any
/// tests failed, then `assert` will panic with an error message containing all
/// test failures. `assert` must be called before the test completes.
///
/// # Skipping tests
///
/// If the `REGEX_TEST` environment variable is set, then it may contain
/// a comma separated list of substrings. Each substring corresponds to a
/// whitelisted item, unless it starts with a `-`, in which case it corresponds
/// to a blacklisted item.
///
/// If there are any whitelist items, then a test's full name must contain at
/// least one of the whitelist substrings in order to be run, and does not
/// contain and blacklist substrings. If there are no whitelist substrings,
/// then a test is run only when it does not match any blacklist substrings.
///
/// The last substring that a test name matches takes precedent.
///
/// Callers may also specify explicit whitelist or blacklist substrings using
/// the corresponding methods on this type, which has the effect of always
/// having those rules in place for that specific test. For example, if you're
/// testing a search by building a DFA and then minimizing it, you may want to
/// skip tests with bigger regexes, since they could take quite some time to
/// run.
///
/// Whitelist and blacklist substrings are matched on the full name of each
/// test, which typically looks like `group_name/test_name`.
///
/// Currently there is no way to escape either a `-` or a `,` in `REGEX_TEST`.
/// This usually isn't required because test names usually don't include either
/// character.
#[derive(Debug)]
pub struct TestRunner {
include: Vec<IncludePattern>,
results: RegexTestResults,
expanders: Vec<Expander>,
}
impl TestRunner {
/// Create a new runner for executing tests.
///
/// The test runner maintains a full list of tests that have succeeded,
/// failed or been skipped. Moreover, the test runner may control which
/// tests get run via its whitelist and blacklist.
///
/// This returns an error if there was a problem reading the `REGEX_TEST`
/// environment variable, which may be set to include or exclude tests.
/// See the docs on `TestRunner` for its format.
pub fn new() -> Result<TestRunner> {
let mut runner = TestRunner {
include: vec![],
results: RegexTestResults::new(),
expanders: vec![],
};
for mut substring in read_env(ENV_REGEX_TEST)?.split(",") {
substring = substring.trim();
if substring.is_empty() {
continue;
}
if substring.starts_with("-") {
runner.blacklist(&substring[1..]);
} else {
runner.whitelist(substring);
}
}
Ok(runner)
}
/// Assert that all tests run have either passed or have been skipped.
///
/// If any tests have failed, then a panic occurs with a report of all
/// failures.
///
/// If `REGEX_TEST_VERBOSE` is set to `1`, then a longer report of tests
/// that passed, failed or skipped is printed.
pub fn assert(&mut self) {
self.results.assert();
}
/// Whitelist the given substring.
///
/// Whitelist and blacklist rules are only applied when
/// [`TestRunner::test_iter`] is called.
pub fn whitelist(&mut self, substring: &str) -> &mut TestRunner {
self.include.push(IncludePattern {
blacklist: false,
substring: BString::from(substring),
});
self
}
/// Whitelist the given iterator substrings.
///
/// This is a convenience routine for calling `whitelist` on each of the
/// substrings in the iterator provided.
///
/// Whitelist and blacklist rules are only applied when
/// [`TestRunner::test_iter`] is called.
pub fn whitelist_iter<I, S>(&mut self, substrings: I) -> &mut TestRunner
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
for substring in substrings {
self.whitelist(substring.as_ref());
}
self
}
/// Blacklist the given substring.
///
/// A blacklisted test is never run, unless a whitelisted substring added
/// after the blacklisted substring matches it.
///
/// Whitelist and blacklist rules are only applied when
/// [`TestRunner::test_iter`] is called.
pub fn blacklist(&mut self, substring: &str) -> &mut TestRunner {
self.include.push(IncludePattern {
blacklist: true,
substring: BString::from(substring),
});
self
}
/// Blacklist the given iterator substrings.
///
/// A blacklisted test is never run, unless a whitelisted substring added
/// after the blacklisted substring matches it.
///
/// This is a convenience routine for calling `blacklist` on each of the
/// substrings in the iterator provided.
///
/// Whitelist and blacklist rules are only applied when
/// [`TestRunner::test_iter`] is called.
pub fn blacklist_iter<I, S>(&mut self, substrings: I) -> &mut TestRunner
where
I: IntoIterator<Item = S>,
S: AsRef<str>,
{
for substring in substrings {
self.blacklist(substring.as_ref());
}
self
}
/// Set an expansion predicate that appends each entry in
/// `additional_names` to the end the name for every test that `predicate`
/// returns true. Moreover, the corresponding additional name is made
/// available via [`RegexTest::additional_name`].
///
/// This permits implementors to create multiple copies of each test, and
/// then do specifically different tasks with each, while making it so each
/// test is distinct.
///
/// For example, you might write something like this:
///
/// ```ignore
/// TestRunner::new()?
/// .expand(&["is_match", "find"], |t| t.compiles())
/// .test_iter(tests, compiler)
/// .assert()
/// ```
///
/// where each test that is expected to have a regex compile gets copied
/// with `/is_match` and `/find` appends to the end of its name. Then, in
/// your own test runner, you can inspect [`RegexTest::additional_name`] to
/// decide what to do. In the case of `is_match`, you might test your regex
/// engines "has a match" API, which might exercise different logic than
/// your "find where the matches are" API.
pub fn expand<S: AsRef<str>>(
&mut self,
additional_names: &[S],
predicate: impl FnMut(&RegexTest) -> bool + 'static,
) -> &mut TestRunner {
self.expanders.push(Expander {
predicate: Box::new(predicate),
additional_names: additional_names
.iter()
.map(|s| s.as_ref().to_string())
.collect(),
});
self
}
/// Run all of the given tests using the given regex compiler.
///
/// The compiler given is a closure that accepts a
/// [`&RegexTest`](RegexTest) and a sequence of patterns, and returns (if
/// successful) a [`CompiledRegex`] which can execute a search.
///
/// Note that if there are test failures, this merely _collects_ them. Use
/// [`TestRunner::assert`] to fail the current test by panicking if there
/// any failures.
///
/// Typically, one provides [`RegexTests::iter`] as the iterator of
/// `RegexTest` values.
pub fn test_iter<I, T>(
&mut self,
it: I,
mut compile: impl FnMut(&RegexTest, &[String]) -> Result<CompiledRegex>,
) -> &mut TestRunner
where
I: IntoIterator<Item = T>,
T: Borrow<RegexTest>,
{
for test in it {
let test = test.borrow();
let mut additional = vec![];
for expander in &mut self.expanders {
if (expander.predicate)(test) {
for name in expander.additional_names.iter() {
additional.push(test.with_additional_name(name));
}
break;
}
}
if additional.is_empty() {
additional.push(test.to_owned());
}
for test in &additional {
if self.should_skip(test) {
self.results.skip(test);
continue;
}
self.test(test, |regexes| compile(test, regexes));
}
}
self
}
/// Run a single test.
///
/// This records the result of running the test in this runner. This does
/// not fail the test immediately if the given regex test fails. Instead,
/// this is only done when the `assert` method is called.
///
/// Note that using this method bypasses any whitelist or blacklist applied
/// to this runner. Whitelisted (and blacklisted) substrings are only
/// applied when using `test_iter`.
pub fn test(
&mut self,
test: &RegexTest,
mut compile: impl FnMut(&[String]) -> Result<CompiledRegex>,
) -> &mut TestRunner {
let mut compiled = match safe(|| compile(test.regexes())) {
Err(msg) => {
// Regex tests should never panic. It's auto-fail if they do.
self.results.fail(
test,
RegexTestFailureKind::UnexpectedPanicCompile(msg),
);
return self;
}
Ok(Ok(compiled)) => compiled,
Ok(Err(err)) => {
if !test.compiles() {
self.results.pass(test);
} else {
self.results.fail(
test,
RegexTestFailureKind::CompileError { err },
);
}
return self;
}
};
// We fail the test if we didn't expect the regex to compile. However,
// it's possible the caller decided to skip the test when attempting
// to compile the regex, so we check for that. If the compiled regex
// is marked as skipped, then 'test.test(..)' below handles it
// correctly.
if !test.compiles() && !compiled.is_skip() {
self.results.fail(test, RegexTestFailureKind::NoCompileError);
return self;
}
let result = match safe(|| test.test(&mut compiled)) {
Ok(result) => result,
Err(msg) => {
self.results.fail(
test,
RegexTestFailureKind::UnexpectedPanicSearch(msg),
);
return self;
}
};
match result.kind {
TestResultKind::Match(yes) => {
if yes == test.is_match() {
self.results.pass(test);
} else {
self.results.fail(test, RegexTestFailureKind::IsMatch);
}
}
TestResultKind::Which(which) => {
if which != test.which_matches() {
self.results
.fail(test, RegexTestFailureKind::Many { got: which });
} else {
self.results.pass(test);
}
}
TestResultKind::StartEnd(matches) => {
let expected = test.matches();
if expected != matches {
self.results.fail(
test,
RegexTestFailureKind::StartEnd { got: matches },
);
} else {
self.results.pass(test);
}
}
TestResultKind::Captures(caps) => {
let expected = test.captures();
if expected != caps {
self.results.fail(
test,
RegexTestFailureKind::Captures { got: caps },
);
} else {
self.results.pass(test);
}
}
TestResultKind::Skip => {
self.results.skip(test);
}
TestResultKind::Fail { why } => {
self.results
.fail(test, RegexTestFailureKind::UserFailure { why });
}
}
self
}
/// Return true if and only if the given test should be skipped.
fn should_skip(&self, test: &RegexTest) -> bool {
if self.include.is_empty() {
return false;
}
// If we don't have any whitelist patterns, then the test will be run
// unless it is blacklisted. Otherwise, if there are whitelist
// patterns, then the test must match at least one of them.
let mut skip = self.include.iter().any(|pat| !pat.blacklist);
for pat in &self.include {
if test.full_name().as_bytes().contains_str(&pat.substring) {
skip = pat.blacklist;
}
}
skip
}
}
#[derive(Debug)]
struct IncludePattern {
blacklist: bool,
substring: BString,
}
struct Expander {
predicate: Box<dyn FnMut(&RegexTest) -> bool>,
additional_names: Vec<String>,
}
impl std::fmt::Debug for Expander {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.debug_struct("Expander")
.field("predicate", &"<FnMut(..)>")
.field("additional_names", &self.additional_names)
.finish()
}
}
/// A collection of test results, corresponding to passed, skipped and failed
/// tests.
#[derive(Debug)]
struct RegexTestResults {
pass: Vec<RegexTestResult>,
fail: Vec<RegexTestFailure>,
skip: Vec<RegexTestResult>,
}
/// A test that passed or skipped, along with its specific result.
#[derive(Debug)]
struct RegexTestResult {
test: RegexTest,
}
/// A test that failed along with the reason why.
#[derive(Debug)]
struct RegexTestFailure {
test: RegexTest,
kind: RegexTestFailureKind,
}
/// Describes the nature of the failed test.
#[derive(Debug)]
enum RegexTestFailureKind {
/// UserFailure indicates that the test failed because the test function
/// explicitly failed it for the reason in the message given.
UserFailure { why: String },
/// This occurs when the test expected a match (or didn't expect a match),
/// but the actual regex implementation didn't match (or did match).
IsMatch,
/// This occurs when a set of regexes is tested, and the matching regexes
/// returned by the regex implementation don't match the expected matching
/// regexes. This error contains the indices of the regexes that matched.
Many { got: Vec<usize> },
/// This occurs when a single regex is used to find all non-overlapping
/// matches in a haystack, where the result did not match what was
/// expected. This reports the incorrect matches returned by the regex
/// implementation under test.
StartEnd { got: Vec<Match> },
/// Like StartEnd, but for capturing groups.
Captures { got: Vec<Captures> },
/// This occurs when the test expected the regex to fail to compile, but it
/// compiled successfully.
NoCompileError,
/// This occurs when the test expected the regex to compile successfully,
/// but it failed to compile.
CompileError { err: anyhow::Error },
/// While compiling, a panic occurred. If possible, the panic message
/// is captured.
UnexpectedPanicCompile(String),