1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Added test for too large input to django.utils.http.base36_to_int().

This commit is contained in:
Mads Jensen
2017-09-21 16:21:02 +02:00
committed by Tim Graham
parent 4fe6588da3
commit 41a7876991

View File

@@ -61,6 +61,9 @@ class TestUtilsHttp(unittest.TestCase):
for n in ['#', ' ']:
with self.assertRaises(ValueError):
http.base36_to_int(n)
with self.assertRaises(ValueError) as cm:
http.base36_to_int('1' * 14)
self.assertEqual('Base36 input too large', str(cm.exception))
for n in [123, {1: 2}, (1, 2, 3), 3.141]:
with self.assertRaises(TypeError):
http.base36_to_int(n)