1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651 |
- # -*- coding: utf-8 -*-
- '''
- Unit tests for salt.config
- '''
- # Import Python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import logging
- import os
- import textwrap
- # Import Salt Testing libs
- from tests.support.helpers import with_tempdir, with_tempfile, destructiveTest
- from tests.support.mixins import AdaptedConfigurationTestCaseMixin
- from tests.support.paths import TMP
- from tests.support.unit import skipIf, TestCase
- from tests.support.mock import (
- NO_MOCK,
- NO_MOCK_REASON,
- Mock,
- MagicMock,
- patch
- )
- # Import Salt libs
- import salt.config
- import salt.minion
- import salt.syspaths
- import salt.utils.files
- import salt.utils.network
- import salt.utils.platform
- import salt.utils.yaml
- from salt.ext import six
- from salt.syspaths import CONFIG_DIR
- from salt import config as sconfig
- from salt.exceptions import (
- CommandExecutionError,
- SaltConfigurationError,
- SaltCloudConfigError
- )
- log = logging.getLogger(__name__)
- SAMPLE_CONF_DIR = os.path.dirname(os.path.realpath(__file__)).split('tests')[0] + 'conf/'
- # mock hostname should be more complex than the systems FQDN
- MOCK_HOSTNAME = 'very.long.complex.fqdn.that.is.crazy.extra.long.example.com'
- MOCK_ETC_HOSTS = textwrap.dedent('''\
- ##
- # Host Database
- #
- # localhost is used to configure the loopback interface
- # when the system is booting. Do not change this entry.
- ## The empty line below must remain, it factors into the tests.
- 127.0.0.1 localhost {hostname}
- 10.0.0.100 {hostname}
- 200.200.200.2 other.host.alias.com
- ::1 ip6-localhost ip6-loopback
- fe00::0 ip6-localnet
- ff00::0 ip6-mcastprefix
- '''.format(hostname=MOCK_HOSTNAME))
- MOCK_ETC_HOSTNAME = '{0}\n'.format(MOCK_HOSTNAME)
- PATH = 'path/to/some/cloud/conf/file'
- DEFAULT = {'default_include': PATH}
- MOCK_MASTER_DEFAULT_OPTS = {
- 'log_file': '{0}/var/log/salt/master'.format(salt.syspaths.ROOT_DIR),
- 'pidfile': '{0}/var/run/salt-master.pid'.format(salt.syspaths.ROOT_DIR),
- 'root_dir': format(salt.syspaths.ROOT_DIR)
- }
- if salt.utils.platform.is_windows():
- MOCK_MASTER_DEFAULT_OPTS = {
- 'log_file': '{0}\\var\\log\\salt\\master'.format(
- salt.syspaths.ROOT_DIR),
- 'pidfile': '{0}\\var\\run\\salt-master.pid'.format(
- salt.syspaths.ROOT_DIR),
- 'root_dir': format(salt.syspaths.ROOT_DIR)
- }
- class SampleConfTest(TestCase):
- '''
- Validate files in the salt/conf directory.
- '''
- def test_conf_master_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/master must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- master_config = SAMPLE_CONF_DIR + 'master'
- ret = salt.config._read_conf_file(master_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- master_config
- )
- )
- def test_conf_minion_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/minion must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- minion_config = SAMPLE_CONF_DIR + 'minion'
- ret = salt.config._read_conf_file(minion_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- minion_config
- )
- )
- def test_conf_cloud_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/cloud must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- cloud_config = SAMPLE_CONF_DIR + 'cloud'
- ret = salt.config._read_conf_file(cloud_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- cloud_config
- )
- )
- def test_conf_cloud_profiles_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/cloud.profiles must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- cloud_profiles_config = SAMPLE_CONF_DIR + 'cloud.profiles'
- ret = salt.config._read_conf_file(cloud_profiles_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- cloud_profiles_config
- )
- )
- def test_conf_cloud_providers_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/cloud.providers must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- cloud_providers_config = SAMPLE_CONF_DIR + 'cloud.providers'
- ret = salt.config._read_conf_file(cloud_providers_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- cloud_providers_config
- )
- )
- def test_conf_proxy_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/proxy must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- proxy_config = SAMPLE_CONF_DIR + 'proxy'
- ret = salt.config._read_conf_file(proxy_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- proxy_config
- )
- )
- def test_conf_roster_sample_is_commented(self):
- '''
- The sample config file located in salt/conf/roster must be completely
- commented out. This test checks for any lines that are not commented or blank.
- '''
- roster_config = SAMPLE_CONF_DIR + 'roster'
- ret = salt.config._read_conf_file(roster_config)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- roster_config
- )
- )
- def test_conf_cloud_profiles_d_files_are_commented(self):
- '''
- All cloud profile sample configs in salt/conf/cloud.profiles.d/* must be completely
- commented out. This test loops through all of the files in that directory to check
- for any lines that are not commented or blank.
- '''
- cloud_sample_dir = SAMPLE_CONF_DIR + 'cloud.profiles.d/'
- if not os.path.exists(cloud_sample_dir):
- self.skipTest("Sample config directory '{}' is missing.".format(cloud_sample_dir))
- cloud_sample_files = os.listdir(cloud_sample_dir)
- for conf_file in cloud_sample_files:
- profile_conf = cloud_sample_dir + conf_file
- ret = salt.config._read_conf_file(profile_conf)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- conf_file
- )
- )
- def test_conf_cloud_providers_d_files_are_commented(self):
- '''
- All cloud profile sample configs in salt/conf/cloud.providers.d/* must be completely
- commented out. This test loops through all of the files in that directory to check
- for any lines that are not commented or blank.
- '''
- cloud_sample_dir = SAMPLE_CONF_DIR + 'cloud.providers.d/'
- if not os.path.exists(cloud_sample_dir):
- self.skipTest("Sample config directory '{}' is missing.".format(cloud_sample_dir))
- cloud_sample_files = os.listdir(cloud_sample_dir)
- for conf_file in cloud_sample_files:
- provider_conf = cloud_sample_dir + conf_file
- ret = salt.config._read_conf_file(provider_conf)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- conf_file
- )
- )
- def test_conf_cloud_maps_d_files_are_commented(self):
- '''
- All cloud profile sample configs in salt/conf/cloud.maps.d/* must be completely
- commented out. This test loops through all of the files in that directory to check
- for any lines that are not commented or blank.
- '''
- cloud_sample_dir = SAMPLE_CONF_DIR + 'cloud.maps.d/'
- if not os.path.exists(cloud_sample_dir):
- self.skipTest("Sample config directory '{}' is missing.".format(cloud_sample_dir))
- cloud_sample_files = os.listdir(cloud_sample_dir)
- for conf_file in cloud_sample_files:
- map_conf = cloud_sample_dir + conf_file
- ret = salt.config._read_conf_file(map_conf)
- self.assertEqual(
- ret,
- {},
- 'Sample config file \'{0}\' must be commented out.'.format(
- conf_file
- )
- )
- def _unhandled_mock_read(filename):
- '''
- Raise an error because we should not be calling salt.utils.files.fopen()
- '''
- raise CommandExecutionError('Unhandled mock read for {0}'.format(filename))
- def _salt_configuration_error(filename):
- '''
- Raise an error to indicate error in the Salt configuration file
- '''
- raise SaltConfigurationError('Configuration error in {0}'.format(filename))
- class ConfigTestCase(TestCase, AdaptedConfigurationTestCaseMixin):
- @with_tempfile()
- def test_sha256_is_default_for_master(self, fpath):
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(
- "root_dir: /\n"
- "key_logfile: key\n"
- )
- config = sconfig.master_config(fpath)
- self.assertEqual(config['hash_type'], 'sha256')
- @with_tempfile()
- def test_sha256_is_default_for_minion(self, fpath):
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(
- "root_dir: /\n"
- "key_logfile: key\n"
- )
- config = sconfig.minion_config(fpath)
- self.assertEqual(config['hash_type'], 'sha256')
- @with_tempfile()
- def test_proper_path_joining(self, fpath):
- temp_config = 'root_dir: /\n'\
- 'key_logfile: key\n'
- if salt.utils.platform.is_windows():
- temp_config = 'root_dir: c:\\\n'\
- 'key_logfile: key\n'
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(temp_config)
- config = sconfig.master_config(fpath)
- expect_path_join = os.path.join('/', 'key')
- expect_sep_join = '//key'
- if salt.utils.platform.is_windows():
- expect_path_join = os.path.join('c:\\', 'key')
- expect_sep_join = 'c:\\\\key'
- # os.path.join behavior
- self.assertEqual(config['key_logfile'], expect_path_join)
- # os.sep.join behavior
- self.assertNotEqual(config['key_logfile'], expect_sep_join)
- @with_tempdir()
- def test_common_prefix_stripping(self, tempdir):
- root_dir = os.path.join(tempdir, 'foo', 'bar')
- os.makedirs(root_dir)
- fpath = os.path.join(root_dir, 'config')
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(root_dir, fpath)
- )
- config = sconfig.master_config(fpath)
- self.assertEqual(config['log_file'], fpath)
- @with_tempdir()
- def test_default_root_dir_included_in_config_root_dir(self, tempdir):
- root_dir = os.path.join(tempdir, 'foo', 'bar')
- os.makedirs(root_dir)
- fpath = os.path.join(root_dir, 'config')
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(root_dir, fpath)
- )
- with patch('salt.syspaths.ROOT_DIR', TMP):
- config = sconfig.master_config(fpath)
- self.assertEqual(config['log_file'], fpath)
- @skipIf(
- salt.utils.platform.is_windows(),
- 'You can\'t set an environment dynamically in Windows')
- @with_tempdir()
- def test_load_master_config_from_environ_var(self, tempdir):
- original_environ = os.environ.copy()
- env_root_dir = os.path.join(tempdir, 'foo', 'env')
- os.makedirs(env_root_dir)
- env_fpath = os.path.join(env_root_dir, 'config-env')
- with salt.utils.files.fopen(env_fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(env_root_dir, env_fpath)
- )
- os.environ['SALT_MASTER_CONFIG'] = env_fpath
- # Should load from env variable, not the default configuration file.
- config = sconfig.master_config('{0}/master'.format(CONFIG_DIR))
- self.assertEqual(config['log_file'], env_fpath)
- os.environ.clear()
- os.environ.update(original_environ)
- root_dir = os.path.join(tempdir, 'foo', 'bar')
- os.makedirs(root_dir)
- fpath = os.path.join(root_dir, 'config')
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(root_dir, fpath)
- )
- # Let's set the environment variable, yet, since the configuration
- # file path is not the default one, i.e., the user has passed an
- # alternative configuration file form the CLI parser, the
- # environment variable will be ignored.
- os.environ['SALT_MASTER_CONFIG'] = env_fpath
- config = sconfig.master_config(fpath)
- self.assertEqual(config['log_file'], fpath)
- os.environ.clear()
- os.environ.update(original_environ)
- @skipIf(
- salt.utils.platform.is_windows(),
- 'You can\'t set an environment dynamically in Windows')
- @with_tempdir()
- def test_load_minion_config_from_environ_var(self, tempdir):
- original_environ = os.environ.copy()
- env_root_dir = os.path.join(tempdir, 'foo', 'env')
- os.makedirs(env_root_dir)
- env_fpath = os.path.join(env_root_dir, 'config-env')
- with salt.utils.files.fopen(env_fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(env_root_dir, env_fpath)
- )
- os.environ['SALT_MINION_CONFIG'] = env_fpath
- # Should load from env variable, not the default configuration file
- config = sconfig.minion_config('{0}/minion'.format(CONFIG_DIR))
- self.assertEqual(config['log_file'], env_fpath)
- os.environ.clear()
- os.environ.update(original_environ)
- root_dir = os.path.join(tempdir, 'foo', 'bar')
- os.makedirs(root_dir)
- fpath = os.path.join(root_dir, 'config')
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(root_dir, fpath)
- )
- # Let's set the environment variable, yet, since the configuration
- # file path is not the default one, i.e., the user has passed an
- # alternative configuration file form the CLI parser, the
- # environment variable will be ignored.
- os.environ['SALT_MINION_CONFIG'] = env_fpath
- config = sconfig.minion_config(fpath)
- self.assertEqual(config['log_file'], fpath)
- os.environ.clear()
- os.environ.update(original_environ)
- @with_tempdir()
- def test_load_client_config_from_environ_var(self, tempdir):
- original_environ = os.environ.copy()
- env_root_dir = os.path.join(tempdir, 'foo', 'env')
- os.makedirs(env_root_dir)
- # Let's populate a master configuration file which should not get
- # picked up since the client configuration tries to load the master
- # configuration settings using the provided client configuration
- # file
- master_config = os.path.join(env_root_dir, 'master')
- with salt.utils.files.fopen(master_config, 'w') as fp_:
- fp_.write(
- 'blah: true\n'
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(env_root_dir, master_config)
- )
- os.environ['SALT_MASTER_CONFIG'] = master_config
- # Now the client configuration file
- env_fpath = os.path.join(env_root_dir, 'config-env')
- with salt.utils.files.fopen(env_fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(env_root_dir, env_fpath)
- )
- os.environ['SALT_CLIENT_CONFIG'] = env_fpath
- # Should load from env variable, not the default configuration file
- config = sconfig.client_config(os.path.expanduser('~/.salt'))
- self.assertEqual(config['log_file'], env_fpath)
- self.assertTrue('blah' not in config)
- os.environ.clear()
- os.environ.update(original_environ)
- root_dir = os.path.join(tempdir, 'foo', 'bar')
- os.makedirs(root_dir)
- fpath = os.path.join(root_dir, 'config')
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(root_dir, fpath)
- )
- # Let's set the environment variable, yet, since the configuration
- # file path is not the default one, i.e., the user has passed an
- # alternative configuration file form the CLI parser, the
- # environment variable will be ignored.
- os.environ['SALT_MASTER_CONFIG'] = env_fpath
- config = sconfig.master_config(fpath)
- self.assertEqual(config['log_file'], fpath)
- os.environ.clear()
- os.environ.update(original_environ)
- @with_tempdir()
- def test_issue_5970_minion_confd_inclusion(self, tempdir):
- minion_config = os.path.join(tempdir, 'minion')
- minion_confd = os.path.join(tempdir, 'minion.d')
- os.makedirs(minion_confd)
- # Let's populate a minion configuration file with some basic
- # settings
- with salt.utils.files.fopen(minion_config, 'w') as fp_:
- fp_.write(
- 'blah: false\n'
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(tempdir, minion_config)
- )
- # Now, let's populate an extra configuration file under minion.d
- # Notice that above we've set blah as False and below as True.
- # Since the minion.d files are loaded after the main configuration
- # file so overrides can happen, the final value of blah should be
- # True.
- extra_config = os.path.join(minion_confd, 'extra.conf')
- with salt.utils.files.fopen(extra_config, 'w') as fp_:
- fp_.write('blah: true\n')
- # Let's load the configuration
- config = sconfig.minion_config(minion_config)
- self.assertEqual(config['log_file'], minion_config)
- # As proven by the assertion below, blah is True
- self.assertTrue(config['blah'])
- @with_tempdir()
- def test_master_confd_inclusion(self, tempdir):
- master_config = os.path.join(tempdir, 'master')
- master_confd = os.path.join(tempdir, 'master.d')
- os.makedirs(master_confd)
- # Let's populate a master configuration file with some basic
- # settings
- with salt.utils.files.fopen(master_config, 'w') as fp_:
- fp_.write(
- 'blah: false\n'
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(tempdir, master_config)
- )
- # Now, let's populate an extra configuration file under master.d
- # Notice that above we've set blah as False and below as True.
- # Since the master.d files are loaded after the main configuration
- # file so overrides can happen, the final value of blah should be
- # True.
- extra_config = os.path.join(master_confd, 'extra.conf')
- with salt.utils.files.fopen(extra_config, 'w') as fp_:
- fp_.write('blah: true\n')
- # Let's load the configuration
- config = sconfig.master_config(master_config)
- self.assertEqual(config['log_file'], master_config)
- # As proven by the assertion below, blah is True
- self.assertTrue(config['blah'])
- @with_tempfile()
- @with_tempdir()
- def test_master_file_roots_glob(self, tempdir, fpath):
- # Create some files
- for f in 'abc':
- fpath = os.path.join(tempdir, f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(
- 'file_roots:\n'
- ' base:\n'
- ' - {0}'.format(os.path.join(tempdir, '*'))
- )
- config = sconfig.master_config(fpath)
- base = config['file_roots']['base']
- self.assertEqual(set(base), set([
- os.path.join(tempdir, 'a'),
- os.path.join(tempdir, 'b'),
- os.path.join(tempdir, 'c')
- ]))
- def test_validate_bad_file_roots(self):
- expected = salt.config._expand_glob_path(
- [salt.syspaths.BASE_FILE_ROOTS_DIR]
- )
- with patch('salt.config._normalize_roots') as mk:
- ret = salt.config._validate_file_roots(None)
- assert not mk.called
- assert ret == {'base': expected}
- @with_tempfile()
- @with_tempdir()
- def test_master_pillar_roots_glob(self, tempdir, fpath):
- # Create some files.
- for f in 'abc':
- fpath = os.path.join(tempdir, f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(
- 'pillar_roots:\n'
- ' base:\n'
- ' - {0}'.format(os.path.join(tempdir, '*'))
- )
- config = sconfig.master_config(fpath)
- base = config['pillar_roots']['base']
- self.assertEqual(set(base), set([
- os.path.join(tempdir, 'a'),
- os.path.join(tempdir, 'b'),
- os.path.join(tempdir, 'c')
- ]))
- def test_validate_bad_pillar_roots(self):
- expected = salt.config._expand_glob_path(
- [salt.syspaths.BASE_PILLAR_ROOTS_DIR]
- )
- with patch('salt.config._normalize_roots') as mk:
- ret = salt.config._validate_pillar_roots(None)
- assert not mk.called
- assert ret == {'base': expected}
- @with_tempdir()
- def test_master_id_function(self, tempdir):
- master_config = os.path.join(tempdir, 'master')
- with salt.utils.files.fopen(master_config, 'w') as fp_:
- fp_.write(
- 'id_function:\n'
- ' test.echo:\n'
- ' text: hello_world\n'
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(tempdir, master_config)
- )
- # Let's load the configuration
- config = sconfig.master_config(master_config)
- self.assertEqual(config['log_file'], master_config)
- # 'master_config' appends '_master' to the ID
- self.assertEqual(config['id'], 'hello_world_master')
- @with_tempfile()
- @with_tempdir()
- def test_minion_file_roots_glob(self, tempdir, fpath):
- # Create some files.
- for f in 'abc':
- fpath = os.path.join(tempdir, f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(
- 'file_roots:\n'
- ' base:\n'
- ' - {0}'.format(os.path.join(tempdir, '*'))
- )
- config = sconfig.minion_config(fpath)
- base = config['file_roots']['base']
- self.assertEqual(set(base), set([
- os.path.join(tempdir, 'a'),
- os.path.join(tempdir, 'b'),
- os.path.join(tempdir, 'c')
- ]))
- @with_tempfile()
- @with_tempdir()
- def test_minion_pillar_roots_glob(self, tempdir, fpath):
- # Create some files.
- for f in 'abc':
- fpath = os.path.join(tempdir, f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(f)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(
- 'pillar_roots:\n'
- ' base:\n'
- ' - {0}'.format(os.path.join(tempdir, '*'))
- )
- config = sconfig.minion_config(fpath)
- base = config['pillar_roots']['base']
- self.assertEqual(set(base), set([
- os.path.join(tempdir, 'a'),
- os.path.join(tempdir, 'b'),
- os.path.join(tempdir, 'c')
- ]))
- @with_tempdir()
- def test_minion_id_function(self, tempdir):
- minion_config = os.path.join(tempdir, 'minion')
- with salt.utils.files.fopen(minion_config, 'w') as fp_:
- fp_.write(
- 'id_function:\n'
- ' test.echo:\n'
- ' text: hello_world\n'
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(tempdir, minion_config)
- )
- # Let's load the configuration
- config = sconfig.minion_config(minion_config)
- self.assertEqual(config['log_file'], minion_config)
- self.assertEqual(config['id'], 'hello_world')
- @with_tempdir()
- def test_minion_id_lowercase(self, tempdir):
- '''
- This tests that setting `minion_id_lowercase: True` does lower case the minion id.
- Lowercase does not operate on a static `id: KING_BOB` setting, or a cached id.
- '''
- minion_config = os.path.join(tempdir, 'minion')
- with salt.utils.files.fopen(minion_config, 'w') as fp_:
- fp_.write(textwrap.dedent('''\
- id_function:
- test.echo:
- text: KING_BOB
- minion_id_caching: False
- minion_id_lowercase: True
- '''))
- config = sconfig.minion_config(minion_config) # Load the configuration
- self.assertEqual(config['minion_id_caching'], False) # Check the configuration
- self.assertEqual(config['minion_id_lowercase'], True) # Check the configuration
- self.assertEqual(config['id'], 'king_bob')
- @with_tempdir()
- def test_backend_rename(self, tempdir):
- '''
- This tests that we successfully rename git, hg, svn, and minion to
- gitfs, hgfs, svnfs, and minionfs in the master and minion opts.
- '''
- fpath = salt.utils.files.mkstemp(dir=tempdir)
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(textwrap.dedent('''\
- fileserver_backend:
- - roots
- - git
- - hg
- - svn
- - minion
- '''))
- master_config = sconfig.master_config(fpath)
- minion_config = sconfig.minion_config(fpath)
- expected = ['roots', 'gitfs', 'hgfs', 'svnfs', 'minionfs']
- self.assertEqual(master_config['fileserver_backend'], expected)
- self.assertEqual(minion_config['fileserver_backend'], expected)
- def test_syndic_config(self):
- syndic_conf_path = self.get_config_file_path('syndic')
- minion_conf_path = self.get_config_file_path('minion')
- syndic_opts = sconfig.syndic_config(
- syndic_conf_path, minion_conf_path
- )
- syndic_opts.update(salt.minion.resolve_dns(syndic_opts))
- root_dir = syndic_opts['root_dir']
- # id & pki dir are shared & so configured on the minion side
- self.assertEqual(syndic_opts['id'], 'minion')
- self.assertEqual(syndic_opts['pki_dir'], os.path.join(root_dir, 'pki'))
- # the rest is configured master side
- self.assertEqual(syndic_opts['master_uri'], 'tcp://127.0.0.1:54506')
- self.assertEqual(syndic_opts['master_port'], 54506)
- self.assertEqual(syndic_opts['master_ip'], '127.0.0.1')
- self.assertEqual(syndic_opts['master'], 'localhost')
- self.assertEqual(syndic_opts['sock_dir'], os.path.join(root_dir, 'minion_sock'))
- self.assertEqual(syndic_opts['cachedir'], os.path.join(root_dir, 'cache'))
- self.assertEqual(syndic_opts['log_file'], os.path.join(root_dir, 'syndic.log'))
- self.assertEqual(syndic_opts['pidfile'], os.path.join(root_dir, 'syndic.pid'))
- # Show that the options of localclient that repub to local master
- # are not merged with syndic ones
- self.assertEqual(syndic_opts['_master_conf_file'], minion_conf_path)
- self.assertEqual(syndic_opts['_minion_conf_file'], syndic_conf_path)
- @with_tempfile()
- def _get_tally(self, fpath, conf_func):
- '''
- This ensures that any strings which are loaded are unicode strings
- '''
- tally = {}
- def _count_strings(config):
- if isinstance(config, dict):
- for key, val in six.iteritems(config):
- log.debug('counting strings in dict key: %s', key)
- log.debug('counting strings in dict val: %s', val)
- _count_strings(key)
- _count_strings(val)
- elif isinstance(config, list):
- log.debug('counting strings in list: %s', config)
- for item in config:
- _count_strings(item)
- else:
- if isinstance(config, six.string_types):
- if isinstance(config, six.text_type):
- tally['unicode'] = tally.get('unicode', 0) + 1
- else:
- # We will never reach this on PY3
- tally.setdefault('non_unicode', []).append(config)
- with salt.utils.files.fopen(fpath, 'w') as wfh:
- wfh.write(textwrap.dedent('''
- foo: bar
- mylist:
- - somestring
- - 9
- - 123.456
- - True
- - nested:
- - key: val
- - nestedlist:
- - foo
- - bar
- - baz
- mydict:
- - somestring: 9
- - 123.456: 789
- - True: False
- - nested:
- - key: val
- - nestedlist:
- - foo
- - bar
- - baz'''))
- if conf_func is sconfig.master_config:
- wfh.write('\n\n')
- wfh.write(textwrap.dedent('''
- rest_cherrypy:
- port: 8000
- disable_ssl: True
- app_path: /beacon_demo
- app: /srv/web/html/index.html
- static: /srv/web/static'''))
- config = conf_func(fpath)
- _count_strings(config)
- return tally
- def test_conf_file_strings_are_unicode_for_master(self):
- '''
- This ensures that any strings which are loaded are unicode strings
- '''
- tally = self._get_tally(sconfig.master_config) # pylint: disable=no-value-for-parameter
- non_unicode = tally.get('non_unicode', [])
- self.assertEqual(len(non_unicode), 8 if six.PY2 else 0, non_unicode)
- self.assertTrue(tally['unicode'] > 0)
- def test_conf_file_strings_are_unicode_for_minion(self):
- '''
- This ensures that any strings which are loaded are unicode strings
- '''
- tally = self._get_tally(sconfig.minion_config) # pylint: disable=no-value-for-parameter
- non_unicode = tally.get('non_unicode', [])
- self.assertEqual(len(non_unicode), 0, non_unicode)
- self.assertTrue(tally['unicode'] > 0)
- # <---- Salt Cloud Configuration Tests ---------------------------------------------
- # cloud_config tests
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_cloud_config_double_master_path(self):
- '''
- Tests passing in master_config_path and master_config kwargs.
- '''
- with patch('salt.config.load_config', MagicMock(return_value={})):
- self.assertRaises(SaltCloudConfigError, sconfig.cloud_config, PATH,
- master_config_path='foo', master_config='bar')
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_cloud_config_double_providers_path(self):
- '''
- Tests passing in providers_config_path and providers_config kwargs.
- '''
- with patch('salt.config.load_config', MagicMock(return_value={})):
- self.assertRaises(SaltCloudConfigError, sconfig.cloud_config, PATH,
- providers_config_path='foo', providers_config='bar')
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_cloud_config_double_profiles_path(self):
- '''
- Tests passing in profiles_config_path and profiles_config kwargs.
- '''
- with patch('salt.config.load_config', MagicMock(return_value={})):
- self.assertRaises(SaltCloudConfigError, sconfig.cloud_config, PATH,
- profiles_config_path='foo', profiles_config='bar')
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_cloud_config_providers_in_opts(self):
- '''
- Tests mixing old cloud providers with pre-configured providers configurations
- using the providers_config kwarg
- '''
- with patch('salt.config.load_config', MagicMock(return_value={})):
- with patch('salt.config.apply_cloud_config',
- MagicMock(return_value={'providers': 'foo'})):
- self.assertRaises(SaltCloudConfigError, sconfig.cloud_config, PATH,
- providers_config='bar')
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_cloud_config_providers_in_opts_path(self):
- '''
- Tests mixing old cloud providers with pre-configured providers configurations
- using the providers_config_path kwarg
- '''
- with patch('salt.config.load_config', MagicMock(return_value={})):
- with patch('salt.config.apply_cloud_config',
- MagicMock(return_value={'providers': 'foo'})):
- with patch('os.path.isfile', MagicMock(return_value=True)):
- self.assertRaises(SaltCloudConfigError, sconfig.cloud_config, PATH,
- providers_config_path='bar')
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_cloud_config_deploy_scripts_search_path(self):
- '''
- Tests the contents of the 'deploy_scripts_search_path' tuple to ensure that
- the correct deploy search paths are present.
- There should be two search paths reported in the tuple: ``/etc/salt/cloud.deploy.d``
- and ``<path-to-salt-install>/salt/cloud/deploy``. The first element is usually
- ``/etc/salt/cloud.deploy.d``, but sometimes is can be something like
- ``/etc/local/salt/cloud.deploy.d``, so we'll only test against the last part of
- the path.
- '''
- with patch('os.path.isdir', MagicMock(return_value=True)):
- search_paths = sconfig.cloud_config('/etc/salt/cloud').get('deploy_scripts_search_path')
- etc_deploy_path = '/salt/cloud.deploy.d'
- deploy_path = '/salt/cloud/deploy'
- if salt.utils.platform.is_windows():
- etc_deploy_path = '/salt\\cloud.deploy.d'
- deploy_path = '\\salt\\cloud\\deploy'
- # Check cloud.deploy.d path is the first element in the search_paths tuple
- self.assertTrue(search_paths[0].endswith(etc_deploy_path))
- # Check the second element in the search_paths tuple
- self.assertTrue(search_paths[1].endswith(deploy_path))
- # apply_cloud_config tests
- def test_apply_cloud_config_no_provider_detail_list(self):
- '''
- Tests when the provider is not contained in a list of details
- '''
- overrides = {'providers': {'foo': [{'bar': 'baz'}]}}
- self.assertRaises(SaltCloudConfigError, sconfig.apply_cloud_config,
- overrides, defaults=DEFAULT)
- def test_apply_cloud_config_no_provider_detail_dict(self):
- '''
- Tests when the provider is not contained in the details dictionary
- '''
- overrides = {'providers': {'foo': {'bar': 'baz'}}}
- self.assertRaises(SaltCloudConfigError, sconfig.apply_cloud_config,
- overrides, defaults=DEFAULT)
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_apply_cloud_config_success_list(self):
- '''
- Tests success when valid data is passed into the function as a list
- '''
- with patch('salt.config.old_to_new',
- MagicMock(return_value={'default_include': 'path/to/some/cloud/conf/file',
- 'providers': {
- 'foo': {
- 'bar': {
- 'driver': 'foo:bar'}}}})):
- overrides = {'providers': {'foo': [{'driver': 'bar'}]}}
- ret = {'default_include': 'path/to/some/cloud/conf/file',
- 'providers': {'foo': {'bar': {'driver': 'foo:bar'}}}}
- self.assertEqual(sconfig.apply_cloud_config(overrides, defaults=DEFAULT), ret)
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_apply_cloud_config_success_dict(self):
- '''
- Tests success when valid data is passed into function as a dictionary
- '''
- with patch('salt.config.old_to_new',
- MagicMock(return_value={'default_include': 'path/to/some/cloud/conf/file',
- 'providers': {
- 'foo': {
- 'bar': {
- 'driver': 'foo:bar'}}}})):
- overrides = {'providers': {'foo': {'driver': 'bar'}}}
- ret = {'default_include': 'path/to/some/cloud/conf/file',
- 'providers': {'foo': {'bar': {'driver': 'foo:bar'}}}}
- self.assertEqual(sconfig.apply_cloud_config(overrides, defaults=DEFAULT), ret)
- # apply_vm_profiles_config tests
- def test_apply_vm_profiles_config_bad_profile_format(self):
- '''
- Tests passing in a bad profile format in overrides
- '''
- overrides = {'foo': 'bar', 'conf_file': PATH}
- self.assertRaises(SaltCloudConfigError, sconfig.apply_vm_profiles_config,
- PATH, overrides, defaults=DEFAULT)
- def test_apply_vm_profiles_config_success(self):
- '''
- Tests passing in valid provider and profile config files successfully
- '''
- providers = {'test-provider':
- {'digitalocean':
- {'driver': 'digitalocean', 'profiles': {}}}}
- overrides = {'test-profile':
- {'provider': 'test-provider',
- 'image': 'Ubuntu 12.10 x64',
- 'size': '512MB'},
- 'conf_file': PATH}
- ret = {'test-profile':
- {'profile': 'test-profile',
- 'provider': 'test-provider:digitalocean',
- 'image': 'Ubuntu 12.10 x64',
- 'size': '512MB'}}
- self.assertEqual(sconfig.apply_vm_profiles_config(providers,
- overrides,
- defaults=DEFAULT), ret)
- def test_apply_vm_profiles_config_extend_success(self):
- '''
- Tests profile extends functionality with valid provider and profile configs
- '''
- providers = {'test-config': {'ec2': {'profiles': {}, 'driver': 'ec2'}}}
- overrides = {'Amazon': {'image': 'test-image-1',
- 'extends': 'dev-instances'},
- 'Fedora': {'image': 'test-image-2',
- 'extends': 'dev-instances'},
- 'conf_file': PATH,
- 'dev-instances': {'ssh_username': 'test_user',
- 'provider': 'test-config'}}
- ret = {'Amazon': {'profile': 'Amazon',
- 'ssh_username': 'test_user',
- 'image': 'test-image-1',
- 'provider': 'test-config:ec2'},
- 'Fedora': {'profile': 'Fedora',
- 'ssh_username': 'test_user',
- 'image': 'test-image-2',
- 'provider': 'test-config:ec2'},
- 'dev-instances': {'profile': 'dev-instances',
- 'ssh_username': 'test_user',
- 'provider': 'test-config:ec2'}}
- self.assertEqual(sconfig.apply_vm_profiles_config(providers,
- overrides,
- defaults=DEFAULT), ret)
- def test_apply_vm_profiles_config_extend_override_success(self):
- '''
- Tests profile extends and recursively merges data elements
- '''
- self.maxDiff = None
- providers = {'test-config': {'ec2': {'profiles': {}, 'driver': 'ec2'}}}
- overrides = {'Fedora': {'image': 'test-image-2',
- 'extends': 'dev-instances',
- 'minion': {'grains': {'stage': 'experimental'}}},
- 'conf_file': PATH,
- 'dev-instances': {'ssh_username': 'test_user',
- 'provider': 'test-config',
- 'minion': {'grains': {'role': 'webserver'}}}}
- ret = {'Fedora': {'profile': 'Fedora',
- 'ssh_username': 'test_user',
- 'image': 'test-image-2',
- 'minion': {'grains': {'role': 'webserver',
- 'stage': 'experimental'}},
- 'provider': 'test-config:ec2'},
- 'dev-instances': {'profile': 'dev-instances',
- 'ssh_username': 'test_user',
- 'minion': {'grains': {'role': 'webserver'}},
- 'provider': 'test-config:ec2'}}
- self.assertEqual(sconfig.apply_vm_profiles_config(providers,
- overrides,
- defaults=DEFAULT), ret)
- # apply_cloud_providers_config tests
- def test_apply_cloud_providers_config_same_providers(self):
- '''
- Tests when two providers are given with the same provider name
- '''
- overrides = {'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2'},
- {'apikey': 'abcdefghijklmnopqrstuvwxyz',
- 'password': 'supersecret',
- 'driver': 'ec2'}],
- 'conf_file': PATH}
- self.assertRaises(SaltCloudConfigError,
- sconfig.apply_cloud_providers_config,
- overrides,
- DEFAULT)
- def test_apply_cloud_providers_config_extend(self):
- '''
- Tests the successful extension of a cloud provider
- '''
- overrides = {'my-production-envs':
- [{'extends': 'my-dev-envs:ec2',
- 'location': 'us-east-1',
- 'user': 'ec2-user@mycorp.com'
- }],
- 'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com',
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2'
- },
- {'apikey': 'abcdefghijklmnopqrstuvwxyz',
- 'password': 'supersecret',
- 'driver': 'linode'
- }],
- 'conf_file': PATH}
- ret = {'my-production-envs':
- {'ec2':
- {'profiles': {},
- 'location': 'us-east-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2',
- 'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'ec2-user@mycorp.com'}},
- 'my-dev-envs':
- {'linode':
- {'apikey': 'abcdefghijklmnopqrstuvwxyz',
- 'password': 'supersecret',
- 'profiles': {},
- 'driver': 'linode'},
- 'ec2':
- {'profiles': {},
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2',
- 'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com'}}}
- self.assertEqual(ret,
- sconfig.apply_cloud_providers_config(
- overrides,
- defaults=DEFAULT))
- def test_apply_cloud_providers_config_extend_multiple(self):
- '''
- Tests the successful extension of two cloud providers
- '''
- overrides = {'my-production-envs':
- [{'extends': 'my-dev-envs:ec2',
- 'location': 'us-east-1',
- 'user': 'ec2-user@mycorp.com'},
- {'password': 'new-password',
- 'extends': 'my-dev-envs:linode',
- 'location': 'Salt Lake City'
- }],
- 'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com',
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2'},
- {'apikey': 'abcdefghijklmnopqrstuvwxyz',
- 'password': 'supersecret',
- 'driver': 'linode'}],
- 'conf_file': PATH}
- ret = {'my-production-envs':
- {'linode':
- {'apikey': 'abcdefghijklmnopqrstuvwxyz',
- 'profiles': {},
- 'location': 'Salt Lake City',
- 'driver': 'linode',
- 'password': 'new-password'},
- 'ec2':
- {'user': 'ec2-user@mycorp.com',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2',
- 'id': 'ABCDEFGHIJKLMNOP',
- 'profiles': {},
- 'location': 'us-east-1'}},
- 'my-dev-envs':
- {'linode':
- {'apikey': 'abcdefghijklmnopqrstuvwxyz',
- 'password': 'supersecret',
- 'profiles': {},
- 'driver': 'linode'},
- 'ec2':
- {'profiles': {},
- 'user': 'user@mycorp.com',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2',
- 'id': 'ABCDEFGHIJKLMNOP',
- 'location': 'ap-southeast-1'}}}
- self.assertEqual(ret, sconfig.apply_cloud_providers_config(
- overrides,
- defaults=DEFAULT))
- def test_apply_cloud_providers_config_extends_bad_alias(self):
- '''
- Tests when the extension contains an alias not found in providers list
- '''
- overrides = {'my-production-envs':
- [{'extends': 'test-alias:ec2',
- 'location': 'us-east-1',
- 'user': 'ec2-user@mycorp.com'}],
- 'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com',
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2'}],
- 'conf_file': PATH}
- self.assertRaises(SaltCloudConfigError,
- sconfig.apply_cloud_providers_config,
- overrides,
- DEFAULT)
- def test_apply_cloud_providers_config_extends_bad_provider(self):
- '''
- Tests when the extension contains a provider not found in providers list
- '''
- overrides = {'my-production-envs':
- [{'extends': 'my-dev-envs:linode',
- 'location': 'us-east-1',
- 'user': 'ec2-user@mycorp.com'}],
- 'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com',
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'ec2'}],
- 'conf_file': PATH}
- self.assertRaises(SaltCloudConfigError,
- sconfig.apply_cloud_providers_config,
- overrides,
- DEFAULT)
- def test_apply_cloud_providers_config_extends_no_provider(self):
- '''
- Tests when no provider is supplied in the extends statement
- '''
- overrides = {'my-production-envs':
- [{'extends': 'my-dev-envs',
- 'location': 'us-east-1',
- 'user': 'ec2-user@mycorp.com'}],
- 'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com',
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'linode'}],
- 'conf_file': PATH}
- self.assertRaises(SaltCloudConfigError,
- sconfig.apply_cloud_providers_config,
- overrides,
- DEFAULT)
- def test_apply_cloud_providers_extends_not_in_providers(self):
- '''
- Tests when extends is not in the list of providers
- '''
- overrides = {'my-production-envs':
- [{'extends': 'my-dev-envs ec2',
- 'location': 'us-east-1',
- 'user': 'ec2-user@mycorp.com'}],
- 'my-dev-envs':
- [{'id': 'ABCDEFGHIJKLMNOP',
- 'user': 'user@mycorp.com',
- 'location': 'ap-southeast-1',
- 'key': 'supersecretkeysupersecretkey',
- 'driver': 'linode'}],
- 'conf_file': PATH}
- self.assertRaises(SaltCloudConfigError,
- sconfig.apply_cloud_providers_config,
- overrides,
- DEFAULT)
- # is_provider_configured tests
- def test_is_provider_configured_no_alias(self):
- '''
- Tests when provider alias is not in opts
- '''
- opts = {'providers': 'test'}
- provider = 'foo:bar'
- self.assertFalse(sconfig.is_provider_configured(opts, provider))
- def test_is_provider_configured_no_driver(self):
- '''
- Tests when provider driver is not in opts
- '''
- opts = {'providers': {'foo': 'baz'}}
- provider = 'foo:bar'
- self.assertFalse(sconfig.is_provider_configured(opts, provider))
- def test_is_provider_configured_key_is_none(self):
- '''
- Tests when a required configuration key is not set
- '''
- opts = {'providers': {'foo': {'bar': {'api_key': None}}}}
- provider = 'foo:bar'
- self.assertFalse(
- sconfig.is_provider_configured(opts,
- provider,
- required_keys=('api_key',)))
- def test_is_provider_configured_success(self):
- '''
- Tests successful cloud provider configuration
- '''
- opts = {'providers': {'foo': {'bar': {'api_key': 'baz'}}}}
- provider = 'foo:bar'
- ret = {'api_key': 'baz'}
- self.assertEqual(
- sconfig.is_provider_configured(opts,
- provider,
- required_keys=('api_key',)), ret)
- def test_is_provider_configured_multiple_driver_not_provider(self):
- '''
- Tests when the drive is not the same as the provider when
- searching through multiple providers
- '''
- opts = {'providers': {'foo': {'bar': {'api_key': 'baz'}}}}
- provider = 'foo'
- self.assertFalse(sconfig.is_provider_configured(opts, provider))
- def test_is_provider_configured_multiple_key_is_none(self):
- '''
- Tests when a required configuration key is not set when
- searching through multiple providers
- '''
- opts = {'providers': {'foo': {'bar': {'api_key': None}}}}
- provider = 'bar'
- self.assertFalse(
- sconfig.is_provider_configured(opts,
- provider,
- required_keys=('api_key',)))
- def test_is_provider_configured_multiple_success(self):
- '''
- Tests successful cloud provider configuration when searching
- through multiple providers
- '''
- opts = {'providers': {'foo': {'bar': {'api_key': 'baz'}}}}
- provider = 'bar'
- ret = {'api_key': 'baz'}
- self.assertEqual(
- sconfig.is_provider_configured(opts,
- provider,
- required_keys=('api_key',)), ret)
- # other cloud configuration tests
- @skipIf(
- salt.utils.platform.is_windows(),
- 'You can\'t set an environment dynamically in Windows')
- @with_tempdir()
- def test_load_cloud_config_from_environ_var(self, tempdir):
- original_environ = os.environ.copy()
- try:
- env_root_dir = os.path.join(tempdir, 'foo', 'env')
- os.makedirs(env_root_dir)
- env_fpath = os.path.join(env_root_dir, 'config-env')
- with salt.utils.files.fopen(env_fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(env_root_dir, env_fpath)
- )
- os.environ['SALT_CLOUD_CONFIG'] = env_fpath
- # Should load from env variable, not the default configuration file
- config = sconfig.cloud_config('/etc/salt/cloud')
- self.assertEqual(config['log_file'], env_fpath)
- os.environ.clear()
- os.environ.update(original_environ)
- root_dir = os.path.join(tempdir, 'foo', 'bar')
- os.makedirs(root_dir)
- fpath = os.path.join(root_dir, 'config')
- with salt.utils.files.fopen(fpath, 'w') as fp_:
- fp_.write(
- 'root_dir: {0}\n'
- 'log_file: {1}\n'.format(root_dir, fpath)
- )
- # Let's set the environment variable, yet, since the configuration
- # file path is not the default one, i.e., the user has passed an
- # alternative configuration file form the CLI parser, the
- # environment variable will be ignored.
- os.environ['SALT_CLOUD_CONFIG'] = env_fpath
- config = sconfig.cloud_config(fpath)
- self.assertEqual(config['log_file'], fpath)
- finally:
- # Reset the environ
- os.environ.clear()
- os.environ.update(original_environ)
- @with_tempdir()
- def test_deploy_search_path_as_string(self, temp_conf_dir):
- config_file_path = os.path.join(temp_conf_dir, 'cloud')
- deploy_dir_path = os.path.join(temp_conf_dir, 'test-deploy.d')
- for directory in (temp_conf_dir, deploy_dir_path):
- if not os.path.isdir(directory):
- os.makedirs(directory)
- default_config = sconfig.cloud_config(config_file_path)
- default_config['deploy_scripts_search_path'] = deploy_dir_path
- with salt.utils.files.fopen(config_file_path, 'w') as cfd:
- salt.utils.yaml.safe_dump(default_config, cfd, default_flow_style=False)
- default_config = sconfig.cloud_config(config_file_path)
- # Our custom deploy scripts path was correctly added to the list
- self.assertIn(
- deploy_dir_path,
- default_config['deploy_scripts_search_path']
- )
- # And it's even the first occurrence as it should
- self.assertEqual(
- deploy_dir_path,
- default_config['deploy_scripts_search_path'][0]
- )
- def test_includes_load(self):
- '''
- Tests that cloud.{providers,profiles}.d directories are loaded, even if not
- directly passed in through path
- '''
- config = sconfig.cloud_config(self.get_config_file_path('cloud'))
- self.assertIn('ec2-config', config['providers'])
- self.assertIn('ec2-test', config['profiles'])
- # <---- Salt Cloud Configuration Tests ---------------------------------------------
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_include_config_without_errors(self):
- '''
- Tests that include_config function returns valid configuration
- '''
- include_file = 'minion.d/my.conf'
- config_path = '/etc/salt/minion'
- config_opts = {'id': 'myminion.example.com'}
- with patch('glob.glob', MagicMock(return_value=include_file)):
- with patch('salt.config._read_conf_file', MagicMock(return_value=config_opts)):
- configuration = sconfig.include_config(include_file, config_path, verbose=False)
- self.assertEqual(config_opts, configuration)
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_include_config_with_errors(self):
- '''
- Tests that include_config function returns valid configuration even on errors
- '''
- include_file = 'minion.d/my.conf'
- config_path = '/etc/salt/minion'
- config_opts = {}
- with patch('glob.glob', MagicMock(return_value=include_file)):
- with patch('salt.config._read_conf_file', _salt_configuration_error):
- configuration = sconfig.include_config(include_file, config_path, verbose=False)
- self.assertEqual(config_opts, configuration)
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_include_config_with_errors_exit(self):
- '''
- Tests that include_config exits on errors
- '''
- include_file = 'minion.d/my.conf'
- config_path = '/etc/salt/minion'
- with patch('glob.glob', MagicMock(return_value=include_file)):
- with patch('salt.config._read_conf_file', _salt_configuration_error):
- with self.assertRaises(SystemExit):
- sconfig.include_config(include_file,
- config_path,
- verbose=False,
- exit_on_config_errors=True)
- @staticmethod
- def _get_defaults(**kwargs):
- ret = {
- 'saltenv': kwargs.pop('saltenv', None),
- 'id': 'test',
- 'cachedir': '/A',
- 'sock_dir': '/B',
- 'root_dir': '/C',
- 'fileserver_backend': 'roots',
- 'open_mode': False,
- 'auto_accept': False,
- 'file_roots': {},
- 'pillar_roots': {},
- 'file_ignore_glob': [],
- 'file_ignore_regex': [],
- 'worker_threads': 5,
- 'hash_type': 'sha256',
- 'log_file': 'foo.log',
- }
- ret.update(kwargs)
- return ret
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- def test_apply_config(self):
- '''
- Ensure that the environment and saltenv options work properly
- '''
- with patch.object(sconfig, '_adjust_log_file_override', Mock()), \
- patch.object(sconfig, '_update_ssl_config', Mock()), \
- patch.object(sconfig, '_update_discovery_config', Mock()):
- # MASTER CONFIG
- # Ensure that environment overrides saltenv when saltenv not
- # explicitly passed.
- defaults = self._get_defaults(environment='foo')
- ret = sconfig.apply_master_config(defaults=defaults)
- self.assertEqual(ret['environment'], 'foo')
- self.assertEqual(ret['saltenv'], 'foo')
- # Ensure that environment overrides saltenv when saltenv not
- # explicitly passed.
- defaults = self._get_defaults(environment='foo', saltenv='bar')
- ret = sconfig.apply_master_config(defaults=defaults)
- self.assertEqual(ret['environment'], 'bar')
- self.assertEqual(ret['saltenv'], 'bar')
- # If environment was not explicitly set, it should not be in the
- # opts at all.
- defaults = self._get_defaults()
- ret = sconfig.apply_master_config(defaults=defaults)
- self.assertNotIn('environment', ret)
- self.assertEqual(ret['saltenv'], None)
- # Same test as above but with saltenv explicitly set
- defaults = self._get_defaults(saltenv='foo')
- ret = sconfig.apply_master_config(defaults=defaults)
- self.assertNotIn('environment', ret)
- self.assertEqual(ret['saltenv'], 'foo')
- # MINION CONFIG
- # Ensure that environment overrides saltenv when saltenv not
- # explicitly passed.
- defaults = self._get_defaults(environment='foo')
- ret = sconfig.apply_minion_config(defaults=defaults)
- self.assertEqual(ret['environment'], 'foo')
- self.assertEqual(ret['saltenv'], 'foo')
- # Ensure that environment overrides saltenv when saltenv not
- # explicitly passed.
- defaults = self._get_defaults(environment='foo', saltenv='bar')
- ret = sconfig.apply_minion_config(defaults=defaults)
- self.assertEqual(ret['environment'], 'bar')
- self.assertEqual(ret['saltenv'], 'bar')
- # If environment was not explicitly set, it should not be in the
- # opts at all.
- defaults = self._get_defaults()
- ret = sconfig.apply_minion_config(defaults=defaults)
- self.assertNotIn('environment', ret)
- self.assertEqual(ret['saltenv'], None)
- # Same test as above but with saltenv explicitly set
- defaults = self._get_defaults(saltenv='foo')
- ret = sconfig.apply_minion_config(defaults=defaults)
- self.assertNotIn('environment', ret)
- self.assertEqual(ret['saltenv'], 'foo')
- @skipIf(NO_MOCK, NO_MOCK_REASON)
- class APIConfigTestCase(TestCase):
- '''
- TestCase for the api_config function in salt.config.__init__.py
- '''
- def setUp(self):
- # Copy DEFAULT_API_OPTS to restore after the test
- self.default_api_opts = salt.config.DEFAULT_API_OPTS.copy()
- def tearDown(self):
- # Reset DEFAULT_API_OPTS settings as to not interfere with other unit tests
- salt.config.DEFAULT_API_OPTS = self.default_api_opts
- def test_api_config_log_file_values(self):
- '''
- Tests the opts value of the 'log_file' after running through the
- various default dict updates. 'log_file' should be updated to match
- the DEFAULT_API_OPTS 'api_logfile' value.
- '''
- with patch('salt.config.client_config', MagicMock(return_value=MOCK_MASTER_DEFAULT_OPTS)):
- expected = '{0}/var/log/salt/api'.format(
- salt.syspaths.ROOT_DIR if salt.syspaths.ROOT_DIR != '/' else '')
- if salt.utils.platform.is_windows():
- expected = '{0}\\var\\log\\salt\\api'.format(
- salt.syspaths.ROOT_DIR)
- ret = salt.config.api_config('/some/fake/path')
- self.assertEqual(ret['log_file'], expected)
- def test_api_config_pidfile_values(self):
- '''
- Tests the opts value of the 'pidfile' after running through the
- various default dict updates. 'pidfile' should be updated to match
- the DEFAULT_API_OPTS 'api_pidfile' value.
- '''
- with patch('salt.config.client_config', MagicMock(return_value=MOCK_MASTER_DEFAULT_OPTS)):
- expected = '{0}/var/run/salt-api.pid'.format(
- salt.syspaths.ROOT_DIR if salt.syspaths.ROOT_DIR != '/' else '')
- if salt.utils.platform.is_windows():
- expected = '{0}\\var\\run\\salt-api.pid'.format(
- salt.syspaths.ROOT_DIR)
- ret = salt.config.api_config('/some/fake/path')
- self.assertEqual(ret['pidfile'], expected)
- @destructiveTest
- def test_master_config_file_overrides_defaults(self):
- '''
- Tests the opts value of the api config values after running through the
- various default dict updates that should be overridden by settings in
- the user's master config file.
- '''
- foo_dir = '/foo/bar/baz'
- hello_dir = '/hello/world'
- if salt.utils.platform.is_windows():
- foo_dir = 'c:\\foo\\bar\\baz'
- hello_dir = 'c:\\hello\\world'
- mock_master_config = {
- 'api_pidfile': foo_dir,
- 'api_logfile': hello_dir,
- 'rest_timeout': 5
- }
- mock_master_config.update(MOCK_MASTER_DEFAULT_OPTS.copy())
- with patch('salt.config.client_config',
- MagicMock(return_value=mock_master_config)):
- ret = salt.config.api_config('/some/fake/path')
- self.assertEqual(ret['rest_timeout'], 5)
- self.assertEqual(ret['api_pidfile'], foo_dir)
- self.assertEqual(ret['pidfile'], foo_dir)
- self.assertEqual(ret['api_logfile'], hello_dir)
- self.assertEqual(ret['log_file'], hello_dir)
- @destructiveTest
- def test_api_config_prepend_root_dirs_return(self):
- '''
- Tests the opts value of the api_logfile, log_file, api_pidfile, and pidfile
- when a custom root directory is used. This ensures that each of these
- values is present in the list of opts keys that should have the root_dir
- prepended when the api_config function returns the opts dictionary.
- '''
- mock_log = '/mock/root/var/log/salt/api'
- mock_pid = '/mock/root/var/run/salt-api.pid'
- mock_master_config = MOCK_MASTER_DEFAULT_OPTS.copy()
- mock_master_config['root_dir'] = '/mock/root/'
- if salt.utils.platform.is_windows():
- mock_log = 'c:\\mock\\root\\var\\log\\salt\\api'
- mock_pid = 'c:\\mock\\root\\var\\run\\salt-api.pid'
- mock_master_config['root_dir'] = 'c:\\mock\\root'
- with patch('salt.config.client_config',
- MagicMock(return_value=mock_master_config)):
- ret = salt.config.api_config('/some/fake/path')
- self.assertEqual(ret['api_logfile'], mock_log)
- self.assertEqual(ret['log_file'], mock_log)
- self.assertEqual(ret['api_pidfile'], mock_pid)
- self.assertEqual(ret['pidfile'], mock_pid)
|