From e2908ecb3e20a629be801ddb826c474f7e7023ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?George-Cristian=20B=C3=AErzan?= Date: Wed, 10 Jan 2018 10:59:10 -0500 Subject: [PATCH] Added more tests for HttpRequest.build_absolute_uri(). --- tests/requests/tests.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/requests/tests.py b/tests/requests/tests.py index 9df81230a0..e1c25a2f6d 100644 --- a/tests/requests/tests.py +++ b/tests/requests/tests.py @@ -797,8 +797,11 @@ class BuildAbsoluteURITests(SimpleTestCase): ('http://example.com/?foo=bar', 'http://example.com/?foo=bar'), # A schema-relative URL ('//example.com/?foo=bar', 'http://example.com/?foo=bar'), - # A relative URL + # Relative URLs ('/foo/bar/', 'http://testserver/foo/bar/'), + ('/foo/./bar/', 'http://testserver/foo/bar/'), + ('/foo/../bar/', 'http://testserver/bar/'), + ('///foo/bar/', 'http://testserver/foo/bar/'), ) for location, expected_url in tests: with self.subTest(location=location):