summaryrefslogtreecommitdiffstats
path: root/tests/unit/post/test_keystoneauth.py
blob: 1a3021eeb8268191c79085cea1a6a5a95d56b66d (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
##############################################################################
# Copyright (c) 2017 ZTE Corp and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import os

import pytest

from deploy.post.keystoneauth import Keystoneauth


@pytest.mark.parametrize('openrc, expected', [
    ('/etc/kolla/admin-openrc.sh', '/etc/kolla/admin-openrc.sh'),
    (None, '/etc/kolla/admin-openrc.sh')])
def test_create_Keystoneauth_instance(openrc, expected):
    KeystoneClient = Keystoneauth(openrc)
    assert KeystoneClient.openrc == expected


@pytest.mark.parametrize('raws, expected', [
    (
        {
            'OS_USERNAME': 'admin',
            'OS_PASSWORD': 'keystone',
            'OS_AUTH_URL': 'http://10.20.11.11:35357/v3',
            'OS_TENANT_NAME': 'admin',
            'OS_USER_DOMAIN_NAME': 'Default',
            'OS_PROJECT_DOMAIN_NAME': 'Default',
            'OS_PROJECT_NAME': 'admin',
            'OS_INTERFACE': 'internal',
            'OS_IDENTITY_API_VERSION': 'region_name'
        },
        {
            'username': 'admin',
            'password': 'keystone',
            'auth_url': 'http://10.20.11.11:35357/v3',
            'tenant_name': 'admin',
            'user_domain_name': 'Default',
            'project_domain_name': 'Default',
            'project_name': 'admin'
        }),
    (
        {
            'OS_USERNAME': 'admin',
            'OS_PASSWORD': 'keystone',
            'OS_AUTH_URL': 'http://10.20.11.11:35357/v3',
            'OS_TENANT_NAME': 'admin',
            'OS_USER_DOMAIN_NAME': 'Default',
            'OS_PROJECT_DOMAIN_NAME': 'Default',
            'OS_PROJECT_NAME': 'admin',
            'OS_ENDPOINT_TYPE': 'Default',
            'OS_REGION_NAME': 'Default'
        },
        {
            'username': 'admin',
            'password': 'keystone',
            'auth_url': 'http://10.20.11.11:35357/v3',
            'tenant_name': 'admin',
            'user_domain_name': 'Default',
            'project_domain_name': 'Default',
            'project_name': 'admin',
            'endpoint_type': 'Default',
            'region_name': 'Default'
        }
    )])
def test__parse_credentials_in_Keystoneauth(raws, expected):
    assert Keystoneauth._parse_credentials(raws) == expected


@pytest.fixture(scope="session")
def openrc_conf_file_dir(data_root):
    return os.path.join(data_root, 'openrc_conf')


def test_session(openrc_conf_file_dir):
    openrc = os.path.join(openrc_conf_file_dir, 'admin-openrc.sh')
    KeystoneClient = Keystoneauth(openrc)
    assert KeystoneClient.session


@pytest.mark.parametrize('openrc_file_name, expected', [
    (
        'admin-openrc.sh',
        {
            'OS_PROJECT_DOMAIN_NAME': 'Default',
            'OS_USER_DOMAIN_NAME': 'Default',
            'OS_PROJECT_NAME': 'admin',
            'OS_TENANT_NAME': 'admin',
            'OS_USERNAME': 'admin',
            'OS_PASSWORD': 'keystone',
            'OS_AUTH_URL': 'http://10.20.11.11:35357/v3',
            'OS_INTERFACE': 'internal',
            'OS_IDENTITY_API_VERSION': '3'
        }
    )])
def test__parse_openrc(openrc_conf_file_dir, openrc_file_name, expected):
    openrc = os.path.join(openrc_conf_file_dir, openrc_file_name)
    KeystoneClient = Keystoneauth(openrc)
    ret_openrc_dict = KeystoneClient._parse_openrc()
    assert expected == ret_openrc_dict


@pytest.mark.parametrize('openrc_file_name', [
    (
        'admin-openrc.sh'
    )])
def test__get_auth(openrc_conf_file_dir, openrc_file_name,):
    openrc = os.path.join(openrc_conf_file_dir, openrc_file_name)
    KeystoneClient = Keystoneauth(openrc)
    assert KeystoneClient._get_auth()