summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierce Lopez <pierce.lopez@gmail.com>2017-06-05 04:02:59 -0400
committerPierce Lopez <pierce.lopez@gmail.com>2017-06-05 04:20:43 -0400
commitd510b1ae91978a169bb4bd2a9e5e165d2311bc6b (patch)
tree8e7a08ca616df51bb38be04326df795e0ef8cab2
parent08b07ebde3d6699073e9d1a0f599f940a1834d71 (diff)
downloadparamiko-d510b1ae91978a169bb4bd2a9e5e165d2311bc6b.tar.gz
test transport security options can be set to defaults
ensures all defaults key/cipher/digest etc types are supported
-rw-r--r--tests/test_transport.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/test_transport.py b/tests/test_transport.py
index 2ebdf854..c426cef1 100644
--- a/tests/test_transport.py
+++ b/tests/test_transport.py
@@ -165,6 +165,15 @@ class TransportTest(unittest.TestCase):
except TypeError:
pass
+ def test_1b_security_options_reset(self):
+ o = self.tc.get_security_options()
+ # should not throw any exceptions
+ o.ciphers = o.ciphers
+ o.digests = o.digests
+ o.key_types = o.key_types
+ o.kex = o.kex
+ o.compression = o.compression
+
def test_2_compute_key(self):
self.tc.K = 123281095979686581523377256114209720774539068973101330872763622971399429481072519713536292772709507296759612401802191955568143056534122385270077606457721553469730659233569339356140085284052436697480759510519672848743794433460113118986816826624865291116513647975790797391795651716378444844877749505443714557929
self.tc.H = b'\x0C\x83\x07\xCD\xE6\x85\x6F\xF3\x0B\xA9\x36\x84\xEB\x0F\x04\xC2\x52\x0E\x9E\xD3'