1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
import pytest
@pytest.mark.bashcomp(cmd="ssh-keygen")
class TestSshKeygen:
@pytest.mark.complete("ssh-keygen -", require_cmd=True)
def test_1(self, completion):
assert completion
@pytest.mark.complete(
"ssh-keygen -", require_cmd=True, shopt=dict(failglob=True)
)
def test_1_failglob(self, completion):
assert completion
@pytest.mark.complete(
"ssh-keygen -", require_cmd=True, shopt=dict(nullglob=True)
)
def test_1_nullglob(self, completion):
assert completion
@pytest.mark.complete("ssh-keygen -s foo_key ssh-copy-id/.ssh/")
def test_filedir_pub_at_end_of_s(self, completion):
assert completion
assert all(x.endswith(".pub") for x in completion)
@pytest.mark.complete("ssh-keygen -s foo_key -n foo,")
def test_usernames_for_n(self, completion):
assert completion
# TODO check that these are usernames
@pytest.mark.complete("ssh-keygen -s foo_key -h -n foo,")
def test_host_for_h_n(self, completion):
assert completion
# TODO check that these are hostnames
@pytest.mark.complete("ssh-keygen -Y foo -n ")
def test_n_with_Y(self, completion):
assert not completion
@pytest.mark.complete("ssh-keygen -r ")
def test_r_without_Y(self, completion):
assert not completion
@pytest.mark.complete("ssh-keygen -Y foo -r ")
def test_r_with_Y(self, completion):
assert "ssh/" in completion
@pytest.mark.complete("ssh-keygen -t ecdsa -b ")
def test_ecdsa_b(self, completion):
assert completion
@pytest.mark.complete("ssh-keygen -t ecdsa-sk -b ")
def test_ecdsa_sk_b(self, completion):
assert not completion
@pytest.mark.complete("ssh-keygen -O ")
def test_bare_O(self, completion):
assert not completion
@pytest.mark.complete("ssh-keygen -s -O ")
def test_s_O(self, completion):
assert completion
assert any(x.endswith("=") for x in completion)
@pytest.mark.complete("ssh-keygen -s -O force-command=bas")
def test_O_force_command(self, completion):
assert completion
assert not completion.startswith("force-command=")
@pytest.mark.complete("ssh-keygen -O unknown=")
def test_O_unknown(self, completion):
assert not completion
@pytest.mark.complete("ssh-keygen -t ed25519-sk -O application=")
def test_O_application(self, completion):
assert completion == "ssh:"
@pytest.mark.complete("ssh-keygen -t ed25519-sk -O application=s")
def test_O_application_s(self, completion):
assert completion == "sh:"
@pytest.mark.complete("ssh-keygen -t ed25519-sk -O application=ssh:")
def test_O_application_ssh_colon(self, completion):
assert not completion
@pytest.mark.complete(
"ssh-keygen -t ed25519-sk -O application=nonexistent"
)
def test_O_application_nonexistent(self, completion):
assert not completion
@pytest.mark.complete("ssh-keygen -r -O ")
def test_r_O(self, completion):
assert completion
@pytest.mark.complete("ssh-keygen -Y -O ")
def test_Y_O(self, completion):
assert completion
|