aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/tests/unit_python/api/utilities.py
diff options
context:
space:
mode:
Diffstat (limited to 'moon_manager/tests/unit_python/api/utilities.py')
-rw-r--r--moon_manager/tests/unit_python/api/utilities.py32
1 files changed, 11 insertions, 21 deletions
diff --git a/moon_manager/tests/unit_python/api/utilities.py b/moon_manager/tests/unit_python/api/utilities.py
index 2e51fec8..baf59a51 100644
--- a/moon_manager/tests/unit_python/api/utilities.py
+++ b/moon_manager/tests/unit_python/api/utilities.py
@@ -1,26 +1,16 @@
-import json
-from uuid import uuid4
+# Software Name: MOON
-def get_json(data):
- return json.loads(data.decode("utf-8"))
+# Version: 5.4
+# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
+# SPDX-License-Identifier: Apache-2.0
-def register_client():
- import moon_manager.server
- server = moon_manager.server.create_server()
- client = server.app.test_client()
- return client
+# This software is distributed under the 'Apache License 2.0',
+# the text of which is available at 'http://www.apache.org/licenses/LICENSE-2.0.txt'
+# or see the "LICENSE" file for more details.
-def get_policy_id():
- from helpers import policy_helper
- value = {
- "name": "test_policy"+uuid4().hex,
- "model_id": "",
- "genre": "authz",
- "description": "test",
- }
- policy_helper.add_policies(value=value)
- req = policy_helper.get_policies()
- policy_id = list(req.keys())[0]
- return policy_id
+import json
+from uuid import uuid4
+def get_json(data):
+ return data;#json.loads(data.decode("utf-8"))