fdbea449cda2a00785dd803c43cf9dbec2995ba1
Marco Ricci Change the author e-mail ad...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py   1) # SPDX-FileCopyrightText: 2024 Marco Ricci <software@the13thletter.info>
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py             2) #
tests/test_ssh_agent_client.py             3) # SPDX-License-Identifier: MIT
tests/test_ssh_agent_client.py             4) 
tests/test_ssh_agent_client.py             5) """Test OpenSSH key loading and signing."""
tests/test_ssh_agent_client.py             6) 
tests/test_ssh_agent_client.py             7) from __future__ import annotations
tests/test_ssh_agent_client.py             8) 
tests/test_ssh_agent_client.py             9) import base64
tests/test_ssh_agent_client.py            10) import io
tests/test_ssh_agent_client.py            11) import socket
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            12) from typing import TYPE_CHECKING
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            13) 
tests/test_ssh_agent_client.py            14) import click
tests/test_ssh_agent_client.py            15) import click.testing
Marco Ricci Add hypothesis-based tests...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py  16) import hypothesis
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            17) import pytest
Marco Ricci Add hypothesis-based tests...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py  18) from hypothesis import strategies
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            19) 
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            20) import tests
Marco Ricci Consolidate `types` submodu...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py  21) from derivepassphrase import _types, cli, ssh_agent, vault
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            22) 
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            23) if TYPE_CHECKING:
Marco Ricci Fix awkward parametrization...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py  24)     from collections.abc import Iterable
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            25) 
Marco Ricci Add hypothesis-based tests...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py  26)     from typing_extensions import Any
tests/test_derivepassphrase_ssh_agent.py  27) 
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            28) 
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            29) class TestStaticFunctionality:
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            30)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py            31)         ['public_key', 'public_key_data'],
tests/test_ssh_agent_client.py            32)         [
tests/test_ssh_agent_client.py            33)             (val['public_key'], val['public_key_data'])
tests/test_ssh_agent_client.py            34)             for val in tests.SUPPORTED_KEYS.values()
tests/test_ssh_agent_client.py            35)         ],
tests/test_ssh_agent_client.py            36)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            37)     def test_100_key_decoding(
tests/test_ssh_agent_client.py            38)         self, public_key: bytes, public_key_data: bytes
tests/test_ssh_agent_client.py            39)     ) -> None:
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py            40)         keydata = base64.b64decode(public_key.split(None, 2)[1])
tests/test_ssh_agent_client.py            41)         assert (
tests/test_ssh_agent_client.py            42)             keydata == public_key_data
tests/test_ssh_agent_client.py            43)         ), "recorded public key data doesn't match"
tests/test_ssh_agent_client.py            44) 
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py  45)     @pytest.mark.parametrize(
tests/test_derivepassphrase_ssh_agent.py  46)         ['line', 'env_name', 'value'],
tests/test_derivepassphrase_ssh_agent.py  47)         [
tests/test_derivepassphrase_ssh_agent.py  48)             (
tests/test_derivepassphrase_ssh_agent.py  49)                 'SSH_AUTH_SOCK=/tmp/pageant.user/pageant.27170; export SSH_AUTH_SOCK;',  # noqa: E501
tests/test_derivepassphrase_ssh_agent.py  50)                 'SSH_AUTH_SOCK',
tests/test_derivepassphrase_ssh_agent.py  51)                 '/tmp/pageant.user/pageant.27170',
tests/test_derivepassphrase_ssh_agent.py  52)             ),
tests/test_derivepassphrase_ssh_agent.py  53)             (
tests/test_derivepassphrase_ssh_agent.py  54)                 'SSH_AUTH_SOCK=/tmp/ssh-3CSTC1W5M22A/agent.27270; export SSH_AUTH_SOCK;',  # noqa: E501
tests/test_derivepassphrase_ssh_agent.py  55)                 'SSH_AUTH_SOCK',
tests/test_derivepassphrase_ssh_agent.py  56)                 '/tmp/ssh-3CSTC1W5M22A/agent.27270',
tests/test_derivepassphrase_ssh_agent.py  57)             ),
tests/test_derivepassphrase_ssh_agent.py  58)             (
tests/test_derivepassphrase_ssh_agent.py  59)                 'SSH_AUTH_SOCK=/tmp/pageant.user/pageant.27170; export SSH_AUTH_SOCK',  # noqa: E501
tests/test_derivepassphrase_ssh_agent.py  60)                 'SSH_AUTH_SOCK',
tests/test_derivepassphrase_ssh_agent.py  61)                 '/tmp/pageant.user/pageant.27170',
tests/test_derivepassphrase_ssh_agent.py  62)             ),
tests/test_derivepassphrase_ssh_agent.py  63)             (
tests/test_derivepassphrase_ssh_agent.py  64)                 'export SSH_AUTH_SOCK=/tmp/ssh-3CSTC1W5M22A/agent.27270;',
tests/test_derivepassphrase_ssh_agent.py  65)                 'SSH_AUTH_SOCK',
tests/test_derivepassphrase_ssh_agent.py  66)                 '/tmp/ssh-3CSTC1W5M22A/agent.27270',
tests/test_derivepassphrase_ssh_agent.py  67)             ),
tests/test_derivepassphrase_ssh_agent.py  68)             (
tests/test_derivepassphrase_ssh_agent.py  69)                 'export SSH_AUTH_SOCK=/tmp/pageant.user/pageant.27170',
tests/test_derivepassphrase_ssh_agent.py  70)                 'SSH_AUTH_SOCK',
tests/test_derivepassphrase_ssh_agent.py  71)                 '/tmp/pageant.user/pageant.27170',
tests/test_derivepassphrase_ssh_agent.py  72)             ),
tests/test_derivepassphrase_ssh_agent.py  73)             (
tests/test_derivepassphrase_ssh_agent.py  74)                 'SSH_AGENT_PID=27170; export SSH_AGENT_PID;',
tests/test_derivepassphrase_ssh_agent.py  75)                 'SSH_AGENT_PID',
tests/test_derivepassphrase_ssh_agent.py  76)                 '27170',
tests/test_derivepassphrase_ssh_agent.py  77)             ),
tests/test_derivepassphrase_ssh_agent.py  78)             (
tests/test_derivepassphrase_ssh_agent.py  79)                 'SSH_AGENT_PID=27170; export SSH_AGENT_PID',
tests/test_derivepassphrase_ssh_agent.py  80)                 'SSH_AGENT_PID',
tests/test_derivepassphrase_ssh_agent.py  81)                 '27170',
tests/test_derivepassphrase_ssh_agent.py  82)             ),
tests/test_derivepassphrase_ssh_agent.py  83)             ('export SSH_AGENT_PID=27170;', 'SSH_AGENT_PID', '27170'),
tests/test_derivepassphrase_ssh_agent.py  84)             ('export SSH_AGENT_PID=27170', 'SSH_AGENT_PID', '27170'),
tests/test_derivepassphrase_ssh_agent.py  85)             (
tests/test_derivepassphrase_ssh_agent.py  86)                 'export VARIABLE=value; export OTHER_VARIABLE=other_value;',
tests/test_derivepassphrase_ssh_agent.py  87)                 'VARIABLE',
tests/test_derivepassphrase_ssh_agent.py  88)                 None,
tests/test_derivepassphrase_ssh_agent.py  89)             ),
tests/test_derivepassphrase_ssh_agent.py  90)             (
tests/test_derivepassphrase_ssh_agent.py  91)                 'VARIABLE=value',
tests/test_derivepassphrase_ssh_agent.py  92)                 'VARIABLE',
tests/test_derivepassphrase_ssh_agent.py  93)                 None,
tests/test_derivepassphrase_ssh_agent.py  94)             ),
tests/test_derivepassphrase_ssh_agent.py  95)         ],
tests/test_derivepassphrase_ssh_agent.py  96)     )
tests/test_derivepassphrase_ssh_agent.py  97)     def test_190_sh_export_line_parsing(
tests/test_derivepassphrase_ssh_agent.py  98)         self, line: str, env_name: str, value: str | None
tests/test_derivepassphrase_ssh_agent.py  99)     ) -> None:
tests/test_derivepassphrase_ssh_agent.py 100)         if value is not None:
tests/test_derivepassphrase_ssh_agent.py 101)             assert tests.parse_sh_export_line(line, env_name=env_name) == value
tests/test_derivepassphrase_ssh_agent.py 102)         else:
tests/test_derivepassphrase_ssh_agent.py 103)             with pytest.raises(ValueError, match='Cannot parse sh line:'):
tests/test_derivepassphrase_ssh_agent.py 104)                 tests.parse_sh_export_line(line, env_name=env_name)
tests/test_derivepassphrase_ssh_agent.py 105) 
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 106)     def test_200_constructor_no_running_agent(
Marco Ricci Fail gracefully if UNIX dom...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 107)         self,
tests/test_derivepassphrase_ssh_agent.py 108)         monkeypatch: pytest.MonkeyPatch,
tests/test_derivepassphrase_ssh_agent.py 109)         skip_if_no_af_unix_support: None,
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 110)     ) -> None:
Marco Ricci Fail gracefully if UNIX dom...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 111)         del skip_if_no_af_unix_support
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           112)         monkeypatch.delenv('SSH_AUTH_SOCK', raising=False)
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           113)         with pytest.raises(
tests/test_ssh_agent_client.py           114)             KeyError, match='SSH_AUTH_SOCK environment variable'
tests/test_ssh_agent_client.py           115)         ):
Marco Ricci Fail gracefully if UNIX dom...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 116)             ssh_agent.SSHAgentClient()
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           117) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           118)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           119)         ['input', 'expected'],
tests/test_ssh_agent_client.py           120)         [
tests/test_ssh_agent_client.py           121)             (16777216, b'\x01\x00\x00\x00'),
tests/test_ssh_agent_client.py           122)         ],
tests/test_ssh_agent_client.py           123)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           124)     def test_210_uint32(self, input: int, expected: bytes | bytearray) -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 125)         uint32 = ssh_agent.SSHAgentClient.uint32
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           126)         assert uint32(input) == expected
tests/test_ssh_agent_client.py           127) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           128)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           129)         ['input', 'expected'],
tests/test_ssh_agent_client.py           130)         [
tests/test_ssh_agent_client.py           131)             (b'ssh-rsa', b'\x00\x00\x00\x07ssh-rsa'),
tests/test_ssh_agent_client.py           132)             (b'ssh-ed25519', b'\x00\x00\x00\x0bssh-ed25519'),
tests/test_ssh_agent_client.py           133)             (
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 134)                 ssh_agent.SSHAgentClient.string(b'ssh-ed25519'),
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           135)                 b'\x00\x00\x00\x0f\x00\x00\x00\x0bssh-ed25519',
tests/test_ssh_agent_client.py           136)             ),
tests/test_ssh_agent_client.py           137)         ],
tests/test_ssh_agent_client.py           138)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           139)     def test_211_string(
tests/test_ssh_agent_client.py           140)         self, input: bytes | bytearray, expected: bytes | bytearray
tests/test_ssh_agent_client.py           141)     ) -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 142)         string = ssh_agent.SSHAgentClient.string
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           143)         assert bytes(string(input)) == expected
tests/test_ssh_agent_client.py           144) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           145)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           146)         ['input', 'expected'],
tests/test_ssh_agent_client.py           147)         [
tests/test_ssh_agent_client.py           148)             (b'\x00\x00\x00\x07ssh-rsa', b'ssh-rsa'),
tests/test_ssh_agent_client.py           149)             (
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 150)                 ssh_agent.SSHAgentClient.string(b'ssh-ed25519'),
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           151)                 b'ssh-ed25519',
tests/test_ssh_agent_client.py           152)             ),
tests/test_ssh_agent_client.py           153)         ],
tests/test_ssh_agent_client.py           154)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           155)     def test_212_unstring(
tests/test_ssh_agent_client.py           156)         self, input: bytes | bytearray, expected: bytes | bytearray
tests/test_ssh_agent_client.py           157)     ) -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 158)         unstring = ssh_agent.SSHAgentClient.unstring
tests/test_derivepassphrase_ssh_agent.py 159)         unstring_prefix = ssh_agent.SSHAgentClient.unstring_prefix
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           160)         assert bytes(unstring(input)) == expected
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           161)         assert tuple(bytes(x) for x in unstring_prefix(input)) == (
tests/test_ssh_agent_client.py           162)             expected,
tests/test_ssh_agent_client.py           163)             b'',
tests/test_ssh_agent_client.py           164)         )
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           165) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           166)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           167)         ['value', 'exc_type', 'exc_pattern'],
tests/test_ssh_agent_client.py           168)         [
tests/test_ssh_agent_client.py           169)             (10000000000000000, OverflowError, 'int too big to convert'),
tests/test_ssh_agent_client.py           170)             (-1, OverflowError, "can't convert negative int to unsigned"),
tests/test_ssh_agent_client.py           171)         ],
tests/test_ssh_agent_client.py           172)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           173)     def test_310_uint32_exceptions(
tests/test_ssh_agent_client.py           174)         self, value: int, exc_type: type[Exception], exc_pattern: str
tests/test_ssh_agent_client.py           175)     ) -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 176)         uint32 = ssh_agent.SSHAgentClient.uint32
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           177)         with pytest.raises(exc_type, match=exc_pattern):
tests/test_ssh_agent_client.py           178)             uint32(value)
tests/test_ssh_agent_client.py           179) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           180)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           181)         ['input', 'exc_type', 'exc_pattern'],
tests/test_ssh_agent_client.py           182)         [
tests/test_ssh_agent_client.py           183)             ('some string', TypeError, 'invalid payload type'),
tests/test_ssh_agent_client.py           184)         ],
tests/test_ssh_agent_client.py           185)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           186)     def test_311_string_exceptions(
tests/test_ssh_agent_client.py           187)         self, input: Any, exc_type: type[Exception], exc_pattern: str
tests/test_ssh_agent_client.py           188)     ) -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 189)         string = ssh_agent.SSHAgentClient.string
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           190)         with pytest.raises(exc_type, match=exc_pattern):
tests/test_ssh_agent_client.py           191)             string(input)
tests/test_ssh_agent_client.py           192) 
tests/test_ssh_agent_client.py           193)     @pytest.mark.parametrize(
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           194)         ['input', 'exc_type', 'exc_pattern', 'has_trailer', 'parts'],
tests/test_ssh_agent_client.py           195)         [
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           196)             (b'ssh', ValueError, 'malformed SSH byte string', False, None),
tests/test_ssh_agent_client.py           197)             (
tests/test_ssh_agent_client.py           198)                 b'\x00\x00\x00\x08ssh-rsa',
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           199)                 ValueError,
tests/test_ssh_agent_client.py           200)                 'malformed SSH byte string',
tests/test_ssh_agent_client.py           201)                 False,
tests/test_ssh_agent_client.py           202)                 None,
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           203)             ),
tests/test_ssh_agent_client.py           204)             (
tests/test_ssh_agent_client.py           205)                 b'\x00\x00\x00\x04XXX trailing text',
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           206)                 ValueError,
tests/test_ssh_agent_client.py           207)                 'malformed SSH byte string',
tests/test_ssh_agent_client.py           208)                 True,
tests/test_ssh_agent_client.py           209)                 (b'XXX ', b'trailing text'),
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           210)             ),
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           211)         ],
tests/test_ssh_agent_client.py           212)     )
tests/test_ssh_agent_client.py           213)     def test_312_unstring_exceptions(
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           214)         self,
tests/test_ssh_agent_client.py           215)         input: bytes | bytearray,
tests/test_ssh_agent_client.py           216)         exc_type: type[Exception],
tests/test_ssh_agent_client.py           217)         exc_pattern: str,
tests/test_ssh_agent_client.py           218)         has_trailer: bool,
tests/test_ssh_agent_client.py           219)         parts: tuple[bytes | bytearray, bytes | bytearray] | None,
tests/test_ssh_agent_client.py           220)     ) -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 221)         unstring = ssh_agent.SSHAgentClient.unstring
tests/test_derivepassphrase_ssh_agent.py 222)         unstring_prefix = ssh_agent.SSHAgentClient.unstring_prefix
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           223)         with pytest.raises(exc_type, match=exc_pattern):
tests/test_ssh_agent_client.py           224)             unstring(input)
tests/test_ssh_agent_client.py           225)         if has_trailer:
tests/test_ssh_agent_client.py           226)             assert tuple(bytes(x) for x in unstring_prefix(input)) == parts
tests/test_ssh_agent_client.py           227)         else:
tests/test_ssh_agent_client.py           228)             with pytest.raises(exc_type, match=exc_pattern):
tests/test_ssh_agent_client.py           229)                 unstring_prefix(input)
tests/test_ssh_agent_client.py           230) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           231) 
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           232) class TestAgentInteraction:
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           233)     @pytest.mark.parametrize(
Marco Ricci Simplify some SSH agent key...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 234)         'data_dict',
tests/test_derivepassphrase_ssh_agent.py 235)         list(tests.SUPPORTED_KEYS.values()),
tests/test_derivepassphrase_ssh_agent.py 236)         ids=tests.SUPPORTED_KEYS.keys(),
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           237)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           238)     def test_200_sign_data_via_agent(
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 239)         self,
tests/test_derivepassphrase_ssh_agent.py 240)         ssh_agent_client_with_test_keys_loaded: ssh_agent.SSHAgentClient,
tests/test_derivepassphrase_ssh_agent.py 241)         data_dict: tests.SSHTestKey,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           242)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 243)         client = ssh_agent_client_with_test_keys_loaded
tests/test_derivepassphrase_ssh_agent.py 244)         key_comment_pairs = {bytes(k): bytes(c) for k, c in client.list_keys()}
tests/test_derivepassphrase_ssh_agent.py 245)         public_key_data = data_dict['public_key_data']
tests/test_derivepassphrase_ssh_agent.py 246)         expected_signature = data_dict['expected_signature']
tests/test_derivepassphrase_ssh_agent.py 247)         derived_passphrase = data_dict['derived_passphrase']
tests/test_derivepassphrase_ssh_agent.py 248)         if public_key_data not in key_comment_pairs:  # pragma: no cover
tests/test_derivepassphrase_ssh_agent.py 249)             pytest.skip('prerequisite SSH key not loaded')
tests/test_derivepassphrase_ssh_agent.py 250)         signature = bytes(
tests/test_derivepassphrase_ssh_agent.py 251)             client.sign(payload=vault.Vault._UUID, key=public_key_data)
tests/test_derivepassphrase_ssh_agent.py 252)         )
tests/test_derivepassphrase_ssh_agent.py 253)         assert signature == expected_signature, 'SSH signature mismatch'
tests/test_derivepassphrase_ssh_agent.py 254)         signature2 = bytes(
tests/test_derivepassphrase_ssh_agent.py 255)             client.sign(payload=vault.Vault._UUID, key=public_key_data)
tests/test_derivepassphrase_ssh_agent.py 256)         )
tests/test_derivepassphrase_ssh_agent.py 257)         assert signature2 == expected_signature, 'SSH signature mismatch'
tests/test_derivepassphrase_ssh_agent.py 258)         assert (
tests/test_derivepassphrase_ssh_agent.py 259)             vault.Vault.phrase_from_key(public_key_data) == derived_passphrase
tests/test_derivepassphrase_ssh_agent.py 260)         ), 'SSH signature mismatch'
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           261) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           262)     @pytest.mark.parametrize(
Marco Ricci Simplify some SSH agent key...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 263)         'data_dict',
tests/test_derivepassphrase_ssh_agent.py 264)         list(tests.UNSUITABLE_KEYS.values()),
tests/test_derivepassphrase_ssh_agent.py 265)         ids=tests.UNSUITABLE_KEYS.keys(),
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           266)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           267)     def test_201_sign_data_via_agent_unsupported(
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 268)         self,
tests/test_derivepassphrase_ssh_agent.py 269)         ssh_agent_client_with_test_keys_loaded: ssh_agent.SSHAgentClient,
tests/test_derivepassphrase_ssh_agent.py 270)         data_dict: tests.SSHTestKey,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           271)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 272)         client = ssh_agent_client_with_test_keys_loaded
tests/test_derivepassphrase_ssh_agent.py 273)         key_comment_pairs = {bytes(k): bytes(c) for k, c in client.list_keys()}
tests/test_derivepassphrase_ssh_agent.py 274)         public_key_data = data_dict['public_key_data']
tests/test_derivepassphrase_ssh_agent.py 275)         _ = data_dict['expected_signature']
tests/test_derivepassphrase_ssh_agent.py 276)         if public_key_data not in key_comment_pairs:  # pragma: no cover
tests/test_derivepassphrase_ssh_agent.py 277)             pytest.skip('prerequisite SSH key not loaded')
Marco Ricci Fix test suite to actually...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 278)         if client.has_deterministic_signatures():
tests/test_derivepassphrase_ssh_agent.py 279)             pytest.skip('agent ensures all keys are suitable')
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 280)         with pytest.raises(ValueError, match='unsuitable SSH key'):
tests/test_derivepassphrase_ssh_agent.py 281)             vault.Vault.phrase_from_key(public_key_data)
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           282) 
Marco Ricci Fix awkward parametrization...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 283)     @pytest.mark.parametrize(
tests/test_derivepassphrase_ssh_agent.py 284)         ['key', 'single'],
tests/test_derivepassphrase_ssh_agent.py 285)         [
tests/test_derivepassphrase_ssh_agent.py 286)             (value['public_key_data'], False)
tests/test_derivepassphrase_ssh_agent.py 287)             for value in tests.SUPPORTED_KEYS.values()
tests/test_derivepassphrase_ssh_agent.py 288)         ]
tests/test_derivepassphrase_ssh_agent.py 289)         + [(tests.list_keys_singleton()[0].key, True)],
tests/test_derivepassphrase_ssh_agent.py 290)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           291)     def test_210_ssh_key_selector(
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 292)         self,
tests/test_derivepassphrase_ssh_agent.py 293)         monkeypatch: pytest.MonkeyPatch,
Marco Ricci Fix test suite to actually...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 294)         ssh_agent_client_with_test_keys_loaded: ssh_agent.SSHAgentClient,
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 295)         key: bytes,
tests/test_derivepassphrase_ssh_agent.py 296)         single: bool,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           297)     ) -> None:
Marco Ricci Fix test suite to actually...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 298)         client = ssh_agent_client_with_test_keys_loaded
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 299) 
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           300)         def key_is_suitable(key: bytes) -> bool:
Marco Ricci Fix test suite to actually...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 301)             return client.has_deterministic_signatures() or key in {
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           302)                 v['public_key_data'] for v in tests.SUPPORTED_KEYS.values()
tests/test_ssh_agent_client.py           303)             }
tests/test_ssh_agent_client.py           304) 
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           305)         if single:
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           306)             monkeypatch.setattr(
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 307)                 ssh_agent.SSHAgentClient,
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           308)                 'list_keys',
tests/test_ssh_agent_client.py           309)                 tests.list_keys_singleton,
tests/test_ssh_agent_client.py           310)             )
tests/test_ssh_agent_client.py           311)             keys = [
tests/test_ssh_agent_client.py           312)                 pair.key
tests/test_ssh_agent_client.py           313)                 for pair in tests.list_keys_singleton()
tests/test_ssh_agent_client.py           314)                 if key_is_suitable(pair.key)
tests/test_ssh_agent_client.py           315)             ]
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           316)             index = '1'
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           317)             text = 'Use this key? yes\n'
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           318)         else:
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           319)             monkeypatch.setattr(
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 320)                 ssh_agent.SSHAgentClient, 'list_keys', tests.list_keys
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           321)             )
tests/test_ssh_agent_client.py           322)             keys = [
tests/test_ssh_agent_client.py           323)                 pair.key
tests/test_ssh_agent_client.py           324)                 for pair in tests.list_keys()
tests/test_ssh_agent_client.py           325)                 if key_is_suitable(pair.key)
tests/test_ssh_agent_client.py           326)             ]
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           327)             index = str(1 + keys.index(key))
tests/test_ssh_agent_client.py           328)             n = len(keys)
tests/test_ssh_agent_client.py           329)             text = f'Your selection? (1-{n}, leave empty to abort): {index}\n'
tests/test_ssh_agent_client.py           330)         b64_key = base64.standard_b64encode(key).decode('ASCII')
tests/test_ssh_agent_client.py           331) 
tests/test_ssh_agent_client.py           332)         @click.command()
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           333)         def driver() -> None:
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 334)             key = cli._select_ssh_key()
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           335)             click.echo(base64.standard_b64encode(key).decode('ASCII'))
tests/test_ssh_agent_client.py           336) 
tests/test_ssh_agent_client.py           337)         runner = click.testing.CliRunner(mix_stderr=True)
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 338)         _result = runner.invoke(
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           339)             driver,
tests/test_ssh_agent_client.py           340)             [],
tests/test_ssh_agent_client.py           341)             input=('yes\n' if single else f'{index}\n'),
tests/test_ssh_agent_client.py           342)             catch_exceptions=True,
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           343)         )
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 344)         result = tests.ReadableResult.parse(_result)
tests/test_derivepassphrase_ssh_agent.py 345)         for snippet in ('Suitable SSH keys:\n', text, f'\n{b64_key}\n'):
tests/test_derivepassphrase_ssh_agent.py 346)             assert result.clean_exit(output=snippet), 'expected clean exit'
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           347) 
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 348)     def test_300_constructor_bad_running_agent(
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 349)         self,
tests/test_derivepassphrase_ssh_agent.py 350)         monkeypatch: pytest.MonkeyPatch,
Marco Ricci Let the `running_ssh_agent`...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 351)         running_ssh_agent: tests.RunningSSHAgentInfo,
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 352)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 353)         with monkeypatch.context() as monkeypatch2:
Marco Ricci Let the `running_ssh_agent`...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 354)             monkeypatch2.setenv(
tests/test_derivepassphrase_ssh_agent.py 355)                 'SSH_AUTH_SOCK', running_ssh_agent.socket + '~'
tests/test_derivepassphrase_ssh_agent.py 356)             )
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 357)             sock = socket.socket(family=socket.AF_UNIX)
tests/test_derivepassphrase_ssh_agent.py 358)             with pytest.raises(OSError):  # noqa: PT011
tests/test_derivepassphrase_ssh_agent.py 359)                 ssh_agent.SSHAgentClient(socket=sock)
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           360) 
Marco Ricci Fail gracefully if UNIX dom...

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 361)     def test_301_constructor_no_af_unix_support(
tests/test_derivepassphrase_ssh_agent.py 362)         self,
tests/test_derivepassphrase_ssh_agent.py 363)         monkeypatch: pytest.MonkeyPatch,
tests/test_derivepassphrase_ssh_agent.py 364)     ) -> None:
tests/test_derivepassphrase_ssh_agent.py 365)         with monkeypatch.context() as monkeypatch2:
tests/test_derivepassphrase_ssh_agent.py 366)             monkeypatch2.setenv('SSH_AUTH_SOCK', "the value doesn't matter")
tests/test_derivepassphrase_ssh_agent.py 367)             monkeypatch2.delattr(socket, 'AF_UNIX', raising=False)
tests/test_derivepassphrase_ssh_agent.py 368)             with pytest.raises(
tests/test_derivepassphrase_ssh_agent.py 369)                 NotImplementedError,
tests/test_derivepassphrase_ssh_agent.py 370)                 match='UNIX domain sockets',
tests/test_derivepassphrase_ssh_agent.py 371)             ):
tests/test_derivepassphrase_ssh_agent.py 372)                 ssh_agent.SSHAgentClient()
tests/test_derivepassphrase_ssh_agent.py 373) 
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           374)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           375)         'response',
tests/test_ssh_agent_client.py           376)         [
tests/test_ssh_agent_client.py           377)             b'\x00\x00',
tests/test_ssh_agent_client.py           378)             b'\x00\x00\x00\x1f some bytes missing',
tests/test_ssh_agent_client.py           379)         ],
tests/test_ssh_agent_client.py           380)     )
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           381)     def test_310_truncated_server_response(
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 382)         self,
tests/test_derivepassphrase_ssh_agent.py 383)         monkeypatch: pytest.MonkeyPatch,
Marco Ricci Let the `running_ssh_agent`...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 384)         running_ssh_agent: tests.RunningSSHAgentInfo,
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 385)         response: bytes,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           386)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 387)         del running_ssh_agent
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 388)         client = ssh_agent.SSHAgentClient()
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           389)         response_stream = io.BytesIO(response)
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           390) 
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           391)         class PseudoSocket:
tests/test_ssh_agent_client.py           392)             def sendall(self, *args: Any, **kwargs: Any) -> Any:  # noqa: ARG002
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           393)                 return None
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           394) 
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           395)             def recv(self, *args: Any, **kwargs: Any) -> Any:
tests/test_ssh_agent_client.py           396)                 return response_stream.read(*args, **kwargs)
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           397) 
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           398)         pseudo_socket = PseudoSocket()
tests/test_ssh_agent_client.py           399)         monkeypatch.setattr(client, '_connection', pseudo_socket)
tests/test_ssh_agent_client.py           400)         with pytest.raises(EOFError):
tests/test_ssh_agent_client.py           401)             client.request(255, b'')
tests/test_ssh_agent_client.py           402) 
tests/test_ssh_agent_client.py           403)     @pytest.mark.parametrize(
tests/test_ssh_agent_client.py           404)         ['response_code', 'response', 'exc_type', 'exc_pattern'],
tests/test_ssh_agent_client.py           405)         [
Marco Ricci Introduce TrailingDataError...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           406)             (
Marco Ricci Add a specific error class...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 407)                 _types.SSH_AGENT.FAILURE,
tests/test_derivepassphrase_ssh_agent.py 408)                 b'',
tests/test_derivepassphrase_ssh_agent.py 409)                 ssh_agent.SSHAgentFailedError,
tests/test_derivepassphrase_ssh_agent.py 410)                 'failed to complete the request',
tests/test_derivepassphrase_ssh_agent.py 411)             ),
tests/test_derivepassphrase_ssh_agent.py 412)             (
tests/test_derivepassphrase_ssh_agent.py 413)                 _types.SSH_AGENT.IDENTITIES_ANSWER,
tests/test_derivepassphrase_ssh_agent.py 414)                 b'\x00\x00\x00\x01',
tests/test_derivepassphrase_ssh_agent.py 415)                 EOFError,
tests/test_derivepassphrase_ssh_agent.py 416)                 'truncated response',
tests/test_derivepassphrase_ssh_agent.py 417)             ),
tests/test_derivepassphrase_ssh_agent.py 418)             (
tests/test_derivepassphrase_ssh_agent.py 419)                 _types.SSH_AGENT.IDENTITIES_ANSWER,
Marco Ricci Introduce TrailingDataError...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           420)                 b'\x00\x00\x00\x00abc',
Marco Ricci Move `sequin` and `ssh_agen...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 421)                 ssh_agent.TrailingDataError,
Marco Ricci Fix style issues with ruff...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           422)                 'Overlong response',
Marco Ricci Introduce TrailingDataError...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           423)             ),
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           424)         ],
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           425)     )
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           426)     def test_320_list_keys_error_responses(
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           427)         self,
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 428)         monkeypatch: pytest.MonkeyPatch,
Marco Ricci Let the `running_ssh_agent`...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 429)         running_ssh_agent: tests.RunningSSHAgentInfo,
Marco Ricci Add a specific error class...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 430)         response_code: _types.SSH_AGENT,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           431)         response: bytes | bytearray,
tests/test_ssh_agent_client.py           432)         exc_type: type[Exception],
tests/test_ssh_agent_client.py           433)         exc_pattern: str,
tests/test_ssh_agent_client.py           434)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 435)         del running_ssh_agent
tests/test_derivepassphrase_ssh_agent.py 436) 
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 437)         passed_response_code = response_code
tests/test_derivepassphrase_ssh_agent.py 438) 
tests/test_derivepassphrase_ssh_agent.py 439)         def request(
tests/test_derivepassphrase_ssh_agent.py 440)             request_code: int | _types.SSH_AGENTC,
tests/test_derivepassphrase_ssh_agent.py 441)             payload: bytes | bytearray,
tests/test_derivepassphrase_ssh_agent.py 442)             /,
tests/test_derivepassphrase_ssh_agent.py 443)             *,
tests/test_derivepassphrase_ssh_agent.py 444)             response_code: Iterable[int | _types.SSH_AGENT]
tests/test_derivepassphrase_ssh_agent.py 445)             | int
tests/test_derivepassphrase_ssh_agent.py 446)             | _types.SSH_AGENT
tests/test_derivepassphrase_ssh_agent.py 447)             | None = None,
tests/test_derivepassphrase_ssh_agent.py 448)         ) -> tuple[int, bytes | bytearray] | bytes | bytearray:
tests/test_derivepassphrase_ssh_agent.py 449)             del request_code
tests/test_derivepassphrase_ssh_agent.py 450)             del payload
tests/test_derivepassphrase_ssh_agent.py 451)             if isinstance(  # pragma: no branch
Marco Ricci Add support for Python 3.9

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 452)                 response_code, (int, _types.SSH_AGENT)
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 453)             ):
tests/test_derivepassphrase_ssh_agent.py 454)                 response_code = frozenset({response_code})
tests/test_derivepassphrase_ssh_agent.py 455)             if response_code is not None:  # pragma: no branch
tests/test_derivepassphrase_ssh_agent.py 456)                 response_code = frozenset({
tests/test_derivepassphrase_ssh_agent.py 457)                     c if isinstance(c, int) else c.value for c in response_code
tests/test_derivepassphrase_ssh_agent.py 458)                 })
tests/test_derivepassphrase_ssh_agent.py 459) 
tests/test_derivepassphrase_ssh_agent.py 460)             if not response_code:  # pragma: no cover
tests/test_derivepassphrase_ssh_agent.py 461)                 return (passed_response_code.value, response)
tests/test_derivepassphrase_ssh_agent.py 462)             if passed_response_code.value not in response_code:
tests/test_derivepassphrase_ssh_agent.py 463)                 raise ssh_agent.SSHAgentFailedError(
tests/test_derivepassphrase_ssh_agent.py 464)                     passed_response_code.value, response
tests/test_derivepassphrase_ssh_agent.py 465)                 )
tests/test_derivepassphrase_ssh_agent.py 466)             return response
tests/test_derivepassphrase_ssh_agent.py 467) 
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 468)         with monkeypatch.context() as monkeypatch2:
tests/test_derivepassphrase_ssh_agent.py 469)             client = ssh_agent.SSHAgentClient()
tests/test_derivepassphrase_ssh_agent.py 470)             monkeypatch2.setattr(client, 'request', request)
tests/test_derivepassphrase_ssh_agent.py 471)             with pytest.raises(exc_type, match=exc_pattern):
tests/test_derivepassphrase_ssh_agent.py 472)                 client.list_keys()
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           473) 
tests/test_ssh_agent_client.py           474)     @pytest.mark.parametrize(
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 475)         [
tests/test_derivepassphrase_ssh_agent.py 476)             'key',
tests/test_derivepassphrase_ssh_agent.py 477)             'check',
tests/test_derivepassphrase_ssh_agent.py 478)             'response_code',
tests/test_derivepassphrase_ssh_agent.py 479)             'response',
tests/test_derivepassphrase_ssh_agent.py 480)             'exc_type',
tests/test_derivepassphrase_ssh_agent.py 481)             'exc_pattern',
tests/test_derivepassphrase_ssh_agent.py 482)         ],
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           483)         [
tests/test_ssh_agent_client.py           484)             (
tests/test_ssh_agent_client.py           485)                 b'invalid-key',
tests/test_ssh_agent_client.py           486)                 True,
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 487)                 _types.SSH_AGENT.FAILURE,
tests/test_derivepassphrase_ssh_agent.py 488)                 b'',
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           489)                 KeyError,
tests/test_ssh_agent_client.py           490)                 'target SSH key not loaded into agent',
tests/test_ssh_agent_client.py           491)             ),
tests/test_ssh_agent_client.py           492)             (
tests/test_ssh_agent_client.py           493)                 tests.SUPPORTED_KEYS['ed25519']['public_key_data'],
tests/test_ssh_agent_client.py           494)                 True,
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 495)                 _types.SSH_AGENT.FAILURE,
tests/test_derivepassphrase_ssh_agent.py 496)                 b'',
Marco Ricci Add a specific error class...

Marco Ricci authored 4 months ago

tests/test_derivepassphrase_ssh_agent.py 497)                 ssh_agent.SSHAgentFailedError,
tests/test_derivepassphrase_ssh_agent.py 498)                 'failed to complete the request',
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           499)             ),
tests/test_ssh_agent_client.py           500)         ],
Marco Ricci Rename and regroup all test...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           501)     )
Marco Ricci Reformat everything with ruff

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           502)     def test_330_sign_error_responses(
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           503)         self,
Marco Ricci Clean up testing machinery...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 504)         monkeypatch: pytest.MonkeyPatch,
Marco Ricci Let the `running_ssh_agent`...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 505)         running_ssh_agent: tests.RunningSSHAgentInfo,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           506)         key: bytes | bytearray,
tests/test_ssh_agent_client.py           507)         check: bool,
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 508)         response_code: _types.SSH_AGENT,
tests/test_derivepassphrase_ssh_agent.py 509)         response: bytes | bytearray,
Marco Ricci Fix typing issues in mypy s...

Marco Ricci authored 5 months ago

tests/test_ssh_agent_client.py           510)         exc_type: type[Exception],
tests/test_ssh_agent_client.py           511)         exc_pattern: str,
tests/test_ssh_agent_client.py           512)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 513)         del running_ssh_agent
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 514)         passed_response_code = response_code
tests/test_derivepassphrase_ssh_agent.py 515) 
tests/test_derivepassphrase_ssh_agent.py 516)         def request(
tests/test_derivepassphrase_ssh_agent.py 517)             request_code: int | _types.SSH_AGENTC,
tests/test_derivepassphrase_ssh_agent.py 518)             payload: bytes | bytearray,
tests/test_derivepassphrase_ssh_agent.py 519)             /,
tests/test_derivepassphrase_ssh_agent.py 520)             *,
tests/test_derivepassphrase_ssh_agent.py 521)             response_code: Iterable[int | _types.SSH_AGENT]
tests/test_derivepassphrase_ssh_agent.py 522)             | int
tests/test_derivepassphrase_ssh_agent.py 523)             | _types.SSH_AGENT
tests/test_derivepassphrase_ssh_agent.py 524)             | None = None,
tests/test_derivepassphrase_ssh_agent.py 525)         ) -> tuple[int, bytes | bytearray] | bytes | bytearray:
tests/test_derivepassphrase_ssh_agent.py 526)             del request_code
tests/test_derivepassphrase_ssh_agent.py 527)             del payload
tests/test_derivepassphrase_ssh_agent.py 528)             if isinstance(  # pragma: no branch
Marco Ricci Add support for Python 3.9

Marco Ricci authored 2 months ago

tests/test_derivepassphrase_ssh_agent.py 529)                 response_code, (int, _types.SSH_AGENT)
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 530)             ):
tests/test_derivepassphrase_ssh_agent.py 531)                 response_code = frozenset({response_code})
tests/test_derivepassphrase_ssh_agent.py 532)             if response_code is not None:  # pragma: no branch
tests/test_derivepassphrase_ssh_agent.py 533)                 response_code = frozenset({
tests/test_derivepassphrase_ssh_agent.py 534)                     c if isinstance(c, int) else c.value for c in response_code
tests/test_derivepassphrase_ssh_agent.py 535)                 })
tests/test_derivepassphrase_ssh_agent.py 536) 
tests/test_derivepassphrase_ssh_agent.py 537)             if not response_code:  # pragma: no cover
tests/test_derivepassphrase_ssh_agent.py 538)                 return (passed_response_code.value, response)
tests/test_derivepassphrase_ssh_agent.py 539)             if (
tests/test_derivepassphrase_ssh_agent.py 540)                 passed_response_code.value not in response_code
tests/test_derivepassphrase_ssh_agent.py 541)             ):  # pragma: no branch
tests/test_derivepassphrase_ssh_agent.py 542)                 raise ssh_agent.SSHAgentFailedError(
tests/test_derivepassphrase_ssh_agent.py 543)                     passed_response_code.value, response
tests/test_derivepassphrase_ssh_agent.py 544)                 )
tests/test_derivepassphrase_ssh_agent.py 545)             return response  # pragma: no cover
tests/test_derivepassphrase_ssh_agent.py 546) 
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 547)         with monkeypatch.context() as monkeypatch2:
tests/test_derivepassphrase_ssh_agent.py 548)             client = ssh_agent.SSHAgentClient()
tests/test_derivepassphrase_ssh_agent.py 549)             monkeypatch2.setattr(client, 'request', request)
tests/test_derivepassphrase_ssh_agent.py 550)             KeyCommentPair = _types.KeyCommentPair  # noqa: N806
tests/test_derivepassphrase_ssh_agent.py 551)             loaded_keys = [
tests/test_derivepassphrase_ssh_agent.py 552)                 KeyCommentPair(v['public_key_data'], b'no comment')
tests/test_derivepassphrase_ssh_agent.py 553)                 for v in tests.SUPPORTED_KEYS.values()
tests/test_derivepassphrase_ssh_agent.py 554)             ]
tests/test_derivepassphrase_ssh_agent.py 555)             monkeypatch2.setattr(client, 'list_keys', lambda: loaded_keys)
tests/test_derivepassphrase_ssh_agent.py 556)             with pytest.raises(exc_type, match=exc_pattern):
tests/test_derivepassphrase_ssh_agent.py 557)                 client.sign(key, b'abc', check_if_key_loaded=check)
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 558) 
tests/test_derivepassphrase_ssh_agent.py 559)     @pytest.mark.parametrize(
tests/test_derivepassphrase_ssh_agent.py 560)         ['request_code', 'response_code', 'exc_type', 'exc_pattern'],
tests/test_derivepassphrase_ssh_agent.py 561)         [
tests/test_derivepassphrase_ssh_agent.py 562)             (
tests/test_derivepassphrase_ssh_agent.py 563)                 _types.SSH_AGENTC.REQUEST_IDENTITIES,
tests/test_derivepassphrase_ssh_agent.py 564)                 _types.SSH_AGENT.SUCCESS,
tests/test_derivepassphrase_ssh_agent.py 565)                 ssh_agent.SSHAgentFailedError,
tests/test_derivepassphrase_ssh_agent.py 566)                 f'[Code {_types.SSH_AGENT.IDENTITIES_ANSWER.value}]',
tests/test_derivepassphrase_ssh_agent.py 567)             ),
tests/test_derivepassphrase_ssh_agent.py 568)         ],
tests/test_derivepassphrase_ssh_agent.py 569)     )
tests/test_derivepassphrase_ssh_agent.py 570)     def test_340_request_error_responses(
tests/test_derivepassphrase_ssh_agent.py 571)         self,
Marco Ricci Let the `running_ssh_agent`...

Marco Ricci authored 3 weeks ago

tests/test_derivepassphrase_ssh_agent.py 572)         running_ssh_agent: tests.RunningSSHAgentInfo,
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 573)         request_code: _types.SSH_AGENTC,
tests/test_derivepassphrase_ssh_agent.py 574)         response_code: _types.SSH_AGENT,
tests/test_derivepassphrase_ssh_agent.py 575)         exc_type: type[Exception],
tests/test_derivepassphrase_ssh_agent.py 576)         exc_pattern: str,
tests/test_derivepassphrase_ssh_agent.py 577)     ) -> None:
Marco Ricci Add test fixture for manual...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 578)         del running_ssh_agent
tests/test_derivepassphrase_ssh_agent.py 579) 
Marco Ricci Support passing expected SS...

Marco Ricci authored 3 months ago

tests/test_derivepassphrase_ssh_agent.py 580)         with (
tests/test_derivepassphrase_ssh_agent.py 581)             pytest.raises(exc_type, match=exc_pattern),
tests/test_derivepassphrase_ssh_agent.py 582)             ssh_agent.SSHAgentClient() as client,
tests/test_derivepassphrase_ssh_agent.py 583)         ):
tests/test_derivepassphrase_ssh_agent.py 584)             client.request(request_code, b'', response_code=response_code)