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.minion
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
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:25:43 +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:43 +00:00
|
|
|
import integration
|
2012-08-04 18:58:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MinionTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|
|
|
|
|
|
|
_call_binary_ = 'salt-minion'
|
|
|
|
|
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 = 'minion'
|
|
|
|
pid_path = os.path.join(config_dir, '{0}.pid'.format(config_file_name))
|
|
|
|
config = yaml.load(
|
|
|
|
open(self.get_config_file_path(config_file_name), 'r').read()
|
|
|
|
)
|
|
|
|
config['log_file'] = 'file:///dev/log/LOG_LOCAL3'
|
|
|
|
|
|
|
|
open(os.path.join(config_dir, config_file_name), 'w').write(
|
|
|
|
yaml.dump(config, default_flow_style=False)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.run_script(
|
|
|
|
self._call_binary_,
|
|
|
|
'--config-dir {0} --pid-file {1} -l debug'.format(
|
|
|
|
config_dir,
|
|
|
|
pid_path
|
|
|
|
),
|
|
|
|
timeout=5,
|
|
|
|
catch_stderr=True
|
|
|
|
)
|
|
|
|
|
|
|
|
# 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:')))
|
|
|
|
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(MinionTest)
|