-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpatttern_test.go
229 lines (219 loc) · 4.98 KB
/
patttern_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
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
package types
import (
"testing"
"github.com/cedar-policy/cedar-go/internal/testutil"
)
func TestPattern(t *testing.T) {
t.Parallel()
t.Run("saturate two wildcards", func(t *testing.T) {
t.Parallel()
pattern1 := NewPattern(Wildcard{}, Wildcard{})
pattern2 := NewPattern(Wildcard{})
testutil.Equals(t, pattern1, pattern2)
})
t.Run("saturate two literals", func(t *testing.T) {
t.Parallel()
pattern1 := NewPattern(String("foo"), String("bar"))
pattern2 := NewPattern(String("foobar"))
testutil.Equals(t, pattern1, pattern2)
})
t.Run("panicOnNil", func(t *testing.T) {
t.Parallel()
testutil.Panic(t, func() {
NewPattern(nil)
})
})
t.Run("MarshalCedar", func(t *testing.T) {
t.Parallel()
testutil.Equals(t, string(NewPattern(String("*foo"), Wildcard{}).MarshalCedar()), `"\*foo*"`)
})
}
func TestPatternMatch(t *testing.T) {
t.Parallel()
tests := []struct {
pattern Pattern
target string
want bool
}{
{NewPattern(), "", true},
{NewPattern(), "hello", false},
{NewPattern(Wildcard{}), "hello", true},
{NewPattern(String("e")), "hello", false},
{NewPattern(Wildcard{}, String("e")), "hello", false},
{NewPattern(Wildcard{}, String("e"), Wildcard{}), "hello", true},
{NewPattern(String("hello")), "hello", true},
{NewPattern(String("hello"), Wildcard{}), "hello", true},
{NewPattern(Wildcard{}, String("h"), Wildcard{}, String("llo"), Wildcard{}), "hello", true},
{NewPattern(String("h"), Wildcard{}, String("e"), Wildcard{}, String("o")), "hello", true},
{NewPattern(String("h"), Wildcard{}, String("e"), Wildcard{}, Wildcard{}, String("o")), "hello", true},
{NewPattern(String("h"), Wildcard{}, String("z"), Wildcard{}, String("o")), "hello", false},
{NewPattern(String("**"), Wildcard{}, String("**")), "**foo**", true},
{NewPattern(String("**"), Wildcard{}, String("**")), "**bar**", true},
{NewPattern(String("**"), Wildcard{}, String("**")), "*bar*", false},
// with native strings
{NewPattern(Wildcard{}, "ell", Wildcard{}), "hello", true},
{NewPattern("he", Wildcard{}), "hello", true},
}
for _, tt := range tests {
tt := tt
t.Run(string(tt.pattern.MarshalCedar())+":"+tt.target, func(t *testing.T) {
t.Parallel()
got := tt.pattern.Match(String(tt.target))
testutil.Equals(t, got, tt.want)
})
}
}
func TestPatternJSON(t *testing.T) {
t.Parallel()
tests := []struct {
name string
pattern string
errFunc func(testutil.TB, error)
target Pattern
shouldRoundTrip bool
}{
{
"like single wildcard",
`["Wildcard"]`,
testutil.OK,
NewPattern(Wildcard{}),
true,
},
{
"like single literal",
`[{"Literal":"foo"}]`,
testutil.OK,
NewPattern(String("foo")),
true,
},
{
"like wildcard then literal",
`["Wildcard", {"Literal":"foo"}]`,
testutil.OK,
NewPattern(Wildcard{}, String("foo")),
true,
},
{
"like literal then wildcard",
`[{"Literal":"foo"}, "Wildcard"]`,
testutil.OK,
NewPattern(String("foo"), Wildcard{}),
true,
},
{
"like literal with asterisk then wildcard",
`[{"Literal":"f*oo"}, "Wildcard"]`,
testutil.OK,
NewPattern(String("f*oo"), Wildcard{}),
true,
},
{
"like literal sandwich",
`[{"Literal":"foo"}, "Wildcard", {"Literal":"bar"}]`,
testutil.OK,
NewPattern(String("foo"), Wildcard{}, String("bar")),
true,
},
{
"like wildcard sandwich",
`["Wildcard", {"Literal":"foo"}, "Wildcard"]`,
testutil.OK,
NewPattern(Wildcard{}, String("foo"), Wildcard{}),
true,
},
{
"double wildcard",
`["Wildcard", "Wildcard", {"Literal":"foo"}]`,
testutil.OK,
NewPattern(Wildcard{}, String("foo")),
false,
},
{
"double literal",
`["Wildcard", {"Literal":"foo"}, {"Literal":"bar"}]`,
testutil.OK,
NewPattern(Wildcard{}, String("foobar")),
false,
},
{
"not list",
`"Wildcard"`,
testutil.Error,
Pattern{},
false,
},
{
"lower case wildcard",
`["wildcard"]`,
testutil.Error,
Pattern{},
false,
},
{
"other string",
`["cardwild"]`,
testutil.Error,
Pattern{},
false,
},
{
"other type",
`[null]`,
testutil.Error,
Pattern{},
false,
},
{
"lowercase literal",
`[{"literal": "foo"}]`,
testutil.Error,
Pattern{},
false,
},
{
"missing literal",
`[{"figurative": "haha"}]`,
testutil.Error,
Pattern{},
false,
},
{
"two keys",
`[{"Literal": "foo", "Figurative": "haha"}]`,
testutil.Error,
Pattern{},
false,
},
{
"nonstring literal",
`[{"Literal": 2}]`,
testutil.Error,
Pattern{},
false,
},
{
"empty pattern",
`[]`,
testutil.Error,
Pattern{},
false,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
var pat Pattern
err := pat.UnmarshalJSON([]byte(tt.pattern))
tt.errFunc(t, err)
if err != nil {
return
}
marshaled, err := pat.MarshalJSON()
testutil.OK(t, err)
if tt.shouldRoundTrip {
testutil.Equals(t, string(marshaled), tt.pattern)
}
})
}
}