summaryrefslogtreecommitdiff
path: root/tests/backdoor_test.py
Commit message (Collapse)AuthorAgeFilesLines
* Python 3 compat: Improve various bitsJakub Stasiak2014-10-101-6/+6
| | | | | | | | | | | | | | | | | | This includes changes to WSGI, websocket, bytes/str/unicode handling, SSL, backdoor, greenio and tests. Some comments and conditionals (PY2/PY3) were added for clarity GH issues: Closes #106 Closes #111 Closes #118 Closes #141 Incidentally should also close #135 (reopen if didn't) cc #6
* tests: deprecated TestCase.assert_() -> assert keywordSergey Shepelev2014-07-161-2/+2
| | | | https://github.com/eventlet/eventlet/issues/101
* python3 compatibilitySergey Shepelev2014-04-241-3/+3
| | | | | | | | | | | | - __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-6/+6
| | | | | | | - dict.items().pop() in proc - str/bytes in backdoor, api_test, ssl_test, test__refcount - import httplib from six - PEP-8 fixes
* python3 compat: print() function syntaxSergey Shepelev2013-12-031-2/+2
|
* py3k - more testcases portedamajorek2010-03-071-3/+3
|
* Closing the backdoor client socket closes the waiting server, yay.Ryan Williams2010-02-241-0/+5
|
* Removed Green_fileobject and moved its contents to GreenPipe. Removed ↵Ryan Williams2010-01-021-0/+29
higher_order_send and higher_order_recv, integrating their contents with the appropriate methods on GreenSocket and GreenPipe. Fixed up callsites that were depending on various aspects of Green_fileobject's behavior. Added a backdoor unit test.