summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_httpservers.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #20155: Fix non-buildbot test failure on Windows. Patch by Claudiu Popa,Terry Jan Reedy2014-10-181-1/+1
| | | | revised by R. David Murray.
* Issue #22165: Fixed test_undecodable_filename on Mac OS.Serhiy Storchaka2014-08-171-0/+7
|
* Issue #22165: Fixed test_undecodable_filename on non-UTF-8 locales.Serhiy Storchaka2014-08-171-2/+3
|
* Issue #22165: SimpleHTTPRequestHandler now supports undecodable file names.Serhiy Storchaka2014-08-171-0/+19
|
* Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-0/+16
|\ | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
| * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-0/+16
| |\ | | | | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
| | * Issue #21323: Fix http.server to again handle scripts in CGI subdirectories,Ned Deily2014-07-131-0/+16
| | | | | | | | | | | | broken by the fix for security issue #19435. Patch by Zach Byrne.
* | | #20155: use fake HTTP method names so windows doesn't hang the tests.R David Murray2014-06-241-2/+3
| | | | | | | | | | | | | | | | | | | | | Windows was seeing the 'GET' generated by these tests as invalid and forcibly closing the socket, causing the test to fail. Patch by Jeff Allen.
* | | merge 3.3Benjamin Peterson2014-06-171-1/+1
|\ \ \ | |/ /
| * | merge 3.2Benjamin Peterson2014-06-171-1/+1
| |\ \ | | |/
| | * expect the correct platform-dependent linesepBenjamin Peterson2014-06-171-1/+1
| | |
* | | merge 3.3 (#21766)Benjamin Peterson2014-06-151-0/+5
|\ \ \ | |/ /
| * | merge 3.2 (#21766)Benjamin Peterson2014-06-151-0/+5
| |\ \ | | |/
| | * url unquote the path before checking if it refers to a CGI script (closes ↵Benjamin Peterson2014-06-151-0/+5
| | | | | | | | | | | | #21766)
* | | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-081-1/+1
|\ \ \ | |/ / | | | | | | tests.
| * | Issue #20555: Use specific asserts in urllib, httplib, ftplib, cgi, wsgiref ↵Serhiy Storchaka2014-02-081-1/+1
| | | | | | | | | | | | tests.
* | | merge 3.3 (#18574)Benjamin Peterson2014-01-191-2/+4
|\ \ \ | |/ /
| * | fix handling of 100-continue status code (closes #18574)Benjamin Peterson2014-01-191-2/+4
| | |
* | | merge 3.3 (#19435)Benjamin Peterson2013-10-301-0/+12
|\ \ \ | |/ /
| * | merge 3.2 (#19435)Benjamin Peterson2013-10-301-0/+12
| |\ \ | | |/
| | * merge 3.1 (#19435)Benjamin Peterson2013-10-301-0/+12
| | |\
| | | * use the collapsed path in the run_cgi method (closes #19435)Benjamin Peterson2013-10-301-0/+10
| | | |
* | | | Fix http.server's request handling case on trailing '/'.Senthil Kumaran2013-09-131-0/+3
|\ \ \ \ | |/ / / | | | | | | | | Patch contributed by Vajrasky Kok. Addresses Issue #17324
| * | | Fix http.server's request handling case on trailing '/'.Senthil Kumaran2013-09-131-0/+3
| | | | | | | | | | | | | | | | Patch contributed by Vajrasky Kok. Addresses Issue #17324
* | | | #1291 http.server's send_error takes an optional explain argumentSenthil Kumaran2013-03-151-0/+10
| | | |
* | | | Do not raise self.skipTest().Serhiy Storchaka2013-02-041-2/+1
|\ \ \ \ | |/ / / | | | | | | | | skipTest() already raises an exception.
| * | | Do not raise self.skipTest().Serhiy Storchaka2013-02-041-2/+1
| |\ \ \ | | |/ / | | | | | | | | skipTest() already raises an exception.
| | * | Do not raise self.skipTest().Serhiy Storchaka2013-02-041-2/+1
| | | | | | | | | | | | | | | | skipTest() already raises an exception.
* | | | code smell. remove pdbSenthil Kumaran2012-10-111-1/+0
| | | |
* | | | Issue #16088: BaseHTTPRequestHandler's send_error method includes aSenthil Kumaran2012-10-111-0/+12
|/ / / | | | | | | | | | Content-Length header. Patch by Antoine Pitrou.
* | | Speed up test_httpservers by avoiding a one-second cleanup wait after each ↵Antoine Pitrou2012-09-291-0/+1
|\ \ \ | |/ / | | | | | | test case.
| * | Speed up test_httpservers by avoiding a one-second cleanup wait after each ↵Antoine Pitrou2012-09-291-0/+1
| | | | | | | | | | | | test case.
* | | Fix CGI tests to take into account the platform's line ending (issue #13119)Antoine Pitrou2012-08-051-5/+7
|\ \ \ | |/ /
| * | Fix CGI tests to take into account the platform's line ending (issue #13119)Antoine Pitrou2012-08-051-5/+7
| | |
* | | merge to default - Issue 10484 - Incorporate improvements to CGI module - ↵Senthil Kumaran2012-04-111-25/+28
|\ \ \ | |/ / | | | | | | Suggested by Glenn Linderman. Refactor code and tests
| * | 3.2 - Issue 10484 - Incorporate improvements to CGI module - Suggested by ↵Senthil Kumaran2012-04-111-25/+28
| | | | | | | | | | | | Glenn Linderman. Refactor code and tests
* | | merge - fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-101-1/+0
|\ \ \ | |/ /
| * | 3.2- fix the incorrect changes made for PATH_INFO value - Issue10484Senthil Kumaran2012-04-101-1/+0
| | |
* | | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problemSenthil Kumaran2012-03-161-0/+1
|\ \ \ | |/ /
| * | closes issue10484 - Fix the http.server's cgi PATH_INFO handling problemSenthil Kumaran2012-03-161-0/+1
| | |
* | | Issue #13308: Fix test_httpservers failures when run as root.Charles-François Natali2011-11-021-2/+6
|\ \ \ | |/ /
| * | Issue #13308: Fix test_httpservers failures when run as root.Charles-François Natali2011-11-021-2/+6
| | |
* | | Issue #3709: a flush_headers method to BaseHTTPRequestHandler which manages theSenthil Kumaran2011-05-091-17/+56
|/ / | | | | | | | | sending of headers to output stream and flushing the internal headers buffer. Patch contribution by Andrew Schaaf
* | Try to strengthen test_httpservers (issue #11617)Antoine Pitrou2011-03-201-4/+4
| |
* | #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\ \ | |/
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| |
| * Merged revisions 87373,87381 via svnmerge fromAntoine Pitrou2010-12-181-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87373 | senthil.kumaran | 2010-12-18 17:55:23 +0100 (sam., 18 déc. 2010) | 3 lines Fix Issue6791 - Limit the HTTP header readline with _MAXLENGTH. Patch by Antoine Pitrou ........ r87381 | antoine.pitrou | 2010-12-18 18:59:18 +0100 (sam., 18 déc. 2010) | 3 lines NEWS entry for r87373 ........
| * svnmerge fooled me. That test class already existed.Antoine Pitrou2010-12-161-80/+8
| |
| * Forgot to enable this testAntoine Pitrou2010-12-161-0/+1
| |
| * Merged revisions 87317 via svnmerge fromAntoine Pitrou2010-12-161-0/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87317 | antoine.pitrou | 2010-12-16 17:48:36 +0100 (jeu., 16 déc. 2010) | 4 lines Issue #10714: Limit length of incoming request in http.server to 65536 bytes for security reasons. Initial patch by Ross Lagerwall. ........ (also backport some tests)