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
|
from .conf_all import *
POLICIES = {
"policies":{
"1": {
"name": "test_policy",
"model_id": "1",
"genre": "authz",
"description": "Description of the policy",
}
}
}
POLICIES_AFTER_POST= {
"policies":{
"1": {
"name": "test_policy",
"model_id": "1",
"genre": "authz",
"description": "Description of the policy",
},
"2": {
"name": "test_policy",
"model_id": "",
"genre": "",
"description": "Description of the policy",
}
}
}
POST_POLICIES ={
"policies":{
"2": {
"name": "test_policy",
"model_id": "",
"genre": "",
"description": "Description of the policy",
}
}
}
PATCH_POLICIES ={
"policies":{
"2": {
"name": "test_policy",
"model_id": "3",
"genre": "authz",
"description": "Description of the policy",
}
}
}
def conf_policies(m):
m.register_uri(
'GET', 'http://manager:30001/policies',
[{'json': POLICIES, 'headers': {'X-Subject-Token': "111111111"}},
{'json': POLICIES_AFTER_POST, 'headers': {'X-Subject-Token': "111111111"}},
{'json': POLICIES, 'headers': {'X-Subject-Token': "111111111"}}]
)
m.register_uri(
'POST', 'http://manager:30001/policies',
headers={'X-Subject-Token': "111111111"},
json=POST_POLICIES
)
m.register_uri(
'PATCH', 'http://manager:30001/policies/2',
headers={'X-Subject-Token': "111111111"},
json=PATCH_POLICIES
)
m.register_uri(
'DELETE', 'http://manager:30001/policies/2',
headers={'X-Subject-Token': "111111111"},
json=RESULT_OK
)
|