Increased test coverage of django.utils.http.

This commit is contained in:
Hasan Ramezani 2018-11-03 16:13:28 +01:00 committed by Tim Graham
parent 9a63d840ff
commit 6b7f1c2530
1 changed files with 5 additions and 0 deletions

View File

@ -233,6 +233,7 @@ class IsSameDomainTests(unittest.TestCase):
('example2.com', 'example.com'),
('foo.example.com', 'example.com'),
('example.com:9999', 'example.com:8888'),
('foo.example.com:8888', ''),
):
self.assertIs(is_same_domain(*pair), False)
@ -276,6 +277,10 @@ class HttpDateProcessingTests(unittest.TestCase):
parsed = parse_http_date('Sun Nov 6 08:49:37 1994')
self.assertEqual(datetime.utcfromtimestamp(parsed), datetime(1994, 11, 6, 8, 49, 37))
def test_parsing_year_less_than_70(self):
parsed = parse_http_date('Sun Nov 6 08:49:37 0050')
self.assertEqual(datetime.utcfromtimestamp(parsed), datetime(2050, 11, 6, 8, 49, 37))
class EscapeLeadingSlashesTests(unittest.TestCase):
def test(self):