summaryrefslogtreecommitdiff
path: root/tests/test_client.py
Commit message (Collapse)AuthorAgeFilesLines
* webob.client: there's no errno.ENODATA on winSergey Schetinin2012-05-151-4/+7
|
* give webob.client test coverage. as a result: remove with_urllib3 ↵Chris McDonough2012-05-081-133/+237
| | | | classmethod of SendRequest (it didnt actually work; the __call__ method always used httplib.HTTPConnection/httplib.HTTPSConnection anyway, and when I changed that to be self.HTTPConnection, it failed tests), get rid of test_bad_server problematic test, rename test_client.py to test_client_functional.py (test_client.py is unittests)
* Add some more tests for some of the corner casesIan Bicking2012-04-261-5/+56
|
* Comment out test that can't run on all machines successfullyIan Bicking2012-04-261-3/+6
|
* Be more aware of when timeouts are supported, and only test timeout support ↵Ian Bicking2012-04-261-0/+5
| | | | when it is available (not Python 2.6 and earlier, when using httplib)
* Change webob.client tests to use test_in_wsgiref server setupIan Bicking2012-04-261-56/+25
|
* Try to catch errno 111 as connection refused, in addition to 61Ian Bicking2012-04-141-2/+2
|
* Try to quiet some of the server errorsIan Bicking2012-04-141-1/+11
|
* Add some more tests for webob.client. Catch some error cases. Handle ↵Ian Bicking2012-04-141-4/+30
| | | | multiline headers on Python 3
* Run tests with a dynamically-allocated portIan Bicking2012-04-131-12/+11
|
* Turned sample_request_app into a class, so you can override the connection ↵Ian Bicking2012-04-131-5/+16
| | | | handlers. Add urllib3 support. Make tests serialize a bit better to avoid concurrency test problems.
* Add webob.client, to send requests over HTTP. Rename Request.get_response ↵Ian Bicking2012-04-131-0/+60
to Request.send. Make webob.client.send_request_app the default app for Request.send()