diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2013-09-13 07:22:45 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2013-09-13 07:22:45 (GMT) |
commit | 187b06300518d35d04454238c240fdfd28864141 (patch) | |
tree | 58fd441d9468e0fc35a4d707c55f1c10b6d66656 /Lib/test/test_httpservers.py | |
parent | 5abf3d9926be2c84d80e4c2bc775f175521a8a38 (diff) | |
parent | 72c238e21ae78f8da969c46a2b7317ff9904d155 (diff) | |
download | cpython-187b06300518d35d04454238c240fdfd28864141.zip cpython-187b06300518d35d04454238c240fdfd28864141.tar.gz cpython-187b06300518d35d04454238c240fdfd28864141.tar.bz2 |
Fix http.server's request handling case on trailing '/'.
Patch contributed by Vajrasky Kok. Addresses Issue #17324
Diffstat (limited to 'Lib/test/test_httpservers.py')
-rw-r--r-- | Lib/test/test_httpservers.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_httpservers.py b/Lib/test/test_httpservers.py index ec751cc..4083afc 100644 --- a/Lib/test/test_httpservers.py +++ b/Lib/test/test_httpservers.py @@ -270,6 +270,9 @@ class SimpleHTTPServerTestCase(BaseTestCase): #constructs the path relative to the root directory of the HTTPServer response = self.request(self.tempdir_name + '/test') self.check_status_and_reason(response, 200, data=self.data) + # check for trailing "/" which should return 404. See Issue17324 + response = self.request(self.tempdir_name + '/test/') + self.check_status_and_reason(response, 404) response = self.request(self.tempdir_name + '/') self.check_status_and_reason(response, 200) response = self.request(self.tempdir_name) |