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 pathins_test.go
516 lines (424 loc) · 17.9 KB
/
ins_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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
package aci
import (
"fmt"
"testing"
)
func TestInstruction(t *testing.T) {
var Ins Instruction
_ = Ins.Valid()
_ = Ins.IsZero()
_ = Ins.String()
// define a timeframe for our PermissionBindRule
// using two Condition instances
notBefore := ToD(`1730`).Ge() // Condition: greater than or equal to time
notAfter := ToD(`2400`).Lt() // Condition: less than time
brule := And().Paren().Push(notBefore, notAfter) // our actual bind rule expression
// Define the permission (rights).
perms := Allow(ReadAccess, CompareAccess, SearchAccess)
// Make our PermissionBindRule instance, which defines the
// granting of access within a particular timeframe.
pbrule := PBR(perms, brule)
// Make a target rule that encompasses any account
// with a DN syntax of "uid=<userid>,ou=People,dc=example,dc=com"
Tar := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
ACI(Tar, pbrule)
_ = Ins.Valid()
_ = Ins.IsZero()
_ = Ins.String()
}
func TestACIs(t *testing.T) {
var Ins Instructions
_ = Ins.Valid()
_ = Ins.Push()
_ = Ins.Push(nil)
_ = Ins.Push(Instruction{})
_ = Ins.Push(``)
_ = Ins.Push('a')
_ = Ins.IsZero()
_ = Ins.String()
_ = Ins.Len()
_ = Ins.Index(0)
// Make a target rule that encompasses any account
// with a DN syntax of "uid=<userid>,ou=People,dc=example,dc=com"
C := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
// push into a new instance of TargetRules automatically
// configured to store TargetRule instances.
tgt := TRs(C)
// define a timeframe for our PermissionBindRule
// using two Condition instances
notBefore := ToD(`1730`).Ge() // Condition: greater than or equal to time
notAfter := ToD(`2400`).Lt() // Condition: less than time
brule := And().Paren().Push(notBefore, notAfter) // our actual bind rule expression
// Define the permission (rights).
perms := Allow(ReadAccess, CompareAccess, SearchAccess)
// Make our PermissionBindRule instance, which defines the
// granting of access within a particular timeframe.
pbrule := PBR(perms, brule)
// The ACI's effective name (should be unique within the directory)
acl := `Limit people access to timeframe`
// Finally, craft the Instruction instance
var i Instruction
_ = i.TRs()
_ = i.PBRs()
_ = i.ACL()
_ = i.Valid()
_ = i.String()
i = ACI(acl, tgt, pbrule)
i.Set(tgt)
_ = i.TRs()
_ = i.PBRs()
_ = i.ACL()
want := `( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)`
if want != i.String() {
t.Errorf("%s failed: want '%s', got '%s'", t.Name(), want, i)
return
}
Ins = ACIs()
_ = Ins.Valid()
_ = Ins.Push()
_ = Ins.Push(nil)
_ = Ins.Push(Instruction{})
_ = Ins.Push(``)
_ = Ins.Push('a')
_ = Ins.IsZero()
_ = Ins.String()
_ = Ins.Len()
_ = Ins.Index(0)
Ins.Push(i)
popped := Ins.Pop()
Ins.Push(popped)
Ins.F()
Ins.Push(popped.String())
Ins.Push(`<3 <3 <3`)
if Ins.Len() != 1 {
t.Errorf("%s failed to push %T into %T, len:%d, want:%d\n%s", t.Name(), i, Ins, Ins.Len(), 1, Ins)
return
}
if Ins.String() != Ins.Index(0).String() {
t.Errorf("%s strcmp fail", t.Name())
return
}
}
func ExampleInstruction_build() {
// Make a target rule that encompasses any account
// with a DN syntax of "uid=<userid>,ou=People,dc=example,dc=com"
C := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
// push into a new instance of TargetRules automatically
// configured to store TargetRule instances.
tgt := TRs(C).Push(C)
// define a timeframe for our PermissionBindRule
// using two Condition instances
notBefore := ToD(`1730`).Ge() // Condition: greater than or equal to time
notAfter := ToD(`2400`).Lt() // Condition: less than time
brule := And().Paren().Push(notBefore, notAfter) // our actual bind rule expression
// Define the permission (rights).
perms := Allow(ReadAccess, CompareAccess, SearchAccess)
// Make our PermissionBindRule instance, which defines the
// granting of access within a particular timeframe.
pbrule := PBR(perms, brule)
// The ACI's effective name (should be unique within the directory)
acl := `Limit people access to timeframe`
// Finally, craft the Instruction instance
var i Instruction
i.Set(acl, tgt, pbrule)
fmt.Printf("%s", i)
// Output: ( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)
}
func ExampleInstruction_buildNested() {
// Make a target rule that encompasses any account
// with a DN syntax of "uid=<userid>,ou=People,dc=example,dc=com"
C := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
// push into a new instance of TargetRules automatically
// configured to store TargetRule instances.
tgt := TRs().Push(C)
// create an ORed stack, pushing the two specified
// userdn equality conditions into its collection.
ors := Or().Paren().Push(
UDN(`uid=jesse,ou=admin,dc=example,dc=com`).Eq(),
UDN(`uid=courtney,ou=admin,dc=example,dc=com`).Eq(),
)
// create our AttributeBindTypeOrValue instance,
// setting the AttributeType as `ninja`, and the
// AttributeValue as `FALSE`
attr := AT(`ninja`) // attributeType
aval := AV(`FALSE`) // attributeValue
userat := UAT(attr, aval) // attributeBindTypeOrValue
// create a negated (NOT) stack, pushing
// our AttributeBindTypeOrValue BindRule
// (Eq()) instance into its collection.
// Also, make stack parenthetical.
nots := Not().Paren().Push(userat.Eq())
// define a timeframe for our PermissionBindRule
// using two Condition instances. Make both AND
// stacks parenthetical, and push our OR and NOT
// stacks defined above.
brule := And().Paren().Push(
And().Paren().Push(
ToD(`1730`).Ge(), // Condition: greater than or equal to time
ToD(`2400`).Lt(), // Condition: less than time
),
ors,
nots,
)
// Define the permission (rights).
perms := Allow(ReadAccess, CompareAccess, SearchAccess)
// Make our PermissionBindRule instance, which defines the
// granting of access within a particular timeframe.
pbr := PBR(perms, brule)
// The ACI's effective name (should be unique within the directory)
acl := `Limit people access to timeframe`
// Finally, craft the Instruction instance
var i Instruction
i.Set(acl, tgt, pbr)
fmt.Printf("%s", i)
// Output: ( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( ( timeofday >= "1730" AND timeofday < "2400" ) AND ( userdn = "ldap:///uid=jesse,ou=admin,dc=example,dc=com" OR userdn = "ldap:///uid=courtney,ou=admin,dc=example,dc=com" ) AND NOT ( userattr = "ninja#FALSE" ) );)
}
/*
This example demonstrates doing a literal search for an ACI within a stack of ACIs
using its Contains method. Case is not significant in the matching process.
*/
func ExampleInstructions_Contains() {
raw1 := `( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe for those ninjas"; allow(read,search,compare) ( ( timeofday >= "1730" AND timeofday < "2400" ) AND ( userdn = "ldap:///uid=jesse,ou=admin,dc=example,dc=com" OR userdn = "ldap:///uid=courtney,ou=admin,dc=example,dc=com" ) AND NOT ( userattr = "ninja#FALSE" ) );)`
raw2 := `( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)`
acis := ACIs(
raw1,
raw2,
)
fmt.Printf("%T contains raw1: %t", acis, acis.Contains(raw1))
// Output: aci.Instructions contains raw1: true
}
/*
This example demonstrates use of the F method to obtain the
package-level function appropriate for the creation of new
stack elements.
*/
func ExampleInstructions_F() {
var acis Instructions
funk := acis.F()
ins := funk() // normally you'd want to supply some type instances
fmt.Printf("%T", ins)
// Output: aci.Instruction
}
func ExampleACIs() {
raw1 := `( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe for those ninjas"; allow(read,search,compare) ( ( timeofday >= "1730" AND timeofday < "2400" ) AND ( userdn = "ldap:///uid=jesse,ou=admin,dc=example,dc=com" OR userdn = "ldap:///uid=courtney,ou=admin,dc=example,dc=com" ) AND NOT ( userattr = "ninja#FALSE" ) );)`
raw2 := `( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)`
acis := ACIs(
raw1,
raw2,
)
fmt.Printf("%T contains %d Instruction instances", acis, acis.Len())
// Output: aci.Instructions contains 2 Instruction instances
}
/*
This example demonstrates use of the ACI package-level function. An instance
of Instruction is created using manually assembled type instances.
*/
func ExampleACI() {
t := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
tgt := TRs().Push(t)
userat := UAT(
AT(`ninja`),
AV(`FALSE`),
)
ors := Or().Paren().Push(
UDN(`uid=jesse,ou=admin,dc=example,dc=com`).Eq(),
UDN(`uid=courtney,ou=admin,dc=example,dc=com`).Eq(),
)
nots := Not().Paren().Push(userat.Eq())
brule := And().Paren().Push(
Timeframe(
ToD(`1730`),
ToD(`2400`),
).Paren(),
ors,
nots,
)
perms := Allow(
ReadAccess,
SearchAccess,
CompareAccess,
)
pbr := PBR(perms, brule)
acl := `Limit people access to timeframe`
var i Instruction
i.Set(acl, tgt, pbr)
fmt.Printf("%s", i)
// Output: ( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( ( timeofday >= "1730" AND timeofday < "2400" ) AND ( userdn = "ldap:///uid=jesse,ou=admin,dc=example,dc=com" OR userdn = "ldap:///uid=courtney,ou=admin,dc=example,dc=com" ) AND NOT ( userattr = "ninja#FALSE" ) );)
}
func ExampleInstruction_String() {
t := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
tgt := TRs().Push(t)
userat := UAT(AT(`ninja`), AV(`FALSE`))
ors := Or().Paren().Push(
UDN(`uid=jesse,ou=admin,dc=example,dc=com`).Eq(),
UDN(`uid=courtney,ou=admin,dc=example,dc=com`).Eq(),
)
nots := Not().Paren().Push(userat.Eq())
brule := And().Paren().Push(
Timeframe(
ToD(`1730`),
ToD(`2400`),
).Paren(),
ors,
nots,
)
perms := Allow(
ReadAccess,
SearchAccess,
CompareAccess,
)
pbr := PBR(perms, brule)
acl := `Limit people access to timeframe`
var i Instruction
i.Set(acl, tgt, pbr)
fmt.Printf("%s", i)
// Output: ( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( ( timeofday >= "1730" AND timeofday < "2400" ) AND ( userdn = "ldap:///uid=jesse,ou=admin,dc=example,dc=com" OR userdn = "ldap:///uid=courtney,ou=admin,dc=example,dc=com" ) AND NOT ( userattr = "ninja#FALSE" ) );)
}
func ExampleInstruction_TRs() {
t := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
tgt := TRs().Push(t)
userat := UAT(AT(`ninja`), AV(`FALSE`))
ors := Or().Paren().Push(
UDN(`uid=jesse,ou=admin,dc=example,dc=com`).Eq(),
UDN(`uid=courtney,ou=admin,dc=example,dc=com`).Eq(),
)
nots := Not().Paren().Push(userat.Eq())
brule := And().Paren().Push(
Timeframe(
ToD(`1730`),
ToD(`2400`),
).Paren(),
ors,
nots,
)
perms := Allow(
ReadAccess,
SearchAccess,
CompareAccess,
)
pbr := PBR(perms, brule)
acl := `Limit people access to timeframe`
var i Instruction
i.Set(acl, tgt, pbr)
fmt.Printf("%s", i.TRs())
// Output: ( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )
}
func ExampleInstruction_PBRs() {
t := TDN(`uid=*,ou=People,dc=example,dc=com`).Eq()
tgt := TRs().Push(t)
userat := UAT(AT(`ninja`), AV(`FALSE`))
ors := Or().Paren().Push(
UDN(`uid=jesse,ou=admin,dc=example,dc=com`).Eq(),
UDN(`uid=courtney,ou=admin,dc=example,dc=com`).Eq(),
)
nots := Not().Paren().Push(userat.Eq())
brule := And().Paren().Push(
Timeframe(
ToD(`1730`),
ToD(`2400`),
).Paren(),
ors,
nots,
)
perms := Allow(
ReadAccess,
SearchAccess,
CompareAccess,
)
pbr := PBR(perms, brule)
acl := `Limit people access to timeframe`
var i Instruction
i.Set(acl, tgt, pbr)
fmt.Printf("%s", i.PBRs())
// Output: allow(read,search,compare) ( ( timeofday >= "1730" AND timeofday < "2400" ) AND ( userdn = "ldap:///uid=jesse,ou=admin,dc=example,dc=com" OR userdn = "ldap:///uid=courtney,ou=admin,dc=example,dc=com" ) AND NOT ( userattr = "ninja#FALSE" ) );
}
func ExampleInstruction_ACL() {
var i Instruction
acl := `This is an access control label`
i.Set(acl)
fmt.Printf("%s", i.ACL())
// Output: This is an access control label
}
func ExampleInstruction_IsZero() {
var i Instruction
fmt.Printf("Zero: %t", i.IsZero())
// Output: Zero: true
}
func ExampleInstruction_Valid() {
var i Instruction
fmt.Printf("Valid: %t", i.Valid() == nil)
// Output: Valid: false
}
func ExampleInstruction_Set() {
var i Instruction
acl := `This is an access control label`
i.Set(acl)
fmt.Printf("%s", i.ACL())
// Output: This is an access control label
}
func ExampleInstructions_IsZero() {
var i Instructions
fmt.Printf("Zero: %t", i.IsZero())
// Output: Zero: true
}
func ExampleInstructions_Len() {
var i Instructions
fmt.Printf("Length: %d", i.Len())
// Output: Length: 0
}
func ExampleInstructions_Valid() {
var i Instructions
fmt.Printf("Valid: %t", i.Valid() == nil)
// Output: Valid: false
}
func ExampleInstructions_Pop() {
raw := []string{
`( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)`,
`( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(proxy,selfwrite) ( userdn = "ldap:///all" );)`,
}
ins := ACIs()
for i := 0; i < len(raw); i++ {
ins.Push(raw[i])
}
popped := ins.Pop()
fmt.Printf("%s", popped)
// Output: ( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(selfwrite,proxy) ( userdn = "ldap:///all" );)
}
func ExampleInstructions_Push() {
raw := []string{
`( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" ); )`,
`( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(proxy,selfwrite) ( userdn = "ldap:///all" ); )`,
}
ins := ACIs()
for i := 0; i < len(raw); i++ {
ins.Push(raw[i])
}
fmt.Printf("Length: %d", ins.Len())
// Output: Length: 2
}
func ExampleInstructions_Index() {
raw := []string{
`( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)`,
`( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(selfwrite,proxy) ( userdn = "ldap:///all" );)`,
}
ins := ACIs()
for i := 0; i < len(raw); i++ {
ins.Push(raw[i])
}
fmt.Printf("%s", ins.Index(1))
// Output: ( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(selfwrite,proxy) ( userdn = "ldap:///all" );)
}
func ExampleInstructions_String() {
raw := []string{
`( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" ); )`,
`( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(proxy,selfwrite) ( userdn = "ldap:///all" ); )`,
}
ins := ACIs()
for i := 0; i < len(raw); i++ {
ins.Push(raw[i])
}
fmt.Printf("%s", ins)
// Output:
// ( target = "ldap:///uid=*,ou=People,dc=example,dc=com" )(version 3.0; acl "Limit people access to timeframe"; allow(read,search,compare) ( timeofday >= "1730" AND timeofday < "2400" );)
// ( targetfilter = "(&(objectClass=employee)(objectClass=engineering))" )( targetcontrol = "1.2.3.4" || "1.2.3.5" )( targetscope = "onelevel" )(version 3.0; acl "Allow read and write for anyone using greater than or equal 128 SSF - extra nesting"; allow(read,write) ( ( ( userdn = "ldap:///anyone" ) AND ( ssf >= "71" ) ) AND NOT ( dayofweek = "Wed" OR dayofweek = "Fri" ) ); deny(selfwrite,proxy) ( userdn = "ldap:///all" );)
}