summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-06-031-1/+6
| |\ \ \ | | |/ /
| | * | Merge branch '2.8' into 2.9Jeff Forcier2022-06-031-1/+6
| | |\ \ | | | |/
| | | * Skip tests requiring invoke if it's not installedMichał Górny2022-06-031-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | Since invoke is an optional dependency and only one group of tests require it, skip them gracefully rather than failing if it's not present.
* | | | Merge branch '2.10' into 2.11Jeff Forcier2022-06-032-7/+6
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-06-032-7/+6
| |\ \ \ | | |/ /
| | * | Merge branch '2.8' into 2.9Jeff Forcier2022-06-032-7/+6
| | |\ \ | | | |/
| | | * Fix broken unittesty skipTest in locale decoratorJeff Forcier2022-06-031-3/+2
| | | |
| | | * sftp tests: Replace unittest partsStanislav Levin2022-06-032-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original PR https://github.com/paramiko/paramiko/pull/992 introduced several tests for sftp functionality. These tests made use of unittest's stuff like `assertTrue` and `assertEqual` because at that moment the tests were grouped under the `unittest.TestCase`-based class (`SFTPTest`). Before PR merge `unittest.TestCase` was refactored out from sftp tests (667bd74b139ed86f9b261d3abf5b6042ba80920b) but PR was not updated. The sftp tests are marked with `slow` and that's why they are not failed in CI (slow tests are excluded by default). Fixes: https://github.com/paramiko/paramiko/issues/1941 Signed-off-by: Stanislav Levin <slev@altlinux.org>
* | | | Mark new tests that require SHA1Paul Howarth2022-05-201-0/+2
| | | | | | | | | | | | | | | | Like https://github.com/paramiko/paramiko/pull/2011
* | | | Merge branch '2.10' into 2.11Jeff Forcier2022-05-201-2/+0
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-05-201-2/+0
| |\ \ \ | | |/ /
| | * | Revert "Mark new tests that require SHA1"Jeff Forcier2022-05-201-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | This reverts commit dca52aa8a2ddbc32fc874a8d235652c68e1dc3b9. Forgot this decorator wasn't ported back this far, heh.
* | | | Merge branch '2.10' into 2.11Jeff Forcier2022-05-201-0/+2
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-05-201-0/+2
| |\ \ \ | | |/ /
| | * | Mark new tests that require SHA1Paul Howarth2022-05-201-0/+2
| | | | | | | | | | | | | | | | Like https://github.com/paramiko/paramiko/pull/2011
* | | | Merge branch '2.10' into 2.11Jeff Forcier2022-05-202-0/+5
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-05-202-0/+5
| |\ \ \ | | |/ /
| | * | Add test proving #1599Jeff Forcier2022-05-202-0/+5
| | | |
* | | | Merge branch '2.10'Jeff Forcier2022-05-161-5/+37
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-05-161-5/+37
| |\ \ \ | | |/ /
| | * | Fix OpenSSH<7.8 + RSA-CERT use re: SHA2Jeff Forcier2022-05-161-5/+37
| | | | | | | | | | | | | | | | Closes #2017
* | | | replace blowfish with different cipher in testMike Roest2022-04-261-3/+3
| | | |
* | | | Remove blowfish from transport ciphersMike Roest2022-04-261-3/+3
| | | |
* | | | Merge branch '2.10'Jeff Forcier2022-04-252-3/+3
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-04-252-3/+3
| |\ \ \ | | |/ /
| | * | threading related deprecation fixes for python 3.10Narendra-Neerukonda2022-04-252-3/+3
| | | |
* | | | Massage #1951 a bitJeff Forcier2022-04-251-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | - changelog - test - tilde makes no sense here (ProxyJump is only ever [user@]host[:port] syntax) so removed it
* | | | blackenJeff Forcier2022-04-251-0/+1
| | | |
* | | | Merge branch '2.10'Jeff Forcier2022-04-252-1/+12
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-04-251-0/+5
| |\ \ \ | | |/ /
| | * | don't throw exception when comparing PKey to non-PKeyChristopher Papke2022-04-251-0/+5
| | | |
| * | | Add -cert-v01@openssh.com variants to accepted host key algorithmsJeff Forcier2022-04-221-1/+7
| | | | | | | | | | | | | | | | Solves #2035
* | | | Refactor sha1 test skipping a tadJeff Forcier2022-03-254-15/+7
| | | |
* | | | Fix for compatibility with old versions of cryptographyPaul Howarth2022-03-211-1/+2
| | | |
* | | | Remove unused variable, keep lint happyPaul Howarth2022-03-211-1/+1
| | | |
* | | | blackenPaul Howarth2022-03-213-5/+5
| | | |
* | | | Skip tests requiring sha1 signing if the backend doesn't support thatPaul Howarth2022-03-204-4/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Red Hat Enterprise Linux 9 will have SHA-1 signatures disabled by default. It is likely that SHA-1 signatures will disappear elsewhere over time too. This change detects if sha1 signatures are not supported by the backend and skips tests that rely on that functionality. This is a workaround for #2004. It would be good to reduce the reliance of the test suite on sha1 signatures except in the cases where that is explicitly being tested, and the markers added here give a decent starting point for seeing where to change things.
* | | | Merge branch '2.10'Jeff Forcier2022-03-181-0/+19
|\ \ \ \ | |/ / /
| * | | Merge branch '2.9' into 2.10Jeff Forcier2022-03-181-0/+19
| |\ \ \ | | |/ /
| | * | Fix publickey authentication with signed RSA keyJun Omae2022-03-181-0/+19
| | | |
* | | | Fix Free Software Foundation addressPaul Howarth2022-03-1518-18/+18
|/ / / | | | | | | | | | They moved from Temple Place to Franklin Street in 2005.
* | | Use args, not kwargs, to retain py2 compat for nowJeff Forcier2022-03-141-2/+2
| | |
* | | blackenJeff Forcier2022-03-111-1/+3
| | |
* | | Fix CVE re: PKey.write_private_key chmod raceJeff Forcier2022-03-111-1/+57
| | | | | | | | | | | | CVE-2022-24302 (see changelog for link)
* | | Helps to actually leverage your mocked system callsJeff Forcier2022-03-111-4/+6
| | |
* | | OpenSSH docs state %C should also work in IdentityFile and Match execJeff Forcier2022-03-112-5/+20
| | | | | | | | | | | | (at least, of what we presently ourselves support - it's also allowed in others)
* | | Prettify, add %C as acceptable controlpath token, mock gethostnameJason Brand2022-03-111-0/+1
|/ /
* | Changelog and test re #1955Jeff Forcier2021-12-241-0/+13
| |
* | Add agent RSA-SHA2 support, also tweak changelog w/ more ticketsrfc8832-sha2-key-algoJeff Forcier2021-12-231-0/+50
| |
* | Add support for RSA SHA2 host and public keysJeff Forcier2021-12-233-9/+289
| | | | | | | | | | | | Includes a handful of refactors and new semiprivate attributes on Transport and AuthHandler for better test visibility.