mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
237 lines
7.4 KiB
Python
237 lines
7.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Pedro Algarvio (pedro@algarvio.me)`
|
|
:copyright: © 2012-2013 by the SaltStack Team, see AUTHORS for more details
|
|
:license: Apache 2.0, see LICENSE for more details.
|
|
|
|
|
|
tests.integration.shell.call
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
'''
|
|
|
|
# Import python libs
|
|
import os
|
|
import sys
|
|
import shutil
|
|
import yaml
|
|
from datetime import datetime
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting import skipIf
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
|
|
|
|
class CallTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|
|
|
_call_binary_ = 'salt-call'
|
|
|
|
def test_default_output(self):
|
|
out = self.run_call('-l quiet test.fib 3')
|
|
|
|
expect = ['local:',
|
|
' |_',
|
|
' - 0',
|
|
' - 1',
|
|
' - 1',
|
|
' - 2']
|
|
self.assertEqual(expect, out[:-1])
|
|
|
|
def test_text_output(self):
|
|
out = self.run_call('-l quiet --out txt test.fib 3')
|
|
|
|
expect = [
|
|
'local: ([0, 1, 1, 2]'
|
|
]
|
|
|
|
self.assertEqual(''.join(expect), ''.join(out).rsplit(",", 1)[0])
|
|
|
|
@skipIf(sys.platform.startswith('win'), 'This test does not apply on Win')
|
|
def test_user_delete_kw_output(self):
|
|
ret = self.run_call('-l quiet -d user.delete')
|
|
self.assertIn(
|
|
'salt \'*\' user.delete name remove=True force=True',
|
|
''.join(ret)
|
|
)
|
|
|
|
def test_issue_6973_state_highstate_exit_code(self):
|
|
'''
|
|
If there is no tops/master_tops or state file matches
|
|
for this minion, salt-call should exit non-zero if invoked with
|
|
option --retcode-passthrough
|
|
'''
|
|
src = os.path.join(integration.FILES, 'file/base/top.sls')
|
|
dst = os.path.join(integration.FILES, 'file/base/top.sls.bak')
|
|
shutil.move(src, dst)
|
|
expected_comment = 'No Top file or external nodes data matches found'
|
|
try:
|
|
stdout, retcode = self.run_call(
|
|
'-l quiet --retcode-passthrough state.highstate',
|
|
with_retcode=True
|
|
)
|
|
finally:
|
|
shutil.move(dst, src)
|
|
self.assertIn(expected_comment, ''.join(stdout))
|
|
self.assertNotEqual(0, retcode)
|
|
|
|
@skipIf(sys.platform.startswith('win'), 'This test does not apply on Win')
|
|
def test_issue_2731_masterless(self):
|
|
config_dir = '/tmp/salttest'
|
|
minion_config_file = os.path.join(config_dir, 'minion')
|
|
this_minion_key = os.path.join(
|
|
config_dir, 'pki', 'minions', 'minion_test_issue_2731'
|
|
)
|
|
|
|
minion_config = {
|
|
'id': 'minion_test_issue_2731',
|
|
'master': 'localhost',
|
|
'master_port': 64506,
|
|
'root_dir': '/tmp/salttest',
|
|
'pki_dir': 'pki',
|
|
'cachedir': 'cachedir',
|
|
'sock_dir': 'minion_sock',
|
|
'open_mode': True,
|
|
'log_file': '/tmp/salttest/minion_test_issue_2731',
|
|
'log_level': 'quiet',
|
|
'log_level_logfile': 'info'
|
|
}
|
|
|
|
# Remove existing logfile
|
|
if os.path.isfile('/tmp/salttest/minion_test_issue_2731'):
|
|
os.unlink('/tmp/salttest/minion_test_issue_2731')
|
|
|
|
start = datetime.now()
|
|
# Let's first test with a master running
|
|
open(minion_config_file, 'w').write(
|
|
yaml.dump(minion_config, default_flow_style=False)
|
|
)
|
|
ret = self.run_script(
|
|
'salt-call',
|
|
'--config-dir {0} cmd.run "echo foo"'.format(
|
|
config_dir
|
|
)
|
|
)
|
|
try:
|
|
self.assertIn('local:', ret)
|
|
except AssertionError:
|
|
if os.path.isfile(minion_config_file):
|
|
os.unlink(minion_config_file)
|
|
# Let's remove our key from the master
|
|
if os.path.isfile(this_minion_key):
|
|
os.unlink(this_minion_key)
|
|
|
|
raise
|
|
|
|
# Calculate the required timeout, since next will fail.
|
|
# I needed this because after many attempts, I was unable to catch:
|
|
# WARNING: Master hostname: salt not found. Retrying in 30 seconds
|
|
ellapsed = datetime.now() - start
|
|
timeout = ellapsed.seconds + 3
|
|
|
|
# Now let's remove the master configuration
|
|
minion_config.pop('master')
|
|
minion_config.pop('master_port')
|
|
open(minion_config_file, 'w').write(
|
|
yaml.dump(minion_config, default_flow_style=False)
|
|
)
|
|
|
|
out = self.run_script(
|
|
'salt-call',
|
|
'--config-dir {0} cmd.run "echo foo"'.format(
|
|
config_dir
|
|
),
|
|
timeout=timeout,
|
|
)
|
|
|
|
try:
|
|
self.assertIn(
|
|
'Process took more than {0} seconds to complete. '
|
|
'Process Killed!'.format(timeout),
|
|
out
|
|
)
|
|
except AssertionError:
|
|
if os.path.isfile(minion_config_file):
|
|
os.unlink(minion_config_file)
|
|
# Let's remove our key from the master
|
|
if os.path.isfile(this_minion_key):
|
|
os.unlink(this_minion_key)
|
|
|
|
raise
|
|
|
|
# Should work with --local
|
|
ret = self.run_script(
|
|
'salt-call',
|
|
'--config-dir {0} --local cmd.run "echo foo"'.format(
|
|
config_dir
|
|
),
|
|
timeout=15
|
|
)
|
|
try:
|
|
self.assertIn('local:', ret)
|
|
except AssertionError:
|
|
if os.path.isfile(minion_config_file):
|
|
os.unlink(minion_config_file)
|
|
# Let's remove our key from the master
|
|
if os.path.isfile(this_minion_key):
|
|
os.unlink(this_minion_key)
|
|
raise
|
|
|
|
# Should work with local file client
|
|
minion_config['file_client'] = 'local'
|
|
open(minion_config_file, 'w').write(
|
|
yaml.dump(minion_config, default_flow_style=False)
|
|
)
|
|
ret = self.run_script(
|
|
'salt-call',
|
|
'--config-dir {0} cmd.run "echo foo"'.format(
|
|
config_dir
|
|
),
|
|
timeout=15
|
|
)
|
|
try:
|
|
self.assertIn('local:', ret)
|
|
finally:
|
|
if os.path.isfile(minion_config_file):
|
|
os.unlink(minion_config_file)
|
|
# Let's remove our key from the master
|
|
if os.path.isfile(this_minion_key):
|
|
os.unlink(this_minion_key)
|
|
|
|
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)
|
|
|
|
minion_config = yaml.load(
|
|
open(self.get_config_file_path('minion'), 'r').read()
|
|
)
|
|
minion_config['log_file'] = 'file:///dev/log/LOG_LOCAL3'
|
|
open(os.path.join(config_dir, 'minion'), 'w').write(
|
|
yaml.dump(minion_config, default_flow_style=False)
|
|
)
|
|
ret = self.run_script(
|
|
'salt-call',
|
|
'--config-dir {0} cmd.run "echo foo"'.format(
|
|
config_dir
|
|
),
|
|
timeout=15
|
|
)
|
|
try:
|
|
self.assertIn('local:', ret)
|
|
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)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(CallTest)
|