This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpb_test.go
404 lines (338 loc) · 9.14 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
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
package aci
import (
"fmt"
"testing"
)
/*
This example demonstrates the creation of a PermissionBindRule using the PBR
package level function.
*/
func ExamplePBR() {
// create a granting (allow)
// permissive statement, in
// which the read, search and
// compare privileges are
// bestowed.
grant := Allow(
`read`,
`search`,
`compare`,
)
// create a timeframe rule to reference.
rule := Timeframe(
ToD(`1400`), // notBefore
ToD(`2300`), // notAfter
)
// Assemble the PermissionBindRule
// using the above components. Note
// that using the PBR function (as
// opposed to assembling the struct
// manually) automatically executes
// the Valid method for us.
pbr := PBR(grant, rule)
fmt.Printf("%s", pbr)
// Output: allow(read,search,compare) timeofday >= "1400" AND timeofday < "2300";
}
func ExamplePermissionBindRule_String() {
var pbr PermissionBindRule = PBR(
Allow(NoAccess),
UDN(`uid=disgruntled_employee,ou=People,dc=example,dc=com`).Eq(),
)
fmt.Printf("%s", pbr)
// Output: allow(none) userdn = "ldap:///uid=disgruntled_employee,ou=People,dc=example,dc=com";
}
func ExamplePermissionBindRule_Compare() {
var pbr1 PermissionBindRule = PBR(
Allow(NoAccess),
UDN(`uid=disgruntled_employees,ou=Group,dc=example,dc=com`).Eq(),
)
var pbr2 PermissionBindRule = PBR(
Allow(NoAccess),
UDN(`uid=disgruntled_employee,ou=People,dc=example,dc=com`).Eq(),
)
fmt.Printf("%t", pbr1.Compare(pbr2))
// Output: false
}
func ExamplePermissionBindRule_IsZero() {
var pbr PermissionBindRule
fmt.Printf("Zero: %t", pbr.IsZero())
// Output: Zero: true
}
func ExamplePermissionBindRule_Valid() {
var pbr PermissionBindRule
fmt.Printf("Valid: %t", pbr.Valid() == nil)
// Output: Valid: false
}
func ExamplePermissionBindRule_Kind() {
var pbr PermissionBindRule
fmt.Printf("%s", pbr.Kind())
// Output: pbr
}
/*
This example demonstrates the creation of a PermissionBindRules instance using the PBRs
package level function.
*/
func ExamplePBRs() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs := PBRs(rule1, rule2)
fmt.Printf("%d %T instances found within %T", pbrs.Len(), rule1, pbrs)
// Output: 2 aci.PermissionBindRule instances found within aci.PermissionBindRules
}
func ExamplePermissionBindRules_Kind() {
var pbrs PermissionBindRules
fmt.Printf("%s", pbrs.Kind())
// Output: pbrs
}
func ExamplePermissionBindRules_IsZero() {
var pbrs PermissionBindRules
fmt.Printf("Zero: %t", pbrs.IsZero())
// Output: Zero: true
}
func ExamplePermissionBindRules_Valid() {
var pbrs PermissionBindRules
fmt.Printf("Valid: %t", pbrs.Valid() == nil)
// Output: Valid: false
}
func ExamplePermissionBindRules_Len() {
var pbrs PermissionBindRules
fmt.Printf("Length: %d", pbrs.Len())
// Output: Length: 0
}
func ExamplePermissionBindRules_Push() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs := PBRs()
pbrs.Push(rule1)
pbrs.Push(rule2)
fmt.Printf("%d %T instances found within %T", pbrs.Len(), rule1, pbrs)
// Output: 2 aci.PermissionBindRule instances found within aci.PermissionBindRules
}
func ExamplePermissionBindRules_Compare() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs1 := PBRs()
pbrs1.Push(rule1, rule2)
rule1 = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=onboard_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
rule2 = PBR(
Allow(AllAccess),
UDN(`cn=Jesse Coretta,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
pbrs2 := PBRs()
pbrs2.Push(rule1, rule2)
fmt.Printf("%t", pbrs1.Compare(pbrs2))
// Output: false
}
func ExamplePermissionBindRules_Index() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs := PBRs()
pbrs.Push(rule1)
pbrs.Push(rule2)
for i := 0; i < pbrs.Len(); i++ {
slice := pbrs.Index(i)
fmt.Printf("%s\n", slice)
}
// Output:
// deny(all,proxy) groupdn = "ldap:///cn=disgruntled_employees,ou=Groups,dc=example,dc=com";
// allow(all) userdn = "ldap:///cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com";
}
func ExamplePermissionBindRules_Contains() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs := PBRs(rule1, rule2)
fmt.Printf("%T contains rule2: %t", pbrs, pbrs.Contains(rule2))
// Output: aci.PermissionBindRules contains rule2: true
}
func ExamplePermissionBindRules_Pop() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs := PBRs()
pbrs.Push(rule1)
pbrs.Push(rule2)
// Pop the most recent (LIFO) slice
// for interrogation. Note that this
// REMOVED it from the above stack.
popped := pbrs.Pop()
fmt.Printf("Popped: %s", popped)
// Output: Popped: allow(all) userdn = "ldap:///cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com";
}
func ExamplePermissionBindRules_String() {
var rule1 PermissionBindRule = PBR(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
var rule2 PermissionBindRule = PBR(
Allow(AllAccess),
UDN(`cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com`).Eq(),
)
// Init/Push in one shot
pbrs := PBRs()
pbrs.Push(rule1)
pbrs.Push(rule2)
fmt.Printf("%s", pbrs)
// Output: deny(all,proxy) groupdn = "ldap:///cn=disgruntled_employees,ou=Groups,dc=example,dc=com"; allow(all) userdn = "ldap:///cn=Courtney Tolana,ou=Admin,ou=People,dc=example,dc=com";
}
func TestPermissionBindRule_codecov(t *testing.T) {
var pb PermissionBindRule
_ = pb.IsZero()
_ = pb.Valid()
pb = PBR(
Allow(`moddn`), // bogus right
And(UDN(``)), // bogus dn
)
_ = pb.Valid()
}
func TestPermissionBindRules_codecov(t *testing.T) {
var pbs PermissionBindRules
_ = pbs.IsZero()
_ = pbs.Valid()
pbs.Push()
pbs.Contains(``)
pbs.Contains(nil)
pbs.Contains('a')
pbs.Push(nil, nil)
pbs.Push(``)
pbs.Contains(PermissionBindRule{})
pbs.Push(PermissionBindRule{})
pbs.Push(`fartknocker`)
_ = pbs.pushPolicy()
_ = pbs.pushPolicy('a')
_ = pbs.pushPolicy(`baljfg`)
_ = pbs.pushPolicy(nil, nil)
var pb PermissionBindRule
_ = pb.IsZero()
_ = pb.Valid()
pb = PBR(
Permission{nil},
And(),
)
pbs.Push(pb)
pbs.Push()
pbs.Contains(``)
pbs.Contains(nil)
pbs.Contains('a')
pbs.Push(nil, nil)
pbs.Push(``)
pbs.Contains(PermissionBindRule{})
pbs.Push(PermissionBindRule{})
pbs.Push(`fartknocker`)
_ = pb.IsZero()
_ = pbs.Len()
_ = pbs.Valid()
pbs = PBRs()
rule0 := PBR(Permission{nil}, nil)
_ = rule0.IsZero()
_ = rule0.Valid()
pbs.Push(rule0)
rule1 := PBR(Deny(ProxyAccess), nil)
_ = rule1.IsZero()
_ = rule1.Valid()
pbs.Push(rule1)
var rule2a PermissionBindRule
var badbind BindContext = GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq()
rule2a.Set(
Permission{nil},
badbind,
)
_ = rule2a.IsZero()
_ = rule2a.Valid()
pbs.Push(rule2a)
var rule2b PermissionBindRule
badbind = RDN(``).Ne()
rule2b.Set(
Allow(`read`, `search`, `compare`),
badbind,
)
_ = rule2b.IsZero()
_ = rule2b.Valid()
pbs.Push(rule2b)
var rule2c PermissionBindRule
rule2c.Set(`pspspsppspspsp`)
rule2c.Set(badBindDN, `pspspsppspspsp`)
_ = rule2c.IsZero()
_ = rule2c.Valid()
pbs.Push(rule2c)
pbs.Push(`pspsppspspspps`)
rule3 := PBR(
Permission{nil},
nil,
)
_ = rule3.IsZero()
_ = rule3.Valid()
pbs.Push(rule3)
rule4 := PBR(
Permission{nil},
BindRules(stackAnd().SetID(`bonedrule`)).Push(SSF(128).Eq()),
)
_ = rule4.IsZero()
_ = rule4.Valid()
pbs.Push(rule4, float32(1.234))
var rule5 PermissionBindRule
rule5.Set(
Deny(AllAccess, ProxyAccess),
GDN(`cn=disgruntled_employees,ou=Groups,dc=example,dc=com`).Eq(),
)
pbs.Push(rule5)
if pbs.Len() != 1 {
t.Errorf("%s failed: unexpected slice count, want '%d', got '%d'",
t.Name(), 1, pbs.Len())
return
}
pbs.Push(rule5.String())
if pbs.Len() != 1 {
t.Errorf("%s failed: %T allowed duplicate push",
t.Name(), pbs)
return
}
pbs.Pop()
pbs.Push(rule5)
pbs.Push(rule5.String())
pbs.Contains(rule5)
pbs.Contains(rule5.String())
}