123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- # -*- 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.runtests import RUNTIME_VARS
- from tests.support.unit import skipIf, TestCase
- from tests.support.case import ShellCase
- from tests.support.mock import patch, MagicMock
- # 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(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=RUNTIME_VARS.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)
- class SSHSingleTests(TestCase):
- def setUp(self):
- self.tmp_cachedir = tempfile.mkdtemp(dir=RUNTIME_VARS.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')
|