mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
80dcb44a0d
Conflicts: - salt/utils/mac_utils.py - tests/unit/config/test_config.py - tests/unit/loader/test_globals.py - tests/unit/ssh/test_ssh.py - tests/unit/templates/test_jinja.py - tests/unit/utils/vmware/test_host.py - tests/unit/utils/vmware/test_license.py
153 lines
5.1 KiB
Python
153 lines
5.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: :email:`Daniel Wallace <dwallace@saltstack.com`
|
|
'''
|
|
|
|
# Import python libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
import os
|
|
import shutil
|
|
import tempfile
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.unit import skipIf, TestCase
|
|
from tests.support.case import ShellCase
|
|
from tests.support.mock import NO_MOCK, NO_MOCK_REASON, patch, MagicMock
|
|
from tests.support.paths import TMP
|
|
|
|
# Import Salt libs
|
|
import salt.config
|
|
import salt.roster
|
|
import salt.utils.files
|
|
import salt.utils.path
|
|
import salt.utils.thin
|
|
import salt.utils.yaml
|
|
|
|
from salt.client import ssh
|
|
|
|
ROSTER = '''
|
|
localhost:
|
|
host: 127.0.0.1
|
|
port: 2827
|
|
self:
|
|
host: 0.0.0.0
|
|
port: 42
|
|
'''
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
@skipIf(not salt.utils.path.which('ssh'), "No ssh binary found in path")
|
|
class SSHPasswordTests(ShellCase):
|
|
def test_password_failure(self):
|
|
'''
|
|
Check password failures when trying to deploy keys
|
|
'''
|
|
opts = salt.config.client_config(self.get_config_file_path('master'))
|
|
opts['list_hosts'] = False
|
|
opts['argv'] = ['test.ping']
|
|
opts['selected_target_option'] = 'glob'
|
|
opts['tgt'] = 'localhost'
|
|
opts['arg'] = []
|
|
roster = os.path.join(self.config_dir, 'roster')
|
|
handle_ssh_ret = [
|
|
{'localhost': {'retcode': 255, 'stderr': u'Permission denied (publickey).\r\n', 'stdout': ''}},
|
|
]
|
|
expected = {'localhost': 'Permission denied (publickey)'}
|
|
display_output = MagicMock()
|
|
with patch('salt.roster.get_roster_file', MagicMock(return_value=roster)), \
|
|
patch('salt.client.ssh.SSH.handle_ssh', MagicMock(return_value=handle_ssh_ret)), \
|
|
patch('salt.client.ssh.SSH.key_deploy', MagicMock(return_value=expected)), \
|
|
patch('salt.output.display_output', display_output):
|
|
client = ssh.SSH(opts)
|
|
ret = next(client.run_iter())
|
|
with self.assertRaises(SystemExit):
|
|
client.run()
|
|
display_output.assert_called_once_with(expected, 'nested', opts)
|
|
self.assertIs(ret, handle_ssh_ret[0])
|
|
|
|
|
|
class SSHRosterDefaults(TestCase):
|
|
def test_roster_defaults_flat(self):
|
|
'''
|
|
Test Roster Defaults on the flat roster
|
|
'''
|
|
tempdir = tempfile.mkdtemp(dir=TMP)
|
|
expected = {
|
|
'self': {
|
|
'host': '0.0.0.0',
|
|
'user': 'daniel',
|
|
'port': 42,
|
|
},
|
|
'localhost': {
|
|
'host': '127.0.0.1',
|
|
'user': 'daniel',
|
|
'port': 2827,
|
|
},
|
|
}
|
|
try:
|
|
root_dir = os.path.join(tempdir, 'foo', 'bar')
|
|
os.makedirs(root_dir)
|
|
fpath = os.path.join(root_dir, 'config')
|
|
with salt.utils.files.fopen(fpath, 'w') as fp_:
|
|
fp_.write(
|
|
'''
|
|
roster_defaults:
|
|
user: daniel
|
|
'''
|
|
)
|
|
opts = salt.config.master_config(fpath)
|
|
with patch('salt.roster.get_roster_file', MagicMock(return_value=ROSTER)):
|
|
with patch('salt.template.compile_template', MagicMock(return_value=salt.utils.yaml.safe_load(ROSTER))):
|
|
roster = salt.roster.Roster(opts=opts)
|
|
self.assertEqual(roster.targets('*', 'glob'), expected)
|
|
finally:
|
|
if os.path.isdir(tempdir):
|
|
shutil.rmtree(tempdir)
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class SSHSingleTests(TestCase):
|
|
def setUp(self):
|
|
self.tmp_cachedir = tempfile.mkdtemp(dir=TMP)
|
|
|
|
def test_single_opts(self):
|
|
''' Sanity check for ssh.Single options
|
|
'''
|
|
argv = ['ssh.set_auth_key', 'root', 'hobn+amNAXSBTiOXEqlBjGB...rsa root@master']
|
|
opts = {
|
|
'argv': argv,
|
|
'__role': 'master',
|
|
'cachedir': self.tmp_cachedir,
|
|
'extension_modules': os.path.join(self.tmp_cachedir, 'extmods'),
|
|
}
|
|
target = {
|
|
'passwd': 'abc123',
|
|
'ssh_options': None,
|
|
'sudo': False,
|
|
'identities_only': False,
|
|
'host': 'login1',
|
|
'user': 'root',
|
|
'timeout': 65,
|
|
'remote_port_forwards': None,
|
|
'sudo_user': '',
|
|
'port': '22',
|
|
'priv': '/etc/salt/pki/master/ssh/salt-ssh.rsa'
|
|
}
|
|
|
|
single = ssh.Single(
|
|
opts,
|
|
opts['argv'],
|
|
'localhost',
|
|
mods={},
|
|
fsclient=None,
|
|
thin=salt.utils.thin.thin_path(opts['cachedir']),
|
|
mine=False,
|
|
**target)
|
|
|
|
self.assertEqual(single.shell._ssh_opts(), '')
|
|
self.assertEqual(single.shell._cmd_str('date +%s'), 'ssh login1 '
|
|
'-o KbdInteractiveAuthentication=no -o '
|
|
'PasswordAuthentication=yes -o ConnectTimeout=65 -o Port=22 '
|
|
'-o IdentityFile=/etc/salt/pki/master/ssh/salt-ssh.rsa '
|
|
'-o User=root date +%s')
|