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-06-25 07:57:26 +00:00
|
|
|
:copyright: © 2012-2013 by the SaltStack Team, see AUTHORS for more details
|
2012-08-04 18:58:32 +00:00
|
|
|
:license: Apache 2.0, see LICENSE for more details.
|
2013-09-16 16:24:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
tests.integration.shell.syndic
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
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
|
|
|
|
import os
|
|
|
|
import yaml
|
|
|
|
import signal
|
|
|
|
import shutil
|
|
|
|
|
2013-06-27 12:31:42 +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:31:42 +00:00
|
|
|
import integration
|
2012-08-04 18:58:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SyndicTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|
|
|
|
|
|
|
_call_binary_ = 'salt-syndic'
|
|
|
|
|
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)
|
|
|
|
|
2014-01-20 15:50:51 +00:00
|
|
|
for fname in ('master', 'minion'):
|
|
|
|
pid_path = os.path.join(config_dir, '{0}.pid'.format(fname))
|
|
|
|
config = yaml.load(
|
|
|
|
open(self.get_config_file_path(fname), 'r').read()
|
|
|
|
)
|
|
|
|
config['log_file'] = config['syndic_log_file'] = 'file:///tmp/log/LOG_LOCAL3'
|
|
|
|
config['root_dir'] = config_dir
|
|
|
|
if 'ret_port' in config:
|
|
|
|
config['ret_port'] = int(config['ret_port']) + 10
|
|
|
|
config['publish_port'] = int(config['publish_port']) + 10
|
|
|
|
|
|
|
|
open(os.path.join(config_dir, fname), 'w').write(
|
|
|
|
yaml.dump(config, default_flow_style=False)
|
|
|
|
)
|
|
|
|
|
|
|
|
ret = self.run_script(
|
2013-10-15 21:09:37 +00:00
|
|
|
self._call_binary_,
|
2014-01-20 15:50:51 +00:00
|
|
|
'--config-dir={0} --pid-file={1} -l debug'.format(
|
2013-10-15 21:09:37 +00:00
|
|
|
config_dir,
|
|
|
|
pid_path
|
|
|
|
),
|
|
|
|
timeout=5,
|
2014-01-20 15:50:51 +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):
|
2013-10-16 22:26:31 +00:00
|
|
|
try:
|
|
|
|
os.kill(int(open(pid_path).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-20 15:50:51 +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(SyndicTest)
|