summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httplib.py
Commit message (Collapse)AuthorAgeFilesLines
* handle headers with no key (closes #19996)Benjamin Peterson2015-01-261-0/+10
| | | | Patch by Cory Benfield.
* Increase http.client.HTTPConnection test coverage.Senthil Kumaran2015-01-251-25/+42
| | | | | Added a new tunnel test to verify setting of _tunnel_host, _tunnel_port, _tunnel_headers attributes on HTTPConnection object.
* make sure server threads get cleaned upBenjamin Peterson2014-12-131-0/+1
|
* Issue #22095: Fixed HTTPConnection.set_tunnel with default port. The portSerhiy Storchaka2014-12-121-3/+5
| | | | value in the host header was set to "None". Patch by Demian Brecht.
* HTTPSConnection: prefer the context's check_hostname attribute over the ↵Benjamin Peterson2014-12-071-0/+14
| | | | constructor parameter (#22959)
* Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails.Serhiy Storchaka2014-12-011-1/+24
| | | | Original patch by Martin Panter.
* don't fail tests when www.python.org can't be validated by the systemBenjamin Peterson2014-11-251-0/+1
|
* test_httplib: use self-signed.pythontest.net for verification test with ↵Georg Brandl2014-11-051-12/+8
| | | | non-root-CA cert
* PEP 476: enable HTTPS certificate verification by default (#22417)Benjamin Peterson2014-11-031-9/+40
| | | | Patch by Alex Gaynor with some modifications by me.
* Issue #7776: Fix ``Host:'' header and reconnection when using ↵Senthil Kumaran2014-04-141-2/+48
| | | | | | http.client.HTTPConnection.set_tunnel(). Patch by Nikolaus Rath.
* Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-081-3/+3
|\ | | | | | | tests.
| * Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-081-3/+3
| | | | | | | | tests.
* | Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+3
|\ \ | |/ | | | | Original patch by Simon Sapin.
| * Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.Serhiy Storchaka2013-12-171-0/+3
| | | | | | | | Original patch by Simon Sapin.
* | merge with 3.3Georg Brandl2013-10-271-0/+9
|\ \ | |/
| * Issue #16037: HTTPMessage.readheaders() raises an HTTPException when more thanGeorg Brandl2013-10-271-0/+9
| | | | | | | | 100 headers are read. Adapted from patch by Jyrki Pulliainen.
* | Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-4/+4
|\ \ | |/ | | | | in docstrings and comments.
| * Issue #18743: Fix references to non-existant "StringIO" moduleSerhiy Storchaka2013-08-291-4/+4
| | | | | | | | in docstrings and comments.
* | Issue #16658: add missing return to HTTPConnection.send().Andrew Svetlov2013-04-121-0/+21
|\ \ | |/ | | | | Patch by Jeff Knupp
| * Issue #16658: add missing return to HTTPConnection.send().Andrew Svetlov2013-04-121-0/+21
| | | | | | | | Patch by Jeff Knupp
* | Issue #16723: httplib.HTTPResponse no longer marked closed when the connectionSerhiy Storchaka2013-02-061-0/+24
|\ \ | |/ | | | | is automatically closed.
| * Issue #16723: httplib.HTTPResponse no longer marked closed when the connectionSerhiy Storchaka2013-02-061-0/+24
| |\ | | | | | | | | | is automatically closed.
| | * Issue #16723: httplib.HTTPResponse no longer marked closed when the connectionSerhiy Storchaka2013-02-061-0/+18
| | | | | | | | | | | | is automatically closed.
* | | Issue #17107: Test client-side SNI support in urllib.request thanks to the ↵Antoine Pitrou2013-02-051-1/+1
| | | | | | | | | | | | | | | | | | new server-side SNI support in the ssl module. Initial patch by Daniel Black.
* | | Issue #15633: httplib.HTTPResponse is now mark closed when the server sends ↵Antoine Pitrou2013-02-021-3/+34
|\ \ \ | |/ / | | | | | | less than the advertised Content-Length.
| * | Issue #15633: httplib.HTTPResponse is now mark closed when the server sends ↵Antoine Pitrou2013-02-021-3/+34
| |\ \ | | |/ | | | | | | less than the advertised Content-Length.
| | * Issue #15633: httplib.HTTPResponse is now mark closed when the server sends ↵Antoine Pitrou2013-02-021-3/+15
| | | | | | | | | | | | less than the advertised Content-Length.
* | | Issue #16833: In http.client.HTTPConnection, do not concatenate the request ↵Antoine Pitrou2013-01-021-0/+24
| | | | | | | | | | | | | | | | | | headers and body when the payload exceeds 16 KB, since it can consume more memory for no benefit. Patch by Benno Leslie.
* | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-2/+2
|/ /
* | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-151-2/+34
|\ \ | |/ | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
| * Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-151-1/+14
| | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
* | merge - Fix Issue14721: Send Content-length: 0 for empty body () in the ↵Senthil Kumaran2012-05-191-0/+28
|\ \ | |/ | | | | http.client requests
| * Fix Issue14721: Send Content-length: 0 for empty body () in the http.client ↵Senthil Kumaran2012-05-191-0/+28
| | | | | | | | requests
* | httplib test for early eof response. related to Issue13684Senthil Kumaran2012-04-291-0/+9
|\ \ | |/
| * httplib test for early eof response. related to Issue13684Senthil Kumaran2012-04-291-0/+9
| |
* | Issue #13713: fix a regression in HTTP chunked reading after 806cfe39f729Antoine Pitrou2012-01-041-15/+49
| | | | | | | | (originally issue #13464: Add a readinto() method to http.client.HTTPResponse)
* | Issue #13464: Add a readinto() method to http.client.HTTPResponse.Antoine Pitrou2011-12-061-0/+86
| | | | | | | | Patch by Jon Kuhn.
* | Issue #10860: Skip the new test if HTTPS is not availablePetri Lehtinen2011-10-261-0/+2
|\ \ | |/
| * Issue #10860: Skip the new test if HTTPS is not availablePetri Lehtinen2011-10-261-0/+2
| |
* | Merged fix for #10860 from 3.2Łukasz Langa2011-10-191-2/+22
|\ \ | |/
| * Fixes #10860: Handle empty port after port delimiter in httplibŁukasz Langa2011-10-181-2/+22
| |
* | Merge 3.2: test_httplib removes temporary filesVictor Stinner2011-09-201-0/+2
|\ \ | |/
| * test_httplib removes temporary filesVictor Stinner2011-09-201-0/+2
| |
* | Silence the altered state warning about threadgs when running test_httplib.Brett Cannon2011-08-051-4/+4
|/
* Fix closes Issue12676 - Invalid identifier used in TypeError message in ↵Senthil Kumaran2011-08-021-0/+7
| | | | | | http.client. Reported by Popa Claudiu and Patch by Santoso Wijaya.
* Issue 10825: Minor updates to the test suite.Raymond Hettinger2011-01-061-5/+5
|
* test_httplib: fix a DeprecationWarning, assertEquals=>assertEqualVictor Stinner2011-01-041-1/+1
|
* Issue3243 - Support iterable bodies in httplib. Patch contributions by ↵Senthil Kumaran2010-12-191-0/+16
| | | | Xuanji Li and Chris AtLee.
* Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by ↵Senthil Kumaran2010-12-181-0/+27
| | | | Antoine Pitrou
* #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-12/+12
|