-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsequences_test.go
79 lines (77 loc) · 1.23 KB
/
sequences_test.go
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
package deregexp
import (
"reflect"
"regexp/syntax"
"testing"
)
func TestSequences(t *testing.T) {
tests := []struct {
input string
want [][]string
}{
{
input: "Hello",
want: [][]string{
{"Hello"},
},
},
{
input: "Hell[o]",
want: [][]string{
{"Hello"},
},
},
{
input: "Hello+",
want: [][]string{
{"Hello"},
},
},
{
input: "H[ea]llo",
want: [][]string{
{"Hallo"},
{"Hello"},
},
},
{
input: "Hello{3,4}",
want: [][]string{
{"Hellooo"},
{"Helloooo"},
},
},
{
input: "Hello{3,4}( 123)?",
want: [][]string{
{"Hellooo 123"},
{"Hellooo"},
{"Helloooo 123"},
{"Helloooo"},
},
},
{
input: "Hello{3,}( 123)?(456)?",
want: [][]string{
{"Hellooo", " 123456"},
{"Hellooo", " 123"},
{"Hellooo", "456"},
{"Hellooo"},
},
},
}
for _, tc := range tests {
t.Run(tc.input, func(t *testing.T) {
re, err := syntax.Parse(tc.input, syntax.Perl)
if err != nil {
t.Fatalf("failed to parse regexp: %v", err)
}
p := stripBare(re)
seqs := flatSequences(p)
// TODO(quis): Ignore ordering
if !reflect.DeepEqual(seqs, tc.want) {
t.Errorf("mismatch: %#v; want %#v", seqs, tc.want)
}
})
}
}