当前位置: 首页>>代码示例>>Python>>正文


Python MediaEmbedHandler.expand_db_attributes方法代码示例

本文整理汇总了Python中wagtail.wagtailembeds.rich_text.MediaEmbedHandler.expand_db_attributes方法的典型用法代码示例。如果您正苦于以下问题:Python MediaEmbedHandler.expand_db_attributes方法的具体用法?Python MediaEmbedHandler.expand_db_attributes怎么用?Python MediaEmbedHandler.expand_db_attributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wagtail.wagtailembeds.rich_text.MediaEmbedHandler的用法示例。


在下文中一共展示了MediaEmbedHandler.expand_db_attributes方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_expand_db_attributes_for_editor

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
    def test_expand_db_attributes_for_editor(self, get_embed):
        get_embed.return_value = Embed(
            url='http://www.youtube.com/watch/',
            max_width=None,
            type='video',
            html='test html',
            title='test title',
            author_name='test author name',
            provider_name='test provider name',
            thumbnail_url='http://test/thumbnail.url',
            width=1000,
            height=1000,
        )

        result = MediaEmbedHandler.expand_db_attributes(
            {'url': 'http://www.youtube.com/watch/'},
            True
        )
        self.assertIn(
            (
                '<div class="embed-placeholder" contenteditable="false" data-embedtype="media"'
                ' data-url="http://www.youtube.com/watch/">'
            ),
            result
        )
        self.assertIn('<h3>test title</h3>', result)
        self.assertIn('<p>URL: http://www.youtube.com/watch/</p>', result)
        self.assertIn('<p>Provider: test provider name</p>', result)
        self.assertIn('<p>Author: test author name</p>', result)
        self.assertIn('<img src="http://test/thumbnail.url" alt="test title">', result)
开发者ID:didorothy,项目名称:wagtail,代码行数:32,代码来源:tests.py

示例2: test_expand_db_attributes_catches_embed_not_found

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
    def test_expand_db_attributes_catches_embed_not_found(self, get_embed):
        get_embed.side_effect = EmbedNotFoundException

        result = MediaEmbedHandler.expand_db_attributes(
            {'url': 'http://www.youtube.com/watch/'},
            False
        )

        self.assertEqual(result, '')
开发者ID:didorothy,项目名称:wagtail,代码行数:11,代码来源:tests.py

示例3: test_expand_db_attributes_not_for_editor

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
 def test_expand_db_attributes_not_for_editor(self, oembed):
     oembed.return_value = {
         "title": "test title",
         "author_name": "test author name",
         "provider_name": "test provider name",
         "type": "test type",
         "thumbnail_url": "test thumbnail url",
         "width": "test width",
         "height": "test height",
         "html": "test html",
     }
     result = MediaEmbedHandler.expand_db_attributes({"url": "http://www.youtube.com/watch/"}, False)
     self.assertIn("test html", result)
开发者ID:carriercomm,项目名称:wagtail,代码行数:15,代码来源:tests.py

示例4: test_expand_db_attributes_not_for_editor

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
 def test_expand_db_attributes_not_for_editor(self, oembed):
     oembed.return_value = {
         'title': 'test title',
         'author_name': 'test author name',
         'provider_name': 'test provider name',
         'type': 'test type',
         'thumbnail_url': 'test thumbnail url',
         'width': 'test width',
         'height': 'test height',
         'html': 'test html'
     }
     result = MediaEmbedHandler.expand_db_attributes(
         {'url': 'http://www.youtube.com/watch/'},
         False
     )
     self.assertIn('test html', result)
开发者ID:EricSchles,项目名称:wagtail,代码行数:18,代码来源:tests.py

示例5: test_expand_db_attributes

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
    def test_expand_db_attributes(self, get_embed):
        get_embed.return_value = Embed(
            url="http://www.youtube.com/watch/",
            max_width=None,
            type="video",
            html="test html",
            title="test title",
            author_name="test author name",
            provider_name="test provider name",
            thumbnail_url="htto://test/thumbnail.url",
            width=1000,
            height=1000,
        )

        result = MediaEmbedHandler.expand_db_attributes({"url": "http://www.youtube.com/watch/"}, False)
        self.assertIn("test html", result)
