mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 00:55:19 +00:00
96 lines
2.7 KiB
Python
96 lines
2.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
'''
|
|
Tests for the salt-run command
|
|
'''
|
|
|
|
# Import python libs
|
|
import os
|
|
import yaml
|
|
import shutil
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
|
|
|
|
class RunTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|
'''
|
|
Test the salt-run command
|
|
'''
|
|
|
|
_call_binary_ = 'salt-run'
|
|
|
|
def test_in_docs(self):
|
|
'''
|
|
test the salt-run docs system
|
|
'''
|
|
data = self.run_run('-d')
|
|
data = '\n'.join(data)
|
|
self.assertIn('jobs.active:', data)
|
|
self.assertIn('jobs.list_jobs:', data)
|
|
self.assertIn('jobs.lookup_jid:', data)
|
|
self.assertIn('manage.down:', data)
|
|
self.assertIn('manage.up:', data)
|
|
self.assertIn('network.wol:', data)
|
|
self.assertIn('network.wollist:', data)
|
|
|
|
def test_notin_docs(self):
|
|
'''
|
|
Verify that hidden methods are not in run docs
|
|
'''
|
|
data = self.run_run('-d')
|
|
data = '\n'.join(data)
|
|
self.assertNotIn('jobs.SaltException:', data)
|
|
|
|
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'
|
|
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)
|
|
)
|
|
ret = self.run_script(
|
|
self._call_binary_,
|
|
'--config-dir {0} -d'.format(
|
|
config_dir
|
|
),
|
|
timeout=15,
|
|
catch_stderr=True,
|
|
with_retcode=True
|
|
)
|
|
try:
|
|
self.assertIn('doc.runner:', ret[0])
|
|
self.assertFalse(os.path.isdir(os.path.join(config_dir, 'file:')))
|
|
except AssertionError:
|
|
if os.path.exists('/dev/log') and ret[2] != 2:
|
|
# If there's a syslog device and the exit code was not 2,
|
|
# 'No such file or directory', raise the error
|
|
raise
|
|
self.assertIn(
|
|
'Failed to setup the Syslog logging handler',
|
|
'\n'.join(ret[1])
|
|
)
|
|
self.assertEqual(ret[2], 2)
|
|
finally:
|
|
os.chdir(old_cwd)
|
|
if os.path.isdir(config_dir):
|
|
shutil.rmtree(config_dir)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(RunTest)
|