Python django.utils.safestring.SafeString() Examples
The following are 30
code examples of django.utils.safestring.SafeString().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
django.utils.safestring
, or try the search function
.
Example #1
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_edit_block(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('text', "Content", '1'), ('text', "Content Foo", '2'), ('text', "Content Bar", '3'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('text', "Content", '1'), ('text', "Content Baz", '2'), ('text', "Content Bar", '3'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Content</div>\n<div class="comparison__child-object">Content <span class="deletion">Foo</span><span class="addition">Baz</span></div>\n<div class="comparison__child-object">Content Bar</div>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #2
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_hasnt_changed(self): a = TaggedPage() a.tags.add('wagtail') a.tags.add('bird') b = TaggedPage() b.tags.add('wagtail') b.tags.add('bird') comparison = self.comparison_class(TaggedPage._meta.get_field('tags'), a, b) self.assertTrue(comparison.is_field) self.assertFalse(comparison.is_child_relation) self.assertEqual(comparison.field_label(), "Tags") self.assertEqual(comparison.htmldiff(), 'wagtail, bird') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertFalse(comparison.has_changed())
Example #3
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_hasnt_changed(self): christmas_event = EventPage.objects.get(url_path='/home/events/christmas/') saint_patrick_event = EventPage.objects.get(url_path='/home/events/saint-patrick/') christmas_event.categories = [self.meetings_category, self.parties_category] saint_patrick_event.categories = [self.meetings_category, self.parties_category] comparison = self.comparison_class( EventPage._meta.get_field('categories'), christmas_event, saint_patrick_event ) self.assertTrue(comparison.is_field) self.assertFalse(comparison.is_child_relation) self.assertEqual(comparison.field_label(), "Categories") self.assertFalse(comparison.has_changed()) self.assertEqual(comparison.htmldiff(), 'Meetings, Parties') self.assertIsInstance(comparison.htmldiff(), SafeString)
Example #4
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_compare_structblock(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('product', {'name': 'a packet of rolos', 'price': '75p'}, '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('product', {'name': 'a packet of rolos', 'price': '85p'}, '1'), ])), ) expected = """ <div class="comparison__child-object"><dl> <dt>Name</dt> <dd>a packet of rolos</dd> <dt>Price</dt> <dd><span class="deletion">75p</span><span class="addition">85p</span></dd> </dl></div> """ self.assertHTMLEqual(comparison.htmldiff(), expected) self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #5
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_htmldiff_richtext_strips_tags_on_deletion(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('rich_text', "Original <em>and unchanged</em> content", '1'), ('rich_text', 'I <b>really</b> like evil code >_< <script type="text/javascript">doSomethingBad();</script>', '2'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('rich_text', "Original <em>and unchanged</em> content", '1'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Original and unchanged content</div>\n<div class="comparison__child-object deletion">I really like evil code >_< doSomethingBad();</div>') self.assertIsInstance(comparison.htmldiff(), SafeString)
Example #6
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_htmldiff_richtext_strips_tags_on_addition(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('rich_text', "Original <em>and unchanged</em> content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('rich_text', "Original <em>and unchanged</em> content", '1'), ('rich_text', 'I <b>really</b> like evil code >_< <script type="text/javascript">doSomethingBad();</script>', '2'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Original and unchanged content</div>\n<div class="comparison__child-object addition">I really like evil code >_< doSomethingBad();</div>') self.assertIsInstance(comparison.htmldiff(), SafeString)
Example #7
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_htmldiff_escapes_value_on_addition(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('text', "Original <em>and unchanged</em> content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('text', "Original <em>and unchanged</em> content", '1'), ('text', '<script type="text/javascript">doSomethingBad();</script>', '2'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Original <em>and unchanged</em> content</div>\n<div class="comparison__child-object addition"><script type="text/javascript">doSomethingBad();</script></div>') self.assertIsInstance(comparison.htmldiff(), SafeString)
Example #8
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_has_changed_richtext(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('rich_text', "<b>Original</b> content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('rich_text', "Modified <i>content</i>", '1'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object"><span class="deletion">Original</span><span class="addition">Modified</span> content</div>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #9
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_delete_block(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('text', "Content", '1'), ('text', "Content Foo", '2'), ('text', "Content Bar", '3'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('text', "Content", '1'), ('text', "Content Bar", '3'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Content</div>\n<div class="comparison__child-object deletion">Content Foo</div>\n<div class="comparison__child-object">Content Bar</div>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #10
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_has_changed(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('text', "Original content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('text', "Modified content", '1'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object"><span class="deletion">Original</span><span class="addition">Modified</span> content</div>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #11
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_hasnt_changed(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('text', "Content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('text', "Content", '1'), ])), ) self.assertTrue(comparison.is_field) self.assertFalse(comparison.is_child_relation) self.assertEqual(comparison.field_label(), "Body") self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Content</div>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertFalse(comparison.has_changed())
Example #12
Source File: base.py From python-compat-runtime with Apache License 2.0 | 6 votes |
def _cursor(self): if not self._valid_connection(): kwargs = {'conv': base.django_conversions, 'dsn': None} settings_dict = self.settings_dict settings_dict.update(settings_dict.get('OPTIONS', {})) for settings_key, kwarg, required in _SETTINGS_CONNECT_ARGS: value = settings_dict.get(settings_key) if value: kwargs[kwarg] = value elif required: raise exceptions.ImproperlyConfigured( "You must specify a '%s' for database '%s'" % (settings_key, self.alias)) self.connection = Connect(**kwargs) encoders = {safestring.SafeUnicode: self.connection.encoders[unicode], safestring.SafeString: self.connection.encoders[str]} self.connection.encoders.update(encoders) signals.connection_created.send(sender=self.__class__, connection=self) cursor = base.CursorWrapper(self.connection.cursor()) return cursor
Example #13
Source File: tests.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_call_with_text(self): result = richtext("Hello world!") self.assertEqual(result, 'Hello world!') self.assertIsInstance(result, SafeString)
Example #14
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_htmldiff_raw_html_escapes_value_on_addition(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('raw_html', "Original <em>and unchanged</em> content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('raw_html', "Original <em>and unchanged</em> content", '1'), ('raw_html', '<script type="text/javascript">doSomethingBad();</script>', '2'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object">Original <em>and unchanged</em> content</div>\n<div class="comparison__child-object addition"><script type="text/javascript">doSomethingBad();</script></div>') self.assertIsInstance(comparison.htmldiff(), SafeString)
Example #15
Source File: test_streamfield.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_to_string(self): rendered = str(self.instance.body) self.assertHTMLEqual(rendered, self.expected) self.assertIsInstance(rendered, SafeString)
Example #16
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_has_changed(self): comparison = self.comparison_class( SnippetChooserModelWithCustomPrimaryKey._meta.get_field('advertwithcustomprimarykey'), self.test_obj_1, self.test_obj_2, ) self.assertEqual(comparison.htmldiff(), '<span class="deletion">Advert 1</span><span class="addition">Advert 2</span>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #17
Source File: test_streamfield.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test___html___access(self): rendered = self.instance.body.__html__() self.assertHTMLEqual(rendered, self.expected) self.assertIsInstance(rendered, SafeString)
Example #18
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_hasnt_changed(self): comparison = self.comparison_class( SnippetChooserModelWithCustomPrimaryKey._meta.get_field('advertwithcustomprimarykey'), self.test_obj_1, self.test_obj_1, ) self.assertTrue(comparison.is_field) self.assertFalse(comparison.is_child_relation) self.assertEqual(comparison.field_label(), 'Advertwithcustomprimarykey') self.assertEqual(comparison.htmldiff(), 'Advert 1') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertFalse(comparison.has_changed())
Example #19
Source File: test_templatetags.py From django-andablog with BSD 2-Clause "Simplified" License | 5 votes |
def test_profile_display(self): """Test that our template tag returns the short name hyperlinked to the URL""" def mock_get_url(): return 'http://example.com/profile/shyguy' self.author.get_absolute_url = mock_get_url display = andablog_tags.author_display(self.author) self.assertEqual(display, SafeString('<a href="http://example.com/profile/shyguy">ShyGuy</a>'))
Example #20
Source File: templates.py From aws-xray-sdk-python with Apache License 2.0 | 5 votes |
def patch_template(): attr = '_xray_original_render' if getattr(Template, attr, None): log.debug("already patched") return setattr(Template, attr, Template.render) @xray_recorder.capture('template_render') def xray_render(self, context): template_name = self.name or getattr(context, 'template_name', None) if template_name: name = str(template_name) # SafeString are not properly serialized by jsonpickle, # turn them back to str by adding a non-safe str. if isinstance(name, SafeString): name += '' subsegment = xray_recorder.current_subsegment() if subsegment: subsegment.name = name return Template._xray_original_render(self, context) Template.render = xray_render
Example #21
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_hasnt_changed(self): comparison = self.comparison_class( EventPage._meta.get_field('feed_image'), EventPage(feed_image=self.test_image_1), EventPage(feed_image=self.test_image_1), ) self.assertTrue(comparison.is_field) self.assertFalse(comparison.is_child_relation) self.assertEqual(comparison.field_label(), "Feed image") self.assertEqual(comparison.htmldiff(), 'Test image 1') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertFalse(comparison.has_changed())
Example #22
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_has_changed(self): christmas_event = EventPage.objects.get(url_path='/home/events/christmas/') saint_patrick_event = EventPage.objects.get(url_path='/home/events/saint-patrick/') christmas_event.categories = [self.meetings_category, self.parties_category] saint_patrick_event.categories = [self.meetings_category, self.holidays_category] comparison = self.comparison_class( EventPage._meta.get_field('categories'), christmas_event, saint_patrick_event ) self.assertTrue(comparison.has_changed()) self.assertEqual(comparison.htmldiff(), 'Meetings, <span class="deletion">Parties</span>, <span class="addition">Holidays</span>') self.assertIsInstance(comparison.htmldiff(), SafeString)
Example #23
Source File: test_sslkey.py From maas with GNU Affero General Public License v3.0 | 5 votes |
def test_sslkey_display_is_marked_as_HTML_safe(self): key_string = get_data("data/test_x509_0.pem") user = factory.make_User() key = SSLKey(key=key_string, user=user) display = key.display_html() self.assertIsInstance(display, SafeString)
Example #24
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_has_changed(self): a = TaggedPage() a.tags.add('wagtail') a.tags.add('bird') b = TaggedPage() b.tags.add('wagtail') b.tags.add('motacilla') comparison = self.comparison_class(TaggedPage._meta.get_field('tags'), a, b) self.assertEqual(comparison.htmldiff(), 'wagtail, <span class="deletion">bird</span>, <span class="addition">motacilla</span>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #25
Source File: test_sshkey.py From maas with GNU Affero General Public License v3.0 | 5 votes |
def test_sshkey_display_is_marked_as_HTML_safe(self): key_string = get_data("data/test_rsa0.pub") user = factory.make_User() key = SSHKey(key=key_string, user=user) display = key.display_html() self.assertIsInstance(display, SafeString)
Example #26
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_from_none_to_value_only_shows_addition(self): comparison = self.comparison_class( EventPage._meta.get_field('audience'), EventPage(audience=None), EventPage(audience="private"), ) self.assertEqual(comparison.htmldiff(), '<span class="addition">Private</span>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #27
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_has_changed(self): comparison = self.comparison_class( EventPage._meta.get_field('audience'), EventPage(audience="public"), EventPage(audience="private"), ) self.assertEqual(comparison.htmldiff(), '<span class="deletion">Public</span><span class="addition">Private</span>') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertTrue(comparison.has_changed())
Example #28
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_hasnt_changed(self): comparison = self.comparison_class( EventPage._meta.get_field('audience'), EventPage(audience="public"), EventPage(audience="public"), ) self.assertTrue(comparison.is_field) self.assertFalse(comparison.is_child_relation) self.assertEqual(comparison.field_label(), "Audience") self.assertEqual(comparison.htmldiff(), 'Public') self.assertIsInstance(comparison.htmldiff(), SafeString) self.assertFalse(comparison.has_changed())
Example #29
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_compare_imagechooserblock(self): image_model = get_image_model() test_image_1 = image_model.objects.create( title="Test image 1", file=get_test_image_file(), ) test_image_2 = image_model.objects.create( title="Test image 2", file=get_test_image_file(), ) field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('image', test_image_1, '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('image', test_image_2, '1'), ])), ) result = comparison.htmldiff() self.assertIn('<div class="preview-image deletion">', result) self.assertIn('alt="Test image 1"', result) self.assertIn('<div class="preview-image addition">', result) self.assertIn('alt="Test image 2"', result) self.assertIsInstance(result, SafeString) self.assertTrue(comparison.has_changed())
Example #30
Source File: test_compare.py From wagtail with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_htmldiff_raw_html_escapes_value_on_change(self): field = StreamPage._meta.get_field('body') comparison = self.comparison_class( field, StreamPage(body=StreamValue(field.stream_block, [ ('raw_html', "Original<i>ish</i> content", '1'), ])), StreamPage(body=StreamValue(field.stream_block, [ ('raw_html', '<script type="text/javascript">doSomethingBad();</script>', '1'), ])), ) self.assertEqual(comparison.htmldiff(), '<div class="comparison__child-object"><span class="deletion">Original<i>ish</i> content</span><span class="addition"><script type="text/javascript">doSomethingBad();</script></span></div>') self.assertIsInstance(comparison.htmldiff(), SafeString)