开发者ID:alexgleason,项目名称:wagtail,代码行数:18,代码来源:tests.py

示例6: test_expand_db_attributes

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
    def test_expand_db_attributes(self, get_embed):
        get_embed.return_value = Embed(
            url='http://www.youtube.com/watch/',
            max_width=None,
            type='video',
            html='test html',
            title='test title',
            author_name='test author name',
            provider_name='test provider name',
            thumbnail_url='htto://test/thumbnail.url',
            width=1000,
            height=1000,
        )

        result = MediaEmbedHandler.expand_db_attributes(
            {'url': 'http://www.youtube.com/watch/'},
            False
        )
        self.assertIn('test html', result)
开发者ID:didorothy,项目名称:wagtail,代码行数:21,代码来源:tests.py

示例7: test_expand_db_attributes_for_editor

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
 def test_expand_db_attributes_for_editor(self, oembed):
     oembed.return_value = {
         'title': 'test title',
         'author_name': 'test author name',
         'provider_name': 'test provider name',
         'type': 'test type',
         'thumbnail_url': 'test thumbnail url',
         'width': 'test width',
         'height': 'test height',
         'html': 'test html'
     }
     result = MediaEmbedHandler.expand_db_attributes(
         {'url': 'http://www.youtube.com/watch/'},
         True
     )
     self.assertIn('<div class="embed-placeholder" contenteditable="false" data-embedtype="media" data-url="http://www.youtube.com/watch/">', result)
     self.assertIn('<h3>test title</h3>', result)
     self.assertIn('<p>URL: http://www.youtube.com/watch/</p>', result)
     self.assertIn('<p>Provider: test provider name</p>', result)
     self.assertIn('<p>Author: test author name</p>', result)
     self.assertIn('<img src="test thumbnail url" alt="test title">', result)
开发者ID:EricSchles,项目名称:wagtail,代码行数:23,代码来源:tests.py

示例8: test_expand_db_attributes_for_editor

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
 def test_expand_db_attributes_for_editor(self, oembed):
     oembed.return_value = {
         "title": "test title",
         "author_name": "test author name",
         "provider_name": "test provider name",
         "type": "test type",
         "thumbnail_url": "test thumbnail url",
         "width": "test width",
         "height": "test height",
         "html": "test html",
     }
     result = MediaEmbedHandler.expand_db_attributes({"url": "http://www.youtube.com/watch/"}, True)
     self.assertIn(
         '<div class="embed-placeholder" contenteditable="false" data-embedtype="media" data-url="http://www.youtube.com/watch/">',
         result,
     )
     self.assertIn("<h3>test title</h3>", result)
     self.assertIn("<p>URL: http://www.youtube.com/watch/</p>", result)
     self.assertIn("<p>Provider: test provider name</p>", result)
     self.assertIn("<p>Author: test author name</p>", result)
     self.assertIn('<img src="test thumbnail url" alt="test title">', result)
开发者ID:carriercomm,项目名称:wagtail,代码行数:23,代码来源:tests.py

示例9: test_test_expand_db_attributes_for_editor_catches_embed_not_found

# 需要导入模块: from wagtail.wagtailembeds.rich_text import MediaEmbedHandler [as 别名]
# 或者: from wagtail.wagtailembeds.rich_text.MediaEmbedHandler import expand_db_attributes [as 别名]
    def test_test_expand_db_attributes_for_editor_catches_embed_not_found(self, get_embed):
        get_embed.side_effect = EmbedNotFoundException

        result = MediaEmbedHandler.expand_db_attributes({"url": "http://www.youtube.com/watch/"}, True)

        self.assertEqual(result, "")
开发者ID:alexgleason,项目名称:wagtail,代码行数:8,代码来源:tests.py


注:本文中的wagtail.wagtailembeds.rich_text.MediaEmbedHandler.expand_db_attributes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。