aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/tests/unit_python/api/test_keystone.py
diff options
context:
space:
mode:
Diffstat (limited to 'moon_manager/tests/unit_python/api/test_keystone.py')
-rw-r--r--moon_manager/tests/unit_python/api/test_keystone.py63
1 files changed, 63 insertions, 0 deletions
diff --git a/moon_manager/tests/unit_python/api/test_keystone.py b/moon_manager/tests/unit_python/api/test_keystone.py
new file mode 100644
index 00000000..5ed08ca7
--- /dev/null
+++ b/moon_manager/tests/unit_python/api/test_keystone.py
@@ -0,0 +1,63 @@
+# Software Name: MOON
+
+# Version: 5.4
+
+# SPDX-FileCopyrightText: Copyright (c) 2018-2020 Orange and its contributors
+# SPDX-License-Identifier: Apache-2.0
+
+# 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 create_project(tenant_dict):
+ from moon_manager.pip_driver import InformationManager
+ return InformationManager["subjects"][0].create_project(**tenant_dict)
+
+
+def list_projects():
+ from moon_manager.pip_driver import InformationManager
+ return InformationManager["subjects"][0].get_projects()
+
+
+def create_user(subject_dict):
+ from moon_manager.pip_driver import InformationManager
+ return InformationManager["subjects"][0].add_item(**subject_dict)
+
+
+def test_create_project():
+ tenant_dict = {
+ "description": "test_project",
+ "domain": ['domain_id_1'],
+ "enabled": True,
+ "is_domain": False,
+ "name": 'project_1'
+ }
+ project = create_project(tenant_dict)
+ assert project
+ assert project.get('name') == tenant_dict.get('name')
+
+# TODO TO BE UPDATED
+# def test_create_project_without_name():
+# tenant_dict = {
+# "description": "test_project",
+# "domain_id": ['domain_id_1'],
+# "enabled": True,
+# "is_domain": False,
+# }
+# with pytest.raises(Exception) as exception_info:
+# create_project(tenant_dict)
+# assert '400: Keystone project error' == str(exception_info.value)
+
+
+def test_create_user():
+ subject_dict = {
+ "password": "password",
+ "domain": ['domain_id_1'],
+ "enabled": True,
+ "project": 'test_project',
+ "name": 'user_id_1'
+ }
+ user = create_user(subject_dict)
+ assert user