diff options
author | 2017-09-20 02:08:58 +0000 | |
---|---|---|
committer | 2017-09-20 02:08:58 +0000 | |
commit | 64bb1f695fd692dd9e34c4083468c6c053838503 (patch) | |
tree | 572047b3e39fec92c0e6c99d6148cd77b1c56d28 /tests/unit/post | |
parent | e82e05c743ba40de5b6a76ec9545a0ff6a19f414 (diff) | |
parent | 42f3692a33504ed715eab9b1bef77e1737b1bfed (diff) |
Merge "Add the pytest file test_environment.py"
Diffstat (limited to 'tests/unit/post')
-rw-r--r-- | tests/unit/post/test_keystoneauth.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/unit/post/test_keystoneauth.py b/tests/unit/post/test_keystoneauth.py index afd9062a..1ae86452 100644 --- a/tests/unit/post/test_keystoneauth.py +++ b/tests/unit/post/test_keystoneauth.py @@ -80,3 +80,25 @@ 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 |