This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pb_test.go
298 lines (253 loc) · 8.66 KB
/
pb_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
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
package antlraci
import (
"testing"
)
/*
TestParseBindRules iterates the testBindRulesManifest and directly executes
the ParseBindRules package-level function using the current iteration value
and comparing the return result with the original.
- Even numbered map entries are VALID tests which SHOULD NOT FAIL for any reason
- Odd numbered map entries are INVALID tests which SHOULD FAIL w/ an error
*/
func TestParseBindRules(t *testing.T) {
ct := len(testBindRulesManifest)
var ect int
for idx := 0; idx < ct; idx++ {
want, found := testBindRulesManifest[idx]
if !found {
t.Errorf("%s failed [idx:%d/%d]: MISSING MAP ENTRY FOR INDEX %d?",
t.Name(), idx, ct, idx)
return
}
r, err := ParseBindRules(want)
if err != nil {
// There was an error
if idx%2 == 0 {
// Valid test should have worked, but did not.
t.Errorf("%s failed [idx:%d/%d]: %v\nwant: '%s'\ngot: '%s'",
t.Name(), idx, ct, err, want, r)
return
}
continue
} else {
// There was no error
if idx%2 != 0 {
// Invalid test should have failed, but did not.
t.Errorf("%s failed [idx:%d/%d]: invalid %T (%s) parse attempt returned no error",
t.Name(), idx, ct, r, r.String())
return
}
}
if got := r.String(); want != got {
// There was an (unexpected) result during strcmp.
ect++
// execute rudimentary stack dumper for
// troubleshooting of failed strcmp ...
printf("\n###################################\n")
printStack(r, 0)
printf("###################################\n")
t.Errorf("%s failed [idx:%d/%d]:\nwant '%s' [%d]\ngot '%s' [%d]",
t.Name(), idx, ct, want, r.Len(), got, r.Len())
}
}
if ect != 0 {
t.Logf("%s suffered %d total errors", t.Name(), ect)
}
}
/*
TestParseBindRule tests the direct execution of the *singular* ParseBindRule
package-level function.
A BindRule is a statement of the following syntax:
Available expression values/contexts
----------------------------------------------
One (1) Bind Keyword +----- Allows LDAP DistinguishedName/URI abstracts,
+---------------------------+ / possibly in a multi-valued context
| userdn, groupdn, roledn, |+
+---------------------------+ Allows network/mechanism/confidential
| ip, dns, ssf, authmethod, |+------- abstract contexts
+---------------------------+
| userattr, groupattr, |+------- Allows composite attr/val value-matching
+---------------------------+ statements, possibly enveloped as a URI
| timeofday or dayofweek |+ or basic attributeBindTypeOrValue context
+---------------------------+ \
| +----- Allows temporal contexts
| <comparison
<keyword> operator> <expression> ^
______|______ \ |
/ | | | | \ See expression descriptions
EQ LE LT GT GE NE
- Even numbered map entries are VALID tests which SHOULD NOT FAIL for any reason
- Odd numbered map entries are INVALID tests which SHOULD FAIL w/ an error
*/
func TestParseBindRule(t *testing.T) {
ct := len(testBindRuleIndices)
for i := 0; i < ct; i++ {
idx := testBindRuleIndices[i]
want, found := testBindRulesManifest[idx]
if !found {
continue // don't error, just skip ahead.
}
r, err := ParseBindRule(want)
if err != nil {
// There was an error ...
if idx%2 == 0 {
// Valid test should have worked, but did not ...
t.Errorf("%s [VALID] failed [idx[%d]::%d/%d]: err:%v\nwant: '%s'\ngot: '%s'",
t.Name(), idx, i, ct, err, want, r)
return
}
continue
} else {
// There was no error ...
if idx%2 != 0 {
// Invalid test should have failed, but did not ...
t.Errorf("%s [INVALID] failed [idx[%d]::%d/%d]: %T (%s) parse attempt returned no error",
t.Name(), idx, i, ct, r, want)
return
}
}
if got := r.String(); want != got {
// There was an (unexpected) result during strcmp.
t.Errorf("%s [VALID] failed [idx[%d]::%d/%d]:\nwant '%s'\ngot '%s'",
t.Name(), idx, i, ct, want, got)
return
}
}
}
/*
TestPermissions iterates the testPermissionManifest, and execting the ParsePermission
package-level function using each member as input, and then comparing the return result
with the original.
- Even numbered map entries are VALID tests which SHOULD NOT FAIL for any reason
- Odd numbered map entries are INVALID tests which SHOULD FAIL w/ an error
*/
func TestParsePermissions(t *testing.T) {
ct := len(testPermissionManifest)
for idx := 0; idx < ct; idx++ {
want, found := testPermissionManifest[idx]
if !found {
t.Errorf("%s failed [idx:%d/%d]: MISSING MAP ENTRY FOR INDEX %d?",
t.Name(), idx, ct, idx)
return
}
r, err := ParsePermission(want)
if err != nil {
// There was an error ...
if idx%2 == 0 || idx == 0 {
// Valid test should have worked, but did not ...
t.Errorf("%s failed [idx:%d/%d]: err:%v",
t.Name(), idx, ct, err)
return
}
continue // if it was supposed to fail, skip ahead
} else {
// There was no error ...
if idx%2 != 0 {
// Invalid test should have failed, but did not ...
t.Errorf("%s failed [idx:%d/%d: no error returned for bogus value [%s]",
t.Name(), idx, ct, want)
return
}
}
if got := r.String(); want != got {
// There was an (unexpected) result during strcmp.
t.Errorf("%s failed [idx:%d/%d]:\nwant '%s'\ngot '%s'",
t.Name(), idx, ct, want, got)
return
}
}
}
/*
TestPermissionBindRule tests the direct execution of the ParsePermissionBindRule
package level function. A PermissionBindRule is a statement of the following syntax:
delimited ASCII ASCII
privilege #32 #59
allow/deny names | |
| | | |
[ disposition (right,...) WHSP [BindRules] ; ]
------------------------ | ----------- \
Permission | BindRules \
+ +- terminator
\
\
seperator
- Even numbered map entries are VALID tests which SHOULD NOT FAIL for any reason
- Odd numbered map entries are INVALID tests which SHOULD FAIL w/ an error
*/
func TestParsePermissionBindRule(t *testing.T) {
ct := len(testPermissionBindRuleManifest)
var err error
for idx := 0; idx < ct; idx++ {
want, found := testPermissionBindRuleManifest[idx]
if !found {
t.Errorf("%s [idx:%d/%d]: MISSING MAP ENTRY FOR INDEX %d?",
t.Name(), idx, ct, idx)
return
}
var got PermissionBindRule
if got, err = ParsePermissionBindRule(want); err != nil {
// There was an error ...
if idx%2 == 0 || idx == 0 {
// Valid test should have worked, but did not ...
t.Errorf("%s [VALID] failed [idx:%d/%d]: err:%v",
t.Name(), idx, ct, err)
return
}
continue // if it was supposed to fail, skip ahead
}
// There was no error ...
if idx%2 != 0 {
// Invalid test should have failed, but did not ...
t.Errorf("%s [INVALID] failed [idx:%d/%d]: %T parse returned no error",
t.Name(), idx, ct, got)
return
}
if got.String() != want {
// There was an (unexpected) result during strcmp.
t.Errorf("%s [VALID] failed [idx:%d/%d]: unexpected result;\nwant '%s'\ngot '%s'",
t.Name(), idx, ct, want, got)
return
}
}
}
/*
- Even numbered map entries are VALID tests which SHOULD NOT FAIL for any reason
- Odd numbered map entries are INVALID tests which SHOULD FAIL w/ an error
*/
func TestParsePermissionBindRules(t *testing.T) {
ct := len(testPermissionBindRulesManifest)
var err error
for idx := 0; idx < ct; idx++ {
wanted, found := testPermissionBindRulesManifest[idx]
if !found {
t.Errorf("%s [idx[%d]::%d/%d]: MISSING MAP ENTRY FOR INDEX %d?",
t.Name(), idx, idx+1, ct, idx)
return
}
want := join(wanted, string(rune(32)))
got := newStack()
if got, err = ParsePermissionBindRules(want); err != nil {
// There was an error ...
if idx%2 == 0 {
// Valid test should have worked, but did not ...
t.Errorf("%s [VALID] failed [idx[%d]::%d/%d]: err:%v",
t.Name(), idx, idx+1, ct, err)
return
}
continue // if it was supposed to fail, skip ahead
}
// There was no error ...
if idx%2 != 0 {
// Invalid test should have failed, but did not ...
t.Errorf("%s [INVALID] failed [idx[%d]::%d/%d]: invalid %T parse returned no error",
t.Name(), idx, idx+1, ct, got)
return
}
if got.String() != want {
// There was an (unexpected) result during strcmp.
t.Errorf("%s [VALID] failed [idx[%d]::%d/%d]: unexpected result;\nwant '%s'\ngot '%s'",
t.Name(), idx, idx+1, ct, want, got)
return
}
}
}