-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple_test_rules.json
More file actions
65 lines (64 loc) · 1.49 KB
/
Copy pathsimple_test_rules.json
File metadata and controls
65 lines (64 loc) · 1.49 KB
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
{
"rules": [
{
"ruleId":"001",
"ruleName": "Single AND condition - pass",
"description" : "Success single AND condition",
"condition": "AND",
"part_1": {
"type": "static",
"handler": "dummyTestHandlerPass",
"matchType": "regex",
"matchValue": [
"value1",
"value2"
]
}
},
{
"ruleId":"002",
"ruleName": "Single OR condition - pass",
"description" : "Success Check single OR condition",
"condition": "OR",
"part_1": {
"type": "static",
"handler": "dummyTestHandlerPass",
"matchType": "regex",
"matchValue": [
"value1",
"value2"
]
}
},
{
"ruleId":"003",
"ruleName": "Single AND condition - fail",
"description" : "Success single AND condition",
"condition": "AND",
"part_1": {
"type": "static",
"handler": "dummyTestHandlerFail",
"matchType": "regex",
"matchValue": [
"value1",
"value2"
]
}
},
{
"ruleId":"004",
"ruleName": "Single OR condition - fail",
"description" : "Success Check single OR condition",
"condition": "OR",
"part_1": {
"type": "static",
"handler": "dummyTestHandlerFail",
"matchType": "regex",
"matchValue": [
"value1",
"value2"
]
}
}
]
}