summaryrefslogtreecommitdiffhomepage
path: root/tests/test_client.py
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2014-09-05 19:32:50 -0700
committerJeff Forcier <jeff@bitprophet.org>2014-09-05 19:32:50 -0700
commitdd0c618ea02024e06806ab99c79fcff8affeba03 (patch)
tree662537917f2a82648cca58d390eb788552338527 /tests/test_client.py
parentd8047a2e6d1aa06e113e0a9dc9e8f3e89ce2f70e (diff)
Overhaul multi-key test to set up multiple scenarios
Diffstat (limited to 'tests/test_client.py')
-rw-r--r--tests/test_client.py34
1 files changed, 27 insertions, 7 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index 0293ec75..ae10b814 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -95,20 +95,26 @@ class SSHClientTest (unittest.TestCase):
if hasattr(self, attr):
getattr(self, attr).close()
- def _run(self):
+ def _run(self, allowed_keys=None):
+ if allowed_keys is None:
+ allowed_keys = FINGERPRINTS.keys()
self.socks, addr = self.sockl.accept()
self.ts = paramiko.Transport(self.socks)
host_key = paramiko.RSAKey.from_private_key_file(test_path('test_rsa.key'))
self.ts.add_server_key(host_key)
- server = NullServer()
+ server = NullServer(allowed_keys=allowed_keys)
self.ts.start_server(self.event, server)
def _test_connection(self, **kwargs):
"""
- kwargs get passed directly into SSHClient.connect().
+ (Most) kwargs get passed directly into SSHClient.connect().
+
+ The exception is ``allowed_keys`` which is stripped and handed to the
+ ``NullServer`` used for testing.
"""
+ run_kwargs = {'allowed_keys': kwargs.pop('allowed_keys', None)}
# Server setup
- threading.Thread(target=self._run).start()
+ threading.Thread(target=self._run, kwargs=run_kwargs).start()
host_key = paramiko.RSAKey.from_private_key_file(test_path('test_rsa.key'))
public_host_key = paramiko.RSAKey(data=host_key.asbytes())
@@ -172,9 +178,23 @@ class SSHClientTest (unittest.TestCase):
"""
verify that SSHClient accepts and tries multiple key files.
"""
- self._test_connection(key_filename=[
- test_path('test_rsa.key'), test_path('test_dss.key')
- ])
+ # This is dumb :(
+ types_ = {
+ 'rsa': 'ssh-rsa',
+ 'dss': 'ssh-dss',
+ 'ecdsa': 'ecdsa-sha2-nistp256',
+ }
+ # Various combos of attempted & valid keys
+ for attempt, accept in (
+ (['rsa', 'dss'], ['dss']), # Original test #3
+ (['dss', 'rsa'], ['dss']), # Ordering matters sometimes, sadly
+ ):
+ self._test_connection(
+ key_filename=[
+ test_path('test_{0}.key'.format(x)) for x in attempt
+ ],
+ allowed_keys=[types_[x] for x in accept],
+ )
def test_4_auto_add_policy(self):
"""