
For environment variables created cloud objects, it's possible someone may not want it to be called envvars. I mean, let's be honest, I cannot imagine why this would be important ... but people get emotional about things. Let them name their cloud "bunnyrabbit" because that makes people happy. Change-Id: I0c232de7d93080ea632fb66a82b9e6d3e925c901
72 lines
2.9 KiB
Python
72 lines
2.9 KiB
Python
# Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
|
|
from os_client_config import cloud_config
|
|
from os_client_config import config
|
|
from os_client_config.tests import base
|
|
|
|
import fixtures
|
|
|
|
|
|
class TestEnviron(base.TestCase):
|
|
|
|
def setUp(self):
|
|
super(TestEnviron, self).setUp()
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_AUTH_URL', 'https://example.com'))
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_USERNAME', 'testuser'))
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_PROJECT_NAME', 'testproject'))
|
|
|
|
def test_get_one_cloud(self):
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
self.assertIsInstance(c.get_one_cloud(), cloud_config.CloudConfig)
|
|
|
|
def test_envvar_name_override(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_CLOUD_NAME', 'openstack'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
cc = c.get_one_cloud('openstack')
|
|
self._assert_cloud_details(cc)
|
|
|
|
def test_environ_exists(self):
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
cc = c.get_one_cloud('envvars')
|
|
self._assert_cloud_details(cc)
|
|
self.assertNotIn('auth_url', cc.config)
|
|
self.assertIn('auth_url', cc.config['auth'])
|
|
self.assertNotIn('auth_url', cc.config)
|
|
cc = c.get_one_cloud('_test_cloud_')
|
|
self._assert_cloud_details(cc)
|
|
cc = c.get_one_cloud('_test_cloud_no_vendor')
|
|
self._assert_cloud_details(cc)
|
|
|
|
def test_get_one_cloud_with_config_files(self):
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
self.assertIsInstance(c.cloud_config, dict)
|
|
self.assertIn('cache', c.cloud_config)
|
|
self.assertIsInstance(c.cloud_config['cache'], dict)
|
|
self.assertIn('max_age', c.cloud_config['cache'])
|
|
self.assertIn('path', c.cloud_config['cache'])
|
|
cc = c.get_one_cloud('_test_cloud_')
|
|
self._assert_cloud_details(cc)
|
|
cc = c.get_one_cloud('_test_cloud_no_vendor')
|
|
self._assert_cloud_details(cc)
|