regorus 0.9.1

A fast, lightweight Rego (OPA policy language) interpreter
Documentation
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
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

# Azure RBAC Condition Expression Test Cases
# Each test case contains:
# - name: descriptive test name
# - condition: the condition expression to parse
# - expected: the expected JSON structure

test_cases:
  - name: simple_string_equals
    condition: "@Request[Microsoft.Storage:storageAccount] StringEquals 'test-account'"
    expected:
      type: Binary
      operator: StringEquals
      left:
        type: AttributeReference
        source: Request
        namespace: Microsoft.Storage
        attribute: storageAccount
      right:
        type: StringLiteral
        value: test-account

  - name: numeric_greater_than
    condition: "@Resource[size] NumericGreaterThan 1024"
    expected:
      type: Binary
      operator: NumericGreaterThan
      left:
        type: AttributeReference
        source: Resource
        attribute: size
      right:
        type: NumberLiteral
        raw: "1024"

  - name: boolean_equals_true
    condition: "@Principal[isActive] BoolEquals true"
    expected:
      type: Binary
      operator: BoolEquals
      left:
        type: AttributeReference
        source: Principal
        attribute: isActive
      right:
        type: BooleanLiteral
        value: true

  - name: boolean_equals_false
    condition: "@Environment[isPrivateLink] BoolEquals false"
    expected:
      type: Binary
      operator: BoolEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: isPrivateLink
      right:
        type: BooleanLiteral
        value: false

  - name: logical_and_expression
    condition: "@Request[action] StringEquals 'read' AND @Resource[type] StringEquals 'blob'"
    expected:
      type: Logical
      operator: And
      left:
        type: Binary
        operator: StringEquals
        left:
          type: AttributeReference
          source: Request
          attribute: action
        right:
          type: StringLiteral
          value: read
      right:
        type: Binary
        operator: StringEquals
        left:
          type: AttributeReference
          source: Resource
          attribute: type
        right:
          type: StringLiteral
          value: blob

  - name: logical_or_expression
    condition: "@Principal[department] StringEquals 'IT' OR @Principal[department] StringEquals 'Security'"
    expected:
      type: Logical
      operator: Or
      left:
        type: Binary
        operator: StringEquals
        left:
          type: AttributeReference
          source: Principal
          attribute: department
        right:
          type: StringLiteral
          value: IT
      right:
        type: Binary
        operator: StringEquals
        left:
          type: AttributeReference
          source: Principal
          attribute: department
        right:
          type: StringLiteral
          value: Security

  - name: unary_not_expression
    condition: "NOT @Resource[encrypted] BoolEquals false"
    expected:
      type: Unary
      operator: Not
      operand:
        type: Binary
        operator: BoolEquals
        left:
          type: AttributeReference
          source: Resource
          attribute: encrypted
        right:
          type: BooleanLiteral
          value: false

  - name: exists_expression
    condition: "Exists @Principal[Microsoft.Directory:department]"
    expected:
      type: Unary
      operator: Exists
      operand:
        type: AttributeReference
        source: Principal
        namespace: Microsoft.Directory
        attribute: department

  - name: not_exists_expression
    condition: "NotExists @Request[customAttribute]"
    expected:
      type: Unary
      operator: NotExists
      operand:
        type: AttributeReference
        source: Request
        attribute: customAttribute

  - name: parenthesized_expression
    condition: "(@Principal[role] StringEquals 'admin' OR @Principal[role] StringEquals 'owner') AND @Resource[confidential] BoolEquals true"
    expected:
      type: Logical
      operator: And
      left:
        type: Logical
        operator: Or
        left:
          type: Binary
          operator: StringEquals
          left:
            type: AttributeReference
            source: Principal
            attribute: role
          right:
            type: StringLiteral
            value: admin
        right:
          type: Binary
          operator: StringEquals
          left:
            type: AttributeReference
            source: Principal
            attribute: role
          right:
            type: StringLiteral
            value: owner
      right:
        type: Binary
        operator: BoolEquals
        left:
          type: AttributeReference
          source: Resource
          attribute: confidential
        right:
          type: BooleanLiteral
          value: true

  - name: function_call_expression
    condition: "ToLower(@Principal[email]) StringContains '@company.com'"
    expected:
      type: Binary
      operator: StringContains
      left:
        type: FunctionCall
        function: ToLower
        arguments:
          - type: AttributeReference
            source: Principal
            attribute: email
      right:
        type: StringLiteral
        value: "@company.com"

  - name: set_literal_expression
    condition: "@Principal[role] StringEquals {'admin', 'owner', 'contributor'}"
    expected:
      type: Binary
      operator: StringEquals
      left:
        type: AttributeReference
        source: Principal
        attribute: role
      right:
        type: SetLiteral
        elements:
          - type: StringLiteral
            value: admin
          - type: StringLiteral
            value: owner
          - type: StringLiteral
            value: contributor

  - name: list_literal_expression
    condition: "@Request[allowedActions] ListContains ['read', 'write']"
    expected:
      type: Binary
      operator: ListContains
      left:
        type: AttributeReference
        source: Request
        attribute: allowedActions
      right:
        type: ListLiteral
        elements:
          - type: StringLiteral
            value: read
          - type: StringLiteral
            value: write

  - name: datetime_comparison
    condition: "@Environment[utcNow] DateTimeGreaterThan '2023-01-01T00:00:00Z'"
    expected:
      type: Binary
      operator: DateTimeGreaterThan
      left:
        type: AttributeReference
        source: Environment
        attribute: utcNow
      right:
        type: StringLiteral
        value: "2023-01-01T00:00:00Z"

  - name: ip_range_check
    condition: "@Request[clientIP] IpInRange '192.168.1.0/24'"
    expected:
      type: Binary
      operator: IpInRange
      left:
        type: AttributeReference
        source: Request
        attribute: clientIP
      right:
        type: StringLiteral
        value: "192.168.1.0/24"

  - name: null_literal
    condition: "@Resource[metadata] StringEquals null"
    expected:
      type: Binary
      operator: StringEquals
      left:
        type: AttributeReference
        source: Resource
        attribute: metadata
      right:
        type: NullLiteral

  - name: string_case_insensitive
    condition: "@Principal[displayName] StringEqualsIgnoreCase 'John Doe'"
    expected:
      type: Binary
      operator: StringEqualsIgnoreCase
      left:
        type: AttributeReference
        source: Principal
        attribute: displayName
      right:
        type: StringLiteral
        value: "John Doe"

  - name: time_range_check
    condition: "@Environment[timeOfDay] TimeOfDayInRange '09:00:00'"
    expected:
      type: Binary
      operator: TimeOfDayInRange
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: StringLiteral
        value: "09:00:00"

  - name: guid_comparison
    condition: "@Principal[objectId] GuidEquals '12345678-1234-1234-1234-123456789012'"
    expected:
      type: Binary
      operator: GuidEquals
      left:
        type: AttributeReference
        source: Principal
        attribute: objectId
      right:
        type: StringLiteral
        value: "12345678-1234-1234-1234-123456789012"

  - name: complex_logical_precedence
    condition: "NOT (@Request[action] StringEquals 'write' AND (@Resource[type] StringEquals 'blob' OR @Resource[type] StringEquals 'file')) OR @Environment[Microsoft.Time:weekday] StringEquals 'Saturday'"
    expected:
      type: Logical
      operator: Or
      left:
        type: Unary
        operator: Not
        operand:
          type: Logical
          operator: And
          left:
            type: Binary
            operator: StringEquals
            left:
              type: AttributeReference
              source: Request
              attribute: action
            right:
              type: StringLiteral
              value: write
          right:
            type: Logical
            operator: Or
            left:
              type: Binary
              operator: StringEquals
              left:
                type: AttributeReference
                source: Resource
                attribute: type
              right:
                type: StringLiteral
                value: blob
            right:
              type: Binary
              operator: StringEquals
              left:
                type: AttributeReference
                source: Resource
                attribute: type
              right:
                type: StringLiteral
                value: file
      right:
        type: Binary
        operator: StringEquals
        left:
          type: AttributeReference
          source: Environment
          namespace: Microsoft.Time
          attribute: weekday
        right:
          type: StringLiteral
          value: Saturday

  - name: numeric_in_range_set
    condition: "@Resource[size] NumericInRange {0, 10}"
    expected:
      type: Binary
      operator: NumericInRange
      left:
        type: AttributeReference
        source: Resource
        attribute: size
      right:
        type: SetLiteral
        elements:
          - type: NumberLiteral
            raw: "0"
          - type: NumberLiteral
            raw: "10"

  - name: time_of_day_less_than_equals_function
    condition: "@Environment[timeOfDay] TimeOfDayLessThanEquals ToTime('18:30:00')"
    expected:
      type: Binary
      operator: TimeOfDayLessThanEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: FunctionCall
        function: ToTime
        arguments:
          - type: StringLiteral
            value: "18:30:00"

  - name: list_not_contains
    condition: "@Request[allowedIPRanges] ListNotContains ['10.0.0.1', '10.0.0.2']"
    expected:
      type: Binary
      operator: ListNotContains
      left:
        type: AttributeReference
        source: Request
        attribute: allowedIPRanges
      right:
        type: ListLiteral
        elements:
          - type: StringLiteral
            value: "10.0.0.1"
          - type: StringLiteral
            value: "10.0.0.2"

  - name: ip_not_match
    condition: "@Request[clientIP] IpNotMatch '10.0.0.0/24'"
    expected:
      type: Binary
      operator: IpNotMatch
      left:
        type: AttributeReference
        source: Request
        attribute: clientIP
      right:
        type: StringLiteral
        value: "10.0.0.0/24"

  - name: guid_not_equals
    condition: "@Principal[objectId] GuidNotEquals '87654321-4321-4321-4321-210987654321'"
    expected:
      type: Binary
      operator: GuidNotEquals
      left:
        type: AttributeReference
        source: Principal
        attribute: objectId
      right:
        type: StringLiteral
        value: "87654321-4321-4321-4321-210987654321"

  - name: string_complex_operators
    condition: "(@Resource[category] StringStartsWith 'finance' AND (@Resource[label] StringNotContains 'deprecated' AND @Resource[name] StringEndsWith '-prod')) OR @Resource[description] StringMatches '^FIN-[0-9]{4}$'"
    expected:
      type: Logical
      operator: Or
      left:
        type: Logical
        operator: And
        left:
          type: Binary
          operator: StringStartsWith
          left:
            type: AttributeReference
            source: Resource
            attribute: category
          right:
            type: StringLiteral
            value: finance
        right:
          type: Logical
          operator: And
          left:
            type: Binary
            operator: StringNotContains
            left:
              type: AttributeReference
              source: Resource
              attribute: label
            right:
              type: StringLiteral
              value: deprecated
          right:
            type: Binary
            operator: StringEndsWith
            left:
              type: AttributeReference
              source: Resource
              attribute: name
            right:
              type: StringLiteral
              value: -prod
      right:
        type: Binary
        operator: StringMatches
        left:
          type: AttributeReference
          source: Resource
          attribute: description
        right:
          type: StringLiteral
          value: "^FIN-[0-9]{4}$"

  - name: identifier_action_matches
    condition: "operationName ActionMatches 'Microsoft.Storage/storageAccounts/write'"
    expected:
      type: Binary
      operator: ActionMatches
      left:
        type: Identifier
        name: operationName
      right:
        type: StringLiteral
        value: "Microsoft.Storage/storageAccounts/write"

  - name: function_call_chain
    condition: "ToUpper(Trim(@Principal[displayName])) StringNotEqualsIgnoreCase 'SERVICE PRINCIPAL'"
    expected:
      type: Binary
      operator: StringNotEqualsIgnoreCase
      left:
        type: FunctionCall
        function: ToUpper
        arguments:
          - type: FunctionCall
            function: Trim
            arguments:
              - type: AttributeReference
                source: Principal
                attribute: displayName
      right:
        type: StringLiteral
        value: "SERVICE PRINCIPAL"

  - name: time_of_day_in_range_set
    condition: "@Environment[timeOfDay] TimeOfDayInRange {'08:00:00', '17:00:00'}"
    expected:
      type: Binary
      operator: TimeOfDayInRange
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: SetLiteral
        elements:
          - type: StringLiteral
            value: "08:00:00"
          - type: StringLiteral
            value: "17:00:00"

  - name: datetime_less_than_equals_function
    condition: "@Environment[utcNow] DateTimeLessThanEquals AddDays('2023-03-15T00:00:00Z', 5)"
    expected:
      type: Binary
      operator: DateTimeLessThanEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: utcNow
      right:
        type: FunctionCall
        function: AddDays
        arguments:
          - type: StringLiteral
            value: "2023-03-15T00:00:00Z"
          - type: NumberLiteral
            raw: "5"

  - name: boolean_not_equals
    condition: "@Environment[isHoliday] BoolNotEquals true"
    expected:
      type: Binary
      operator: BoolNotEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: isHoliday
      right:
        type: BooleanLiteral
        value: true

  - name: exists_function_operand
    condition: "Exists ToLower(@Principal[Microsoft.Directory:department])"
    expected:
      type: Unary
      operator: Exists
      operand:
        type: FunctionCall
        function: ToLower
        arguments:
          - type: AttributeReference
            source: Principal
            namespace: Microsoft.Directory
            attribute: department

  - name: not_exists_namespace_context
    condition: "NotExists @Context[Custom.Extension:claimType]"
    expected:
      type: Unary
      operator: NotExists
      operand:
        type: AttributeReference
        source: Context
        namespace: Custom.Extension
        attribute: claimType

  - name: string_not_equals
    condition: "@Resource[classification] StringNotEquals 'internal'"
    expected:
      type: Binary
      operator: StringNotEquals
      left:
        type: AttributeReference
        source: Resource
        attribute: classification
      right:
        type: StringLiteral
        value: internal

  - name: string_like_pattern
    condition: "@Resource[name] StringLike 'prod-*'"
    expected:
      type: Binary
      operator: StringLike
      left:
        type: AttributeReference
        source: Resource
        attribute: name
      right:
        type: StringLiteral
        value: prod-*

  - name: string_not_like_pattern
    condition: "@Resource[name] StringNotLike 'dev-*'"
    expected:
      type: Binary
      operator: StringNotLike
      left:
        type: AttributeReference
        source: Resource
        attribute: name
      right:
        type: StringLiteral
        value: dev-*

  - name: string_not_starts_with
    condition: "@Resource[path] StringNotStartsWith '/secure/'"
    expected:
      type: Binary
      operator: StringNotStartsWith
      left:
        type: AttributeReference
        source: Resource
        attribute: path
      right:
        type: StringLiteral
        value: "/secure/"

  - name: string_not_ends_with
    condition: "@Resource[fileName] StringNotEndsWith '.tmp'"
    expected:
      type: Binary
      operator: StringNotEndsWith
      left:
        type: AttributeReference
        source: Resource
        attribute: fileName
      right:
        type: StringLiteral
        value: .tmp

  - name: string_not_matches
    condition: "@Resource[identifier] StringNotMatches 'TEMP-[0-9]+'"
    expected:
      type: Binary
      operator: StringNotMatches
      left:
        type: AttributeReference
        source: Resource
        attribute: identifier
      right:
        type: StringLiteral
        value: "TEMP-[0-9]+"

  - name: numeric_equals
    condition: "@Resource[version] NumericEquals 2"
    expected:
      type: Binary
      operator: NumericEquals
      left:
        type: AttributeReference
        source: Resource
        attribute: version
      right:
        type: NumberLiteral
        raw: "2"

  - name: numeric_not_equals
    condition: "@Resource[count] NumericNotEquals 5"
    expected:
      type: Binary
      operator: NumericNotEquals
      left:
        type: AttributeReference
        source: Resource
        attribute: count
      right:
        type: NumberLiteral
        raw: "5"

  - name: numeric_less_than
    condition: "@Request[latency] NumericLessThan 100"
    expected:
      type: Binary
      operator: NumericLessThan
      left:
        type: AttributeReference
        source: Request
        attribute: latency
      right:
        type: NumberLiteral
        raw: "100"

  - name: numeric_less_than_equals
    condition: "@Request[latency] NumericLessThanEquals 200"
    expected:
      type: Binary
      operator: NumericLessThanEquals
      left:
        type: AttributeReference
        source: Request
        attribute: latency
      right:
        type: NumberLiteral
        raw: "200"

  - name: numeric_greater_than_equals
    condition: "@Resource[replicaCount] NumericGreaterThanEquals 3"
    expected:
      type: Binary
      operator: NumericGreaterThanEquals
      left:
        type: AttributeReference
        source: Resource
        attribute: replicaCount
      right:
        type: NumberLiteral
        raw: "3"

  - name: datetime_equals
    condition: "@Environment[utcNow] DateTimeEquals '2023-05-01T12:00:00Z'"
    expected:
      type: Binary
      operator: DateTimeEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: utcNow
      right:
        type: StringLiteral
        value: "2023-05-01T12:00:00Z"

  - name: datetime_not_equals
    condition: "@Environment[utcNow] DateTimeNotEquals '2023-06-01T12:00:00Z'"
    expected:
      type: Binary
      operator: DateTimeNotEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: utcNow
      right:
        type: StringLiteral
        value: "2023-06-01T12:00:00Z"

  - name: datetime_greater_than_equals
    condition: "@Environment[utcNow] DateTimeGreaterThanEquals '2023-04-01T00:00:00Z'"
    expected:
      type: Binary
      operator: DateTimeGreaterThanEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: utcNow
      right:
        type: StringLiteral
        value: "2023-04-01T00:00:00Z"

  - name: datetime_less_than
    condition: "@Environment[utcNow] DateTimeLessThan '2023-12-31T23:59:59Z'"
    expected:
      type: Binary
      operator: DateTimeLessThan
      left:
        type: AttributeReference
        source: Environment
        attribute: utcNow
      right:
        type: StringLiteral
        value: "2023-12-31T23:59:59Z"

  - name: time_of_day_equals
    condition: "@Environment[timeOfDay] TimeOfDayEquals '10:15:00'"
    expected:
      type: Binary
      operator: TimeOfDayEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: StringLiteral
        value: "10:15:00"

  - name: time_of_day_not_equals
    condition: "@Environment[timeOfDay] TimeOfDayNotEquals '20:00:00'"
    expected:
      type: Binary
      operator: TimeOfDayNotEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: StringLiteral
        value: "20:00:00"

  - name: time_of_day_greater_than
    condition: "@Environment[timeOfDay] TimeOfDayGreaterThan '17:00:00'"
    expected:
      type: Binary
      operator: TimeOfDayGreaterThan
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: StringLiteral
        value: "17:00:00"

  - name: time_of_day_greater_than_equals
    condition: "@Environment[timeOfDay] TimeOfDayGreaterThanEquals '09:00:00'"
    expected:
      type: Binary
      operator: TimeOfDayGreaterThanEquals
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: StringLiteral
        value: "09:00:00"

  - name: time_of_day_less_than
    condition: "@Environment[timeOfDay] TimeOfDayLessThan '12:00:00'"
    expected:
      type: Binary
      operator: TimeOfDayLessThan
      left:
        type: AttributeReference
        source: Environment
        attribute: timeOfDay
      right:
        type: StringLiteral
        value: "12:00:00"

  - name: ip_match
    condition: "@Request[clientIP] IpMatch '10.1.0.0/16'"
    expected:
      type: Binary
      operator: IpMatch
      left:
        type: AttributeReference
        source: Request
        attribute: clientIP
      right:
        type: StringLiteral
        value: "10.1.0.0/16"

  - name: sub_operation_matches
    condition: "subOperationName SubOperationMatches 'Microsoft.Storage/storageAccounts/write/sas'"
    expected:
      type: Binary
      operator: SubOperationMatches
      left:
        type: Identifier
        name: subOperationName
      right:
        type: StringLiteral
        value: "Microsoft.Storage/storageAccounts/write/sas"

  - name: for_any_of_any_values
    condition: "@Resource[tags] ForAnyOfAnyValues @Request[allowedTags]"
    expected:
      type: Binary
      operator: ForAnyOfAnyValues
      left:
        type: AttributeReference
        source: Resource
        attribute: tags
      right:
        type: AttributeReference
        source: Request
        attribute: allowedTags

  - name: for_all_of_any_values
    condition: "@Resource[tags] ForAllOfAnyValues @Request[requiredTags]"
    expected:
      type: Binary
      operator: ForAllOfAnyValues
      left:
        type: AttributeReference
        source: Resource
        attribute: tags
      right:
        type: AttributeReference
        source: Request
        attribute: requiredTags

  - name: for_any_of_all_values
    condition: "@Resource[tags] ForAnyOfAllValues @Request[restrictedTags]"
    expected:
      type: Binary
      operator: ForAnyOfAllValues
      left:
        type: AttributeReference
        source: Resource
        attribute: tags
      right:
        type: AttributeReference
        source: Request
        attribute: restrictedTags

  - name: for_all_of_all_values
    condition: "@Resource[tags] ForAllOfAllValues @Request[mandatoryTags]"
    expected:
      type: Binary
      operator: ForAllOfAllValues
      left:
        type: AttributeReference
        source: Resource
        attribute: tags
      right:
        type: AttributeReference
        source: Request
        attribute: mandatoryTags

  - name: deeply_nested_quantifiers
    condition: "((@Resource[tags] ForAllOfAnyValues @Request[requiredTags]) AND (NormalizeSet(@Resource[regions]) ForAnyOfAllValues NormalizeSet(@Environment[allowedRegions]))) OR (NOT Exists ToLower(@Principal[manager]) AND (@Resource[sensitivity] StringNotEqualsIgnoreCase 'high'))"
    expected:
      type: Logical
      operator: Or
      left:
        type: Logical
        operator: And
        left:
          type: Binary
          operator: ForAllOfAnyValues
          left:
            type: AttributeReference
            source: Resource
            attribute: tags
          right:
            type: AttributeReference
            source: Request
            attribute: requiredTags
        right:
          type: Binary
          operator: ForAnyOfAllValues
          left:
            type: FunctionCall
            function: NormalizeSet
            arguments:
              - type: AttributeReference
                source: Resource
                attribute: regions
          right:
            type: FunctionCall
            function: NormalizeSet
            arguments:
              - type: AttributeReference
                source: Environment
                attribute: allowedRegions
      right:
        type: Logical
        operator: And
        left:
          type: Unary
          operator: Not
          operand:
            type: Unary
            operator: Exists
            operand:
              type: FunctionCall
              function: ToLower
              arguments:
                - type: AttributeReference
                  source: Principal
                  attribute: manager
        right:
          type: Binary
          operator: StringNotEqualsIgnoreCase
          left:
            type: AttributeReference
            source: Resource
            attribute: sensitivity
          right:
            type: StringLiteral
            value: high

  - name: multi_level_mixed_chains
    condition: "(ToUpper(@Principal[role]) StringEquals 'OWNER' AND (@Resource[tags] ForAllOfAllValues @Request[mandatoryTags]) AND (NormalizeList(@Resource[scopes]) ForAnyOfAnyValues NormalizeList(@Principal[assignableScopes]))) OR (Exists @Resource[metadata] AND NOT (@Request[operations] ListContains ['read', 'list']))"
    expected:
      type: Logical
      operator: Or
      left:
        type: Logical
        operator: And
        left:
          type: Logical
          operator: And
          left:
            type: Binary
            operator: StringEquals
            left:
              type: FunctionCall
              function: ToUpper
              arguments:
                - type: AttributeReference
                  source: Principal
                  attribute: role
            right:
              type: StringLiteral
              value: OWNER
          right:
            type: Binary
            operator: ForAllOfAllValues
            left:
              type: AttributeReference
              source: Resource
              attribute: tags
            right:
              type: AttributeReference
              source: Request
              attribute: mandatoryTags
        right:
          type: Binary
          operator: ForAnyOfAnyValues
          left:
            type: FunctionCall
            function: NormalizeList
            arguments:
              - type: AttributeReference
                source: Resource
                attribute: scopes
          right:
            type: FunctionCall
            function: NormalizeList
            arguments:
              - type: AttributeReference
                source: Principal
                attribute: assignableScopes
      right:
        type: Logical
        operator: And
        left:
          type: Unary
          operator: Exists
          operand:
            type: AttributeReference
            source: Resource
            attribute: metadata
        right:
          type: Unary
          operator: Not
          operand:
            type: Binary
            operator: ListContains
            left:
              type: AttributeReference
              source: Request
              attribute: operations
            right:
              type: ListLiteral
              elements:
                - type: StringLiteral
                  value: read
                - type: StringLiteral
                  value: list