summaryrefslogtreecommitdiff
path: root/tests/test_client.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix import * and a bunch of PEP8 formattingScott Maxwell2014-03-071-1/+1
|
* Skip failing test on Py3Jeff Forcier2014-03-071-0/+5
|
* Fix new test for Py3 and start server in tests instead of in setUp so we can ↵Scott Maxwell2014-01-161-9/+10
| | | | skip starting server for test 5
* Merge remote-tracking branch 'master/master' into py3-support-without-py25Scott Maxwell2014-01-161-2/+29
|\ | | | | | | | | | | | | Conflicts: paramiko/__init__.py setup.py tests/test_client.py
| * Saner (to me) positive assertionJeff Forcier2014-01-081-1/+4
| |
| * Small refactorJeff Forcier2014-01-081-3/+5
| |
| * No need for 'self.tc' within a single test :)Jeff Forcier2014-01-081-6/+6
| |
| * Add a testcase for client.save_host_keys.Martin Blumenstingl2014-01-081-1/+25
| |
* | Remove byte conversions and unhexlify calls that we only needed for Py2.5 ↵Scott Maxwell2013-11-191-1/+1
| | | | | | | | support and use the `b` byte string marker instead
* | Fix some deprecation and resource warningsScott Maxwell2013-11-021-30/+30
| |
* | Make sftp.open handle binary and text, more type conversionScott Maxwell2013-11-021-3/+4
| |
* | Changes inspired by the nischu7 branchScott Maxwell2013-11-011-3/+9
| |
* | More type conversionScott Maxwell2013-10-311-1/+2
| |
* | Fix message sendingScott Maxwell2013-10-301-5/+5
| | | | | | | | Create constants for byte messages, implement asbytes so many methods can take Message and key objects directly and split get_string into get_text and get_binary. Also, change int handling to use mpint with a flag whenever the int is greater than 32 bits.
* | Use test_path to avoid relative path issuesScott Maxwell2013-10-301-8/+8
| |
* | Fix importsScott Maxwell2013-10-301-1/+2
|/
* Fixed a typo in the license header of most filesJeff Forcier2013-09-271-1/+1
| | | | | Conflicts: paramiko/proxy.py
* Fixes to failing-test teardowns to avoid more exceptions or hangsJeff Forcier2012-09-241-5/+3
| | | | | | | (cherry picked from commit 734f3d6f42ef1564f473fee5526e0354fc8196fc) Conflicts: test.py
* bug 426925: lookup host keys correctly when they have a different port.Robey Pointer2009-11-011-19/+19
|
* fix my email address to be the current one.Robey Pointer2009-07-191-1/+1
|
* [project @ robey@lag.net-20080706203706-zqxb69qrcgyuf90n]Robey Pointer2008-07-061-2/+19
| | | | | allow multiple key files to be specified in SSHClient. suggested by Bernhard Walle.
* [project @ robey@lag.net-20070213191706-v8djxd4jiunb3his]Robey Pointer2007-02-131-1/+1
| | | | bump copyright year to 2007
* [project @ robey@lag.net-20070211022553-mjbl0w7wygpl7os5]Robey Pointer2007-02-101-2/+41
| | | | add another test to check out private key auth.
* [project @ robey@lag.net-20061227194121-hzrmwbb6ea14unkg]Robey Pointer2006-12-271-0/+5
| | | | once, this test failed, so add a timer
* [project @ robey@lag.net-20061215222108-7pu0151970w1e1lp]Robey Pointer2006-12-151-1/+27
| | | | | | | | | | add a ResourceManager to replace __del__ methods, and use it in SSHClient to automatically close any open transport when the SSHClient is collected. this won't work on Transport itself (to close the attached packetizer) because Transport starts up its own thread, and the threading library keeps a Transport object alive to run that thread. i think that's okay; the SSHClient interface is meant to be the easier one, so that's the one where it's important that some auto-cleanup is attempted.
* [project @ robey@lag.net-20060508002007-3b7b87c361fe876a]Robey Pointer2006-05-071-0/+127
add unit tests for SSHClient, and fix a few bugs that uncovered