
Almost nothing in clouds.yaml is secret, but the file has to be treated as if it were because of the passwords or other secrets contained in it. This makes it difficult to put clouds.yaml into a public or broadly accessible config repository. Add support for having a second optional file, secure.yaml, which can contain any value you can put in clouds.yaml and which will be overlayed on top of clouds.yaml values. Most people probably do not need this, but for folks with complex cloud configs with teams of people working on them, this reduces the amount of things that have to be managed by the privileged system. Change-Id: I631d826588b0a0b1f36244caa7982dd42d9eb498
160 lines
6.8 KiB
Python
160 lines
6.8 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 import exceptions
|
|
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_PASSWORD', 'testpass'))
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_PROJECT_NAME', 'testproject'))
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('NOVA_PROJECT_ID', 'testnova'))
|
|
|
|
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_no_fallthrough(self):
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
self.assertRaises(
|
|
exceptions.OpenStackConfigException, c.get_one_cloud, 'openstack')
|
|
|
|
def test_envvar_name_override(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_CLOUD_NAME', 'override'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
cc = c.get_one_cloud('override')
|
|
self._assert_cloud_details(cc)
|
|
|
|
def test_envvar_prefer_ipv6_override(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_PREFER_IPV6', 'false'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml],
|
|
secure_files=[self.secure_yaml])
|
|
cc = c.get_one_cloud('_test-cloud_')
|
|
self.assertFalse(cc.prefer_ipv6)
|
|
|
|
def test_environ_exists(self):
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml],
|
|
secure_files=[self.secure_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('project_id', 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_environ_prefix(self):
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml],
|
|
envvar_prefix='NOVA_',
|
|
secure_files=[self.secure_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.assertIn('project_id', 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],
|
|
secure_files=[self.secure_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)
|
|
|
|
def test_config_file_override(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable(
|
|
'OS_CLIENT_CONFIG_FILE', self.cloud_yaml))
|
|
c = config.OpenStackConfig(config_files=[],
|
|
vendor_files=[self.vendor_yaml])
|
|
cc = c.get_one_cloud('_test-cloud_')
|
|
self._assert_cloud_details(cc)
|
|
|
|
|
|
class TestEnvvars(base.TestCase):
|
|
|
|
def test_no_envvars(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('NOVA_USERNAME', 'nova'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
self.assertRaises(
|
|
exceptions.OpenStackConfigException, c.get_one_cloud, 'envvars')
|
|
|
|
def test_test_envvars(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('NOVA_USERNAME', 'nova'))
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_STDERR_CAPTURE', 'True'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
self.assertRaises(
|
|
exceptions.OpenStackConfigException, c.get_one_cloud, 'envvars')
|
|
|
|
def test_have_envvars(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('NOVA_USERNAME', 'nova'))
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('OS_USERNAME', 'user'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml])
|
|
cc = c.get_one_cloud('envvars')
|
|
self.assertEqual(cc.config['auth']['username'], 'user')
|
|
|
|
def test_old_envvars(self):
|
|
self.useFixture(
|
|
fixtures.EnvironmentVariable('NOVA_USERNAME', 'nova'))
|
|
c = config.OpenStackConfig(config_files=[self.cloud_yaml],
|
|
vendor_files=[self.vendor_yaml],
|
|
envvar_prefix='NOVA_')
|
|
cc = c.get_one_cloud('envvars')
|
|
self.assertEqual(cc.config['auth']['username'], 'nova')
|