summaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_client.py15
-rw-r--r--tests/util.py1
2 files changed, 15 insertions, 1 deletions
diff --git a/tests/test_client.py b/tests/test_client.py
index e912d5b2..cfffa030 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -248,6 +248,21 @@ class SSHClientTest (unittest.TestCase):
allowed_keys=['ecdsa-sha2-nistp256'],
)
+ def test_certs_allowed_as_key_filename_values(self):
+ # TODO: connect() with key_filename containing a cert file, loads up
+ # both the cert and its implied key. This is new functionality on top
+ # of the OpenSSH-compatible stuff.
+ assert False
+
+ def test_certs_implicitly_loaded_alongside_key_filename_keys(self):
+ # TODO: same but with just the key paths, i.e. vanilla OpenSSH behavior
+ assert False
+
+ def test_default_key_locations_trigger_cert_loads_if_found(self):
+ # TODO: what it says on the tin: ~/.ssh/id_rsa tries to load
+ # ~/.ssh/id_rsa-cert.pub
+ assert False
+
def test_4_auto_add_policy(self):
"""
verify that SSHClient's AutoAddPolicy works.
diff --git a/tests/util.py b/tests/util.py
index b546a7e1..c1b43da8 100644
--- a/tests/util.py
+++ b/tests/util.py
@@ -4,4 +4,3 @@ root_path = os.path.dirname(os.path.realpath(__file__))
def test_path(filename):
return os.path.join(root_path, filename)
-