aboutsummaryrefslogtreecommitdiffstats
path: root/python_moondb/tests/unit_python/test_keystone.py
diff options
context:
space:
mode:
authorThomas Duval <thomas.duval@orange.com>2020-06-03 10:06:52 +0200
committerThomas Duval <thomas.duval@orange.com>2020-06-03 10:06:52 +0200
commit7bb53c64da2dcf88894bfd31503accdd81498f3d (patch)
tree4310e12366818af27947b5e2c80cb162da93a4b5 /python_moondb/tests/unit_python/test_keystone.py
parentcbea4e360e9bfaa9698cf7c61c83c96a1ba89b8c (diff)
Update to new version 5.4HEADstable/jermamaster
Signed-off-by: Thomas Duval <thomas.duval@orange.com> Change-Id: Idcd868133d75928a1ffd74d749ce98503e0555ea
Diffstat (limited to 'python_moondb/tests/unit_python/test_keystone.py')
-rw-r--r--python_moondb/tests/unit_python/test_keystone.py53
1 files changed, 0 insertions, 53 deletions
diff --git a/python_moondb/tests/unit_python/test_keystone.py b/python_moondb/tests/unit_python/test_keystone.py
deleted file mode 100644
index 134bec0d..00000000
--- a/python_moondb/tests/unit_python/test_keystone.py
+++ /dev/null
@@ -1,53 +0,0 @@
-import pytest
-
-
-def create_project(tenant_dict):
- from python_moondb.core import KeystoneManager
- return KeystoneManager.create_project(tenant_dict)
-
-
-def list_projects():
- from python_moondb.core import KeystoneManager
- return KeystoneManager.list_projects()
-
-
-def create_user(subject_dict):
- from python_moondb.core import KeystoneManager
- return KeystoneManager.create_user(subject_dict)
-
-
-def test_create_project():
- tenant_dict = {
- "description": "test_project",
- "domain_id": ['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')
-
-
-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_id": ['domain_id_1'],
- "enabled": True,
- "project": 'test_project',
- "name": 'user_id_1'
- }
- user = create_user(subject_dict)
- assert user