You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.8 KiB
Python
102 lines
2.8 KiB
Python
|
|
import unittest
|
|
|
|
import mitogen
|
|
import mitogen.ssh
|
|
import mitogen.utils
|
|
|
|
import testlib
|
|
import plain_old_module
|
|
|
|
|
|
class FakeSshTest(testlib.RouterMixin, unittest.TestCase):
|
|
def test_okay(self):
|
|
context = self.router.ssh(
|
|
hostname='hostname',
|
|
username='has-sudo',
|
|
ssh_path=testlib.data_path('fakessh.py'),
|
|
)
|
|
#context.call(mitogen.utils.log_to_file, '/tmp/log')
|
|
#context.call(mitogen.utils.disable_site_packages)
|
|
self.assertEquals(3, context.call(plain_old_module.add, 1, 2))
|
|
|
|
|
|
class SshTest(testlib.DockerMixin, unittest.TestCase):
|
|
stream_class = mitogen.ssh.Stream
|
|
|
|
def test_stream_name(self):
|
|
context = self.docker_ssh(
|
|
username='has-sudo',
|
|
password='y',
|
|
)
|
|
self.assertEquals('ssh.u1704:%s' % (self.dockerized_ssh.port,),
|
|
context.name)
|
|
|
|
def test_via_stream_name(self):
|
|
context = self.docker_ssh(
|
|
username='has-sudo-nopw',
|
|
password='y',
|
|
)
|
|
sudo = self.router.sudo(via=context)
|
|
|
|
name = 'ssh.%s:%s.sudo.root' % (
|
|
self.dockerized_ssh.host,
|
|
self.dockerized_ssh.port,
|
|
)
|
|
self.assertEquals(name, sudo.name)
|
|
|
|
def test_password_required(self):
|
|
try:
|
|
context = self.docker_ssh(
|
|
username='has-sudo',
|
|
)
|
|
assert 0, 'exception not thrown'
|
|
except mitogen.ssh.PasswordError, e:
|
|
pass
|
|
|
|
assert e[0] == self.stream_class.password_required_msg
|
|
|
|
def test_password_incorrect(self):
|
|
try:
|
|
context = self.docker_ssh(
|
|
username='has-sudo',
|
|
password='badpw',
|
|
)
|
|
assert 0, 'exception not thrown'
|
|
except mitogen.ssh.PasswordError, e:
|
|
pass
|
|
|
|
assert e[0] == self.stream_class.password_incorrect_msg
|
|
|
|
def test_password_specified(self):
|
|
context = self.docker_ssh(
|
|
username='has-sudo',
|
|
password='y',
|
|
)
|
|
|
|
sentinel = 'i-am-mitogen-test-docker-image\n'
|
|
assert sentinel == context.call(plain_old_module.get_sentinel_value)
|
|
|
|
def test_pubkey_required(self):
|
|
try:
|
|
context = self.docker_ssh(
|
|
username='has-sudo-pubkey',
|
|
)
|
|
assert 0, 'exception not thrown'
|
|
except mitogen.ssh.PasswordError, e:
|
|
pass
|
|
|
|
assert e[0] == self.stream_class.password_required_msg
|
|
|
|
def test_pubkey_specified(self):
|
|
context = self.docker_ssh(
|
|
username='has-sudo-pubkey',
|
|
identity_file=testlib.data_path('docker/has-sudo-pubkey.key'),
|
|
)
|
|
sentinel = 'i-am-mitogen-test-docker-image\n'
|
|
assert sentinel == context.call(plain_old_module.get_sentinel_value)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|