From b832de869eb6a7ada946bbe1c1a8228e153e254a Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 10 Feb 2018 15:45:57 -0500 Subject: [PATCH] Added tests for utils.html.urlize() (lazy string inputs were untested). --- tests/utils_tests/test_html.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/tests/utils_tests/test_html.py b/tests/utils_tests/test_html.py index e2ebce4556..4f0cc8d459 100644 --- a/tests/utils_tests/test_html.py +++ b/tests/utils_tests/test_html.py @@ -5,7 +5,7 @@ from django.test import SimpleTestCase from django.utils.functional import lazystr from django.utils.html import ( conditional_escape, escape, escapejs, format_html, html_safe, json_script, - linebreaks, smart_urlquote, strip_spaces_between_tags, strip_tags, + linebreaks, smart_urlquote, strip_spaces_between_tags, strip_tags, urlize, ) from django.utils.safestring import mark_safe @@ -238,3 +238,18 @@ class TestUtilsHtml(SimpleTestCase): @html_safe class HtmlClass: pass + + def test_urlize(self): + tests = ( + ( + 'Search for google.com/?q=! and see.', + 'Search for google.com/?q=! and see.' + ), + ( + lazystr('Search for google.com/?q=!'), + 'Search for google.com/?q=!' + ), + ) + for value, output in tests: + with self.subTest(value=value): + self.assertEqual(urlize(value), output)