-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompile_test.go
128 lines (104 loc) · 2.28 KB
/
compile_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
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
package fantasyname
import (
"errors"
"math/rand"
"strings"
"testing"
)
func TestCompileErrors(t *testing.T) {
t.Parallel()
type testCase struct {
Err error
Pattern string
}
cases := []testCase{
{Pattern: "", Err: ErrEmptyStack},
{Pattern: "a>", Err: ErrEmptyStack},
{Pattern: "a)", Err: ErrEmptyStack},
{Pattern: "<a", Err: ErrUnbalancedGroup},
{Pattern: "(a", Err: ErrUnbalancedGroup},
{Pattern: "<a)", Err: ErrUnbalancedGroup},
{Pattern: "(a>", Err: ErrUnbalancedGroup},
{Pattern: "a|b", Err: ErrInvalidSplit},
}
for idx, tc := range cases {
_, err := Compile(tc.Pattern)
if err == nil {
t.Errorf("no error for case: %d", idx)
}
if !errors.Is(err, tc.Err) {
t.Errorf("unexpected error for case: %d: %v", idx, err)
}
}
}
func TestCompileTricky(t *testing.T) {
t.Parallel()
const (
pat = "(((((<(((((((((((((((a)))))))))))))))>)))))"
val = "a"
)
gen, err := Compile(pat)
if err != nil {
t.Errorf("uexpected error: %v", err)
}
if rv := gen.String(); rv != val {
t.Errorf("unexpected result: '%s'", rv)
}
}
func TestCompileMain(t *testing.T) {
t.Parallel()
const (
pat = "~(foo)c'<s|cvc>!(a)"
valp = "A"
vals = "oof"
)
gen, err := Compile(pat, RandFn(rand.Intn))
if err != nil {
t.Errorf("uexpected error: %v", err)
}
if rv := gen.String(); !strings.HasPrefix(rv, vals) || !strings.HasSuffix(rv, valp) {
t.Errorf("unexpected result: '%s'", rv)
}
}
func TestCompileCollapse(t *testing.T) {
t.Parallel()
const (
pat = "(xxooo)"
val = "xoo"
)
gen, err := Compile(pat, Collapse(true))
if err != nil {
t.Errorf("uexpected error: %v", err)
}
if rv := gen.String(); rv != val {
t.Errorf("unexpected result: '%s'", rv)
}
}
func TestCompileDictionary(t *testing.T) {
t.Parallel()
const (
pat = "!a!b!c"
val = "AaaBbbCcc"
)
custom := map[rune][]string{
'a': {"aaa"},
'b': {"bbb"},
'c': {"ccc"},
}
gen, err := Compile(pat, Dictionary(custom))
if err != nil {
t.Errorf("unexpected error: %v", err)
}
if rv := gen.String(); rv != val {
t.Errorf("unexpected result: '%s'", rv)
}
}
func FuzzCompile(f *testing.F) {
f.Add("<i|s>v(mon|chu|zard|rtle)")
f.Fuzz(func(t *testing.T, arg string) {
_, err := Compile(arg)
if err != nil {
t.Skip("only correct templates are intresting")
}
})
}