aboutsummaryrefslogtreecommitdiffstats
path: root/moon_manager/tests/unit_python/api/test_keystone.py
blob: 5ed08ca770fcb1d6fdf4863771902eb4947248c1 (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
# 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