summaryrefslogtreecommitdiff
path: root/tests/ssl_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove most of the deprecated codeJakub Stasiak2014-10-101-13/+15
| | | | Closes GH #144
* python3 compatibilitySergey Shepelev2014-04-241-7/+7
| | | | | | | | | | | | - __next__ for iterator interface - six.next() to get next item - list(dict.keys()) - popen2.popen4 -> subprocess - s2b -> b"..." literals - deprecated assertEquals -> assertEqual - hub_test test_fork using run_python - 1L -> 1 long literal - many PEP-8 fixes
* python3 compatibilitySergey Shepelev2014-04-231-28/+28
| | | | | | | - dict.items().pop() in proc - str/bytes in backdoor, api_test, ssl_test, test__refcount - import httplib from six - PEP-8 fixes
* green.ssl: Fix NameError GH-17Jakub Stasiak2013-08-121-12/+34
| | | | https://github.com/eventlet/eventlet/issues/17
* doc: fix bitbucket links after relocation to separate accountSergey Shepelev2013-04-091-1/+1
|
* tests: ssl: socket.sendall() busy loop when client is reading slowlySergey Shepelev2013-01-111-11/+52
| | | | https://bitbucket.org/which_linden/eventlet/issue/134
* Skip SSL tests if SSL is not availableFloris Bruynooghe2012-09-051-2/+7
| | | | | This is particularly useful to not require the external OpenSSL module in order to run the tests on python2.5.
* Test case that exercises issue #104.Brandon Craig Rhodes2011-11-031-0/+22
|
* Support for SSL websockets, which also happens to improve our SSL support in ↵Ryan Williams2010-09-161-4/+1
| | | | WSGI generally. Fixes #62.
* tweaks to remove some DeprecationWarnings when running testsEugene Oden2010-02-221-15/+25
|
* Added a connect test.Ryan Williams2009-12-061-0/+15
|
* Added eventlet.green.OpenSSL to further rationalize our SSL support, carved ↵Ryan Williams2009-11-271-0/+70
off ssl tests into ssl_test.py, and added some docs on coverage.