aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/tests/unit_python/api/test_unit_models.py
blob: 6e93ed286a1c1138c7abe3f6b483f847873da1c1 (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
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
# Copyright 2018 Open Platform for NFV Project, Inc. and its contributors
# This software is distributed under the terms and conditions of the 'Apache-2.0'
# license which can be found in the file 'LICENSE' in this package distribution
# or at 'http://www.apache.org/licenses/LICENSE-2.0'.

import json
import api.utilities as utilities
from helpers import data_builder as builder
from helpers import policy_helper
from helpers import model_helper
from uuid import uuid4


def get_models(client):
    req = client.get("/models")
    models = utilities.get_json(req.data)
    return req, models


def add_models(client, name, data=None):
    subject_category_id, object_category_id, action_category_id, meta_rule_id = builder.create_new_meta_rule()

    if not data:
        data = {
            "name": name,
            "description": "description of {}".format(name),
            "meta_rules": [meta_rule_id]
        }
    req = client.post("/models", data=json.dumps(data),
                      headers={'Content-Type': 'application/json'})
    models = utilities.get_json(req.data)
    return req, models


def update_model(client, name, model_id):
    subject_category_id, object_category_id, action_category_id, meta_rule_id = builder.create_new_meta_rule()

    data = {
        "name": name,
        "description": "description of {}".format(name),
        "meta_rules": [meta_rule_id]
    }
    req = client.patch("/models/{}".format(model_id), data=json.dumps(data),
                       headers={'Content-Type': 'application/json'})
    models = utilities.get_json(req.data)
    return req, models


def add_model_without_meta_rules_ids(client, name):
    data = {
        "name": name,
        "description": "description of {}".format(name),
        "meta_rules": []
    }
    req = client.post("/models", data=json.dumps(data),
                      headers={'Content-Type': 'application/json'})
    models = utilities.get_json(req.data)
    return req, models


def add_model_with_empty_meta_rule_id(client, name):
    data = {
        "name": name,
        "description": "description of {}".format(name),
        "meta_rules": [""]
    }
    req = client.post("/models", data=json.dumps(data),
                      headers={'Content-Type': 'application/json'})
    models = utilities.get_json(req.data)
    return req, models


def update_model_without_meta_rules_ids(client, model_id):
    name = "model_id" + uuid4().hex
    data = {
        "name": name,
        "description": "description of {}".format(name),
        "meta_rules": []
    }
    req = client.patch("/models/{}".format(model_id), data=json.dumps(data),
                       headers={'Content-Type': 'application/json'})
    models = utilities.get_json(req.data)
    return req, models


def delete_models(client, name):
    request, models = get_models(client)
    for key, value in models['models'].items():
        if value['name'] == name:
            req = client.delete("/models/{}".format(key))
            break
    return req


def delete_models_without_id(client):
    req = client.delete("/models/{}".format(""))
    return req


def test_delete_model_assigned_to_policy():
    policy_name = "testuser" + uuid4().hex
    client = utilities.register_client()
    req = model_helper.add_model(model_id="mls_model_id" + uuid4().hex)
    model_id = list(req.keys())[0]
    data = {
        "name": policy_name,
        "description": "description of {}".format(policy_name),
        "model_id": model_id,
        "genre": "genre"
    }
    req = client.post("/policies", data=json.dumps(data),
                      headers={'Content-Type': 'application/json'})
    req = client.delete("/models/{}".format(model_id))
    assert req.status_code == 400
    assert json.loads(req.data)["message"] == '400: Model With Policy Error'


def clean_models():
    client = utilities.register_client()
    req, models = get_models(client)
    for key, value in models['models'].items():
        print(key)
        print(value)
        client.delete("/models/{}".format(key))


def test_get_models():
    client = utilities.register_client()
    req, models = get_models(client)
    assert req.status_code == 200
    assert isinstance(models, dict)
    assert "models" in models


def test_add_models():
    clean_models()
    client = utilities.register_client()
    req, models = add_models(client, "testuser")
    assert req.status_code == 200
    assert isinstance(models, dict)
    model_id = list(models["models"])[0]
    assert "models" in models
    assert models['models'][model_id]['name'] == "testuser"
    assert models['models'][model_id]["description"] == "description of {}".format("testuser")


def test_delete_models():
    client = utilities.register_client()
    req = delete_models(client, "testuser")
    assert req.status_code == 200


def test_update_models_with_assigned_policy():
    client = utilities.register_client()

    model = model_helper.add_model(model_id="mls_model_id" + uuid4().hex)
    model_id = list(model.keys())[0]
    value = {
        "name": "test_policy" + uuid4().hex,
        "model_id": model_id,
        "description": "test",
    }
    policy = policy_helper.add_policies(value=value)
    data = {
        "name": "model_" + uuid4().hex,
        "description": "description of model_2",
        "meta_rules": []
    }
    req = client.patch("/models/{}".format(model_id), data=json.dumps(data),
                       headers={'Content-Type': 'application/json'})

    assert req.status_code == 400
    assert json.loads(req.data)["message"] == "400: Model With Policy Error"


def test_update_models_with_no_assigned_policy():
    client = utilities.register_client()

    model = model_helper.add_model(model_id="mls_model_id" + uuid4().hex)
    model_id = list(model.keys())[0]

    data = {
        "name": "model_" + uuid4().hex,
        "description": "description of model_2",
        "meta_rules": []
    }
    req = client.patch("/models/{}".format(model_id), data=json.dumps(data),
                       headers={'Content-Type': 'application/json'})

    assert req.status_code == 200


def test_add_models_with_meta_rule_key():
    client = utilities.register_client()

    model = model_helper.add_model(model_id="mls_model_id" + uuid4().hex)
    model_id = list(model.keys())[0]

    data = {
        "name": "model_" + uuid4().hex,
        "description": "description of model_2",

    }
    req = client.patch("/models/{}".format(model_id), data=json.dumps(data),
                       headers={'Content-Type': 'application/json'})

    assert req.status_code == 400
    assert json.loads(req.data)["message"] == "Invalid Key :meta_rules not found"


def test_delete_models_without_id():
    client = utilities.register_client()
    req = delete_models_without_id(client)
    assert req.status_code == 400
    assert json.loads(req.data)["message"] == "400: Model Unknown"


def test_add_model_with_empty_name():
    clean_models()
    client = utilities.register_client()
    req, models = add_models(client, "<br/>")
    assert req.status_code == 400
    assert json.loads(req.data)["message"] == "Key: 'name', [Forbidden characters in string]"


def test_add_model_with_name_contain_space():
    clean_models()
    client = utilities.register_client()
    req, models = add_models(client, "test<br>user")
    assert req.status_code == 400
    assert json.loads(req.data)["message"] == "Key: 'name', [Forbidden characters in string]"


def test_add_model_with_name_space():
    clean_models()
    client = utilities.register_client()
    req, models = add_models(client, " ")
    assert req.status_code == 400
    assert json.loads(req.data)["message"] == '400: Model Unknown'


def test_add_model_with_empty_meta_rule_id():
    clean_models()
    client = utilities.register_client()
    req, meta_rules = add_model_with_empty_meta_rule_id(client, "testuser")
    assert req.status_code == 400
    assert json.loads(req.data)["message"] == '400: Meta Rule Unknown'


def test_add_model_with_existed_name():
    clean_models()
    client = utilities.register_client()
    name = uuid4().hex
    req, models = add_models(client, name)
    assert req.status_code == 200
    req, models = add_models(client, name)
    assert req.status_code == 409
    assert json.loads(req.data)["message"] == '409: Model Error'


def test_add_model_with_existed_meta_rules_list():
    clean_models()
    client = utilities.register_client()
    name = uuid4().hex

    subject_category_id, object_category_id, action_category_id, meta_rule_id = builder.create_new_meta_rule()
    data = {
        "name": name,
        "description": "description of {}".format(name),
        "meta_rules": [meta_rule_id]
    }
    name = uuid4().hex
    req, models = add_models(client=client, name=name, data=data)
    assert req.status_code == 200

    data = {
        "name": name,
        "description": "description of {}".format(name),
        "meta_rules": [meta_rule_id]
    }
    req, models = add_models(client=client, name=name, data=data)
    assert req.status_code == 409
    assert json.loads(req.data)["message"] == '409: Model Error'


def test_add_model_without_meta_rules():
    clean_models()
    client = utilities.register_client()
    req, meta_rules = add_model_without_meta_rules_ids(client, "testuser")
    assert req.status_code == 200
    # assert json.loads(req.data)["message"] == "Key: 'meta_rules', [Empty Container]"


def test_update_model():
    clean_models()
    client = utilities.register_client()
    req = add_models(client, "testuser")
    model_id = list(req[1]['models'])[0]
    req_update = update_model(client, "testuser", model_id)
    assert req_update[0].status_code == 200
    model_id = list(req_update[1]["models"])[0]
    assert req_update[1]["models"][model_id]["meta_rules"][0] is not None
    delete_models(client, "testuser")


def test_update_model_name_with_space():
    clean_models()
    client = utilities.register_client()
    req = add_models(client, "testuser")
    model_id = list(req[1]['models'])[0]
    req_update = update_model(client, " ", model_id)
    assert req_update[0].status_code == 400
    assert req_update[1]["message"] == '400: Model Unknown'


def test_update_model_with_empty_name():
    clean_models()
    client = utilities.register_client()
    req = add_models(client, "testuser")
    model_id = list(req[1]['models'])[0]
    req_update = update_model(client, "", model_id)
    assert req_update[0].status_code == 400
    assert req_update[1]['message'] == '400: Model Unknown'


def test_update_meta_rules_without_id():
    clean_models()
    client = utilities.register_client()
    req_update = update_model(client, "testuser", "")
    assert req_update[0].status_code == 400
    assert json.loads(req_update[0].data)["message"] == "400: Model Unknown"


def test_update_meta_rules_without_name():
    client = utilities.register_client()
    req_update = update_model(client, "<a></a>", "1234567")
    assert req_update[0].status_code == 400
    assert json.loads(req_update[0].data)[
               "message"] == "Key: 'name', [Forbidden characters in string]"


def test_update_meta_rules_without_meta_rules():
    value = {
        "name": "mls_model_id" + uuid4().hex,
        "description": "test",
        "meta_rules": []
    }
    model = model_helper.add_model(value=value)
    model_id = list(model.keys())[0]
    client = utilities.register_client()
    req_update = update_model_without_meta_rules_ids(client, model_id)
    assert req_update[0].status_code == 200