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
|
from .conf_all import *
ACTION_DATA = {
"action_data":[{
"policy_id": "1",
"category_id": "1",
"data": {
"1": {
"name": "name of the data",
"description": "description of the data"
}
}
}]
}
POST_ACTION_DATA = {
"action_data":{
"policy_id": "1",
"category_id": "1",
"data": {
"1": {
"name": "name of the data",
"description": "description of the data"
}
}
}
}
POST_OTHER_ACTION_DATA = {
"action_data":{
"policy_id": "1",
"category_id": "1",
"data": {
"2": {
"name": "name of the data",
"description": "description of the data"
}
}
}
}
DELETE_ACTION_DATA= {
"action_data":[{
"policy_id": "1",
"category_id": "1",
"data":{}
}]
}
def conf_action_data(m):
m.register_uri(
'POST', 'http://manager:30001/policies/2/action_data/1',
[{'headers': {'X-Subject-Token': "111111111"}, 'json': POST_ACTION_DATA},
{'headers': {'X-Subject-Token': "111111111"}, 'json': POST_OTHER_ACTION_DATA}]
)
m.register_uri(
'GET', 'http://manager:30001/policies/2/action_data/1',
[{'headers': {'X-Subject-Token': "111111111"}, 'json': ACTION_DATA},
{'headers': {'X-Subject-Token': "111111111"}, 'json': DELETE_ACTION_DATA}]
)
m.register_uri(
'DELETE', 'http://manager:30001/policies/2/action_data/1/1',
headers={'X-Subject-Token': "111111111"},
json=RESULT_OK
)
|