2012-08-04 18:58:32 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2012-12-11 10:23:37 +00:00
|
|
|
'''
|
|
|
|
:codeauthor: :email:`Pedro Algarvio (pedro@algarvio.me)`
|
2013-09-16 16:24:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
tests.integration.shell.master
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
2012-12-11 10:23:37 +00:00
|
|
|
'''
|
2012-08-04 18:58:32 +00:00
|
|
|
|
2013-10-15 21:09:37 +00:00
|
|
|
# Import python libs
|
2014-11-21 19:05:13 +00:00
|
|
|
from __future__ import absolute_import
|
2013-10-15 21:09:37 +00:00
|
|
|
import os
|
|
|
|
import yaml
|
|
|
|
import signal
|
|
|
|
import shutil
|
|
|
|
|
2013-06-27 12:25:14 +00:00
|
|
|
# Import Salt Testing libs
|
|
|
|
from salttesting.helpers import ensure_in_syspath
|
|
|
|
ensure_in_syspath('../../')
|
2012-08-04 18:58:32 +00:00
|
|
|
|
|
|
|
# Import salt libs
|
2013-06-27 12:25:14 +00:00
|
|
|
import integration
|
2014-11-26 17:54:29 +00:00
|
|
|
import salt.utils
|
2012-08-04 18:58:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MasterTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|
|
|
|
|
|
|
_call_binary_ = 'salt-master'
|
|
|
|
|
2013-10-15 21:09:37 +00:00
|
|
|
def test_issue_7754(self):
|
|
|
|
old_cwd = os.getcwd()
|
|
|
|
config_dir = os.path.join(integration.TMP, 'issue-7754')
|
|
|
|
if not os.path.isdir(config_dir):
|
|
|
|
os.makedirs(config_dir)
|
|
|
|
|
|
|
|
os.chdir(config_dir)
|
|
|
|
|
|
|
|
config_file_name = 'master'
|
|
|
|
pid_path = os.path.join(config_dir, '{0}.pid'.format(config_file_name))
|
2014-11-26 17:54:29 +00:00
|
|
|
with salt.utils.fopen(self.get_config_file_path(config_file_name), 'r') as fhr:
|
|
|
|
config = yaml.load(fhr.read())
|
|
|
|
config['root_dir'] = config_dir
|
|
|
|
config['log_file'] = 'file:///tmp/log/LOG_LOCAL3'
|
|
|
|
config['ret_port'] = config['ret_port'] + 10
|
|
|
|
config['publish_port'] = config['publish_port'] + 10
|
|
|
|
|
|
|
|
with salt.utils.fopen(os.path.join(config_dir, config_file_name), 'w') as fhw:
|
|
|
|
fhw.write(
|
|
|
|
yaml.dump(config, default_flow_style=False)
|
|
|
|
)
|
2013-10-15 21:09:37 +00:00
|
|
|
|
2014-01-19 07:50:48 +00:00
|
|
|
ret = self.run_script(
|
2013-10-15 21:09:37 +00:00
|
|
|
self._call_binary_,
|
|
|
|
'--config-dir {0} --pid-file {1} -l debug'.format(
|
|
|
|
config_dir,
|
|
|
|
pid_path
|
|
|
|
),
|
|
|
|
timeout=5,
|
2014-01-19 07:50:48 +00:00
|
|
|
catch_stderr=True,
|
|
|
|
with_retcode=True
|
2013-10-15 21:09:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
# Now kill it if still running
|
|
|
|
if os.path.exists(pid_path):
|
2014-11-26 23:35:31 +00:00
|
|
|
with salt.utils.fopen(pid_path) as fhr:
|
|
|
|
try:
|
|
|
|
os.kill(int(fhr.read()), signal.SIGKILL)
|
|
|
|
except OSError:
|
|
|
|
pass
|
2013-10-15 21:09:37 +00:00
|
|
|
try:
|
|
|
|
self.assertFalse(os.path.isdir(os.path.join(config_dir, 'file:')))
|
2014-01-19 07:50:48 +00:00
|
|
|
self.assertIn(
|
|
|
|
'Failed to setup the Syslog logging handler', '\n'.join(ret[1])
|
|
|
|
)
|
|
|
|
self.assertEqual(ret[2], 2)
|
2013-10-15 21:09:37 +00:00
|
|
|
finally:
|
|
|
|
os.chdir(old_cwd)
|
|
|
|
if os.path.isdir(config_dir):
|
|
|
|
shutil.rmtree(config_dir)
|
|
|
|
|
2012-12-11 10:23:37 +00:00
|
|
|
|
2013-06-24 22:53:59 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
from integration import run_tests
|
|
|
|
run_tests(MasterTest)
|