diff options
| author | Erik Romijn <eromijn@solidlinks.nl> | 2014-03-01 10:42:08 +0100 |
|---|---|---|
| committer | Erik Romijn <eromijn@solidlinks.nl> | 2014-03-01 14:07:57 +0100 |
| commit | 775975f15d7d461c154e558cba5fb0592539126f (patch) | |
| tree | 818be1016cf0527aa38888151778bfd59fcd9012 /tests/utils_tests/test_html.py | |
| parent | 8c98f39624a60c63a16e097b64e5f71ecc27271f (diff) | |
Fixed #22130 -- Deprecated fix_ampersands, removed utils.clean_html()
Diffstat (limited to 'tests/utils_tests/test_html.py')
| -rw-r--r-- | tests/utils_tests/test_html.py | 49 |
1 files changed, 28 insertions, 21 deletions
diff --git a/tests/utils_tests/test_html.py b/tests/utils_tests/test_html.py index cafdee5c03..3f316e1a8b 100644 --- a/tests/utils_tests/test_html.py +++ b/tests/utils_tests/test_html.py @@ -4,6 +4,7 @@ from __future__ import unicode_literals from datetime import datetime import os from unittest import TestCase +import warnings from django.utils import html, safestring from django.utils._os import upath @@ -130,25 +131,29 @@ class TestUtilsHtml(TestCase): self.check_output(f, in_pattern % {'entity': entity}, output) def test_fix_ampersands(self): - f = html.fix_ampersands - # Strings without ampersands or with ampersands already encoded. - values = ("a", "b", "&a;", "& &x; ", "asdf") - patterns = ( - ("%s", "%s"), - ("&%s", "&%s"), - ("&%s&", "&%s&"), - ) - for value in values: - for in_pattern, out_pattern in patterns: - self.check_output(f, in_pattern % value, out_pattern % value) - # Strings with ampersands that need encoding. - items = ( - ("&#;", "&#;"), - ("ͫ ;", "&#875 ;"), - ("abc;", "&#4abc;"), - ) - for value, output in items: - self.check_output(f, value, output) + with warnings.catch_warnings(): + warnings.simplefilter("ignore", DeprecationWarning) + f = html.fix_ampersands + # Strings without ampersands or with ampersands already encoded. + values = ("a", "b", "&a;", "& &x; ", "asdf") + patterns = ( + ("%s", "%s"), + ("&%s", "&%s"), + ("&%s&", "&%s&"), + ) + + for value in values: + for in_pattern, out_pattern in patterns: + self.check_output(f, in_pattern % value, out_pattern % value) + + # Strings with ampersands that need encoding. + items = ( + ("&#;", "&#;"), + ("ͫ ;", "&#875 ;"), + ("abc;", "&#4abc;"), + ) + for value, output in items: + self.check_output(f, value, output) def test_escapejs(self): f = html.escapejs @@ -171,8 +176,10 @@ class TestUtilsHtml(TestCase): # also a regression test for #7267: this used to raise an UnicodeDecodeError ('<p>* foo</p><p>* bar</p>', '<ul>\n<li> foo</li><li> bar</li>\n</ul>'), ) - for value, output in items: - self.check_output(f, value, output) + with warnings.catch_warnings(): + warnings.simplefilter("ignore", DeprecationWarning) + for value, output in items: + self.check_output(f, value, output) def test_remove_tags(self): f = html.remove_tags |
