salt/tests/unit/modules/test_ssh.py

68 lines
2.1 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
# import Python Libs
from __future__ import absolute_import
# Import Salt Testing Libs
2015-05-15 17:11:29 +00:00
from salttesting import skipIf, TestCase
from salttesting.helpers import ensure_in_syspath
2015-05-15 17:11:29 +00:00
from salttesting.mock import (
NO_MOCK,
NO_MOCK_REASON
)
# Import Salt Libs
ensure_in_syspath('../../')
from salt.modules import ssh
2015-05-15 17:11:29 +00:00
from salt.exceptions import CommandExecutionError
2015-05-15 17:11:29 +00:00
@skipIf(NO_MOCK, NO_MOCK_REASON)
class SSHAuthKeyTestCase(TestCase):
2016-08-29 01:18:52 +00:00
'''
TestCase for salt.modules.ssh
'''
def setUp(self):
ssh.__salt__ = {
'user.info': lambda u: getattr(self, 'user_info_mock', None),
}
def test_expand_user_token(self):
'''
2015-05-15 17:11:29 +00:00
Test if the %u, %h, and %% tokens are correctly expanded
'''
output = ssh._expand_authorized_keys_path('/home/%u', 'user',
'/home/user')
self.assertEqual(output, '/home/user')
output = ssh._expand_authorized_keys_path('/home/%h', 'user',
'/home/user')
self.assertEqual(output, '/home//home/user')
2016-02-11 19:49:15 +00:00
output = ssh._expand_authorized_keys_path('%h/foo', 'user',
'/home/user')
self.assertEqual(output, '/home/user/foo')
2015-05-15 11:00:11 +00:00
output = ssh._expand_authorized_keys_path('/srv/%h/aaa/%u%%', 'user',
'/home/user')
self.assertEqual(output, '/srv//home/user/aaa/user%')
2015-05-15 17:11:29 +00:00
user = 'dude'
home = '/home/dude'
path = '/home/dude%'
self.assertRaises(CommandExecutionError, ssh._expand_authorized_keys_path, path, user, home)
path = '/home/%dude'
self.assertRaises(CommandExecutionError, ssh._expand_authorized_keys_path, path, user, home)
def test_set_auth_key_invalid(self):
self.user_info_mock = {'home': '/dev/null'}
# Inserting invalid public key should be rejected
2016-08-29 01:18:52 +00:00
invalid_key = 'AAAAB3NzaC1kc3MAAACBAL0sQ9fJ5bYTEyY' # missing padding
self.assertEqual(ssh.set_auth_key('user', invalid_key), 'Invalid public key')
2015-05-15 17:11:29 +00:00
if __name__ == '__main__':
from integration import run_tests
run_tests(SSHAuthKeyTestCase, needs_daemon=False)