aboutsummaryrefslogtreecommitdiffstats
path: root/old/python_moonclient/tests/unit_python/conf/conf_actions.py
blob: 4e6784ddea64b74d17dbd10ab919b8c1ca217251 (plain)
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
from .conf_all import *

ACTIONS = {
    "actions":{
        "1": {
            "name": "name of the action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": ["1"]
            }
    }
}

ACTIONS_AFTER_POST = {
    "actions":{
        "1": {
            "name": "name of the action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": ["1"]
            },
        "2": {
            "name": "test_action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": []
            }
    }
}

ACTIONS_AFTER_PATCH = {
    "actions":{
        "1": {
            "name": "name of the action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": ["1"]
            },
        "2": {
            "name": "test_action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": ["2"]
            }
    }
}


POST_ACTIONS = {
    "actions":{
        "2": {
            "name": "test_action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": []
            }
    }
}

PATCH_ACTIONS = {
    "actions":{
        "2": {
            "name": "test_action",
            "keystone_id": "1",
            "description": "a description",
            "policy_list": ["2"]
            }
    }
}

def conf_actions(m):
    m.register_uri(
        'GET', 'http://manager:30001/actions',
        headers={'X-Subject-Token': "111111111"},
        json=ACTIONS
    )
    m.register_uri(
        'POST', 'http://manager:30001/actions',
        headers={'X-Subject-Token': "111111111"},
        json=POST_ACTIONS
    )
    m.register_uri(
        'DELETE', 'http://manager:30001/actions/2',
        headers={'X-Subject-Token': "111111111"},
        json=RESULT_OK
    )
    m.register_uri(
        'PATCH', 'http://manager:30001/policies/2/actions/2',
        headers={'X-Subject-Token': "111111111"},
        json=PATCH_ACTIONS
    )
    m.register_uri(
        'GET', 'http://manager:30001/policies/2/actions',
        headers={'X-Subject-Token': "111111111"},
        json=ACTIONS_AFTER_PATCH
    )
    m.register_uri(
        'POST', 'http://manager:30001/policies/2/actions',
        headers={'X-Subject-Token': "111111111"},
        json=POST_ACTIONS
    )
    m.register_uri(
        'GET', 'http://manager:30001/policies/2/actions/2',
        headers={'X-Subject-Token': "111111111"},
        json=PATCH_ACTIONS
    )
    m.register_uri(
        'DELETE', 'http://manager:30001/policies/2/actions/2',
        headers={'X-Subject-Token': "111111111"},
        json=RESULT_OK
    )