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
|
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 -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
assert not any("," in x for x in 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
assert not any("," in x for x in 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_O(self, completion):
assert completion
assert any(x.endswith("=") for x in completion)
@pytest.mark.complete("ssh-keygen -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
|