diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2017-05-26 21:52:57 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2017-06-03 02:02:46 -0400 |
commit | 88600f0942f2e903590638c56373533da6e64f31 (patch) | |
tree | c60f88f823d6f9092df738a0c365c38c27bfce1d /tests | |
parent | 470666558262fd1caed64e6482e3727aceed158d (diff) |
integration test, with ourselves
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_client.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test_client.py b/tests/test_client.py index 5f4f0dd5..eb6aa7b3 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -43,6 +43,7 @@ FINGERPRINTS = { 'ssh-dss': b'\x44\x78\xf0\xb9\xa2\x3c\xc5\x18\x20\x09\xff\x75\x5b\xc1\xd2\x6c', 'ssh-rsa': b'\x60\x73\x38\x44\xcb\x51\x86\x65\x7f\xde\xda\xa2\x2b\x5a\x57\xd5', 'ecdsa-sha2-nistp256': b'\x25\x19\xeb\x55\xe6\xa1\x47\xff\x4f\x38\xd2\x75\x6f\xa5\xd5\x60', + 'ssh-ed25519': b'\x1d\xf3\xefoj\x95\x99\xb7\xedq\x7f&\xba\xb0CD', } @@ -194,6 +195,9 @@ class SSHClientTest (unittest.TestCase): """ self._test_connection(key_filename=test_path('test_ecdsa_256.key')) + def test_client_ed25519(self): + self._test_connection(key_filename=test_path('test_ed25519.key')) + def test_3_multiple_key_files(self): """ verify that SSHClient accepts and tries multiple key files. |