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


Python Config.ALLOWED_SOURCES方法代码示例

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


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

示例1: test_with_allowed_sources

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import ALLOWED_SOURCES [as 别名]
 def test_with_allowed_sources(self):
     config = Config()
     config.ALLOWED_SOURCES = [
         's.glbimg.com',
         re.compile(r'https://www\.google\.com/img/.*')
     ]
     ctx = Context(None, config, None)
     expect(
         loader.validate(
             ctx,
             'http://www.google.com/logo.jpg'
         )
     ).to_be_false()
     expect(
         loader.validate(
             ctx,
             'http://s2.glbimg.com/logo.jpg'
         )
     ).to_be_false()
     expect(
         loader.validate(
             ctx,
             '/glob=:sfoir%20%20%3Co-pmb%20%20%20%20_%20%20%20%200%20%20g.-%3E%3Ca%20hplass='
         )
     ).to_be_false()
     expect(
         loader.validate(
             ctx,
             'https://www.google.com/img/logo.jpg'
         )
     ).to_be_true()
     expect(
         loader.validate(ctx, 'http://s.glbimg.com/logo.jpg')).to_be_true()
开发者ID:caeugusmao,项目名称:thumbor,代码行数:35,代码来源:test_http_loader.py

示例2: topic

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import ALLOWED_SOURCES [as 别名]
            def topic(self):
                url = self.get_url('/')
                loader.http_client = self._http_client

                config = Config()
                config.ALLOWED_SOURCES = ['s.glbimg.com']
                ctx = Context(None, config, None)

                return loader.load, ctx, url
开发者ID:xialisun,项目名称:thumbor,代码行数:11,代码来源:https_loader_vows.py

示例3: test_without_allowed_sources

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import ALLOWED_SOURCES [as 别名]
    def test_without_allowed_sources(self):
        config = Config()
        config.ALLOWED_SOURCES = []
        ctx = Context(None, config, None)
        is_valid = loader.validate(ctx, 'https://www.google.com/logo.jpg')
        expect(is_valid).to_be_true()

        is_valid = loader.validate(ctx, 'http://www.google.com/logo.jpg')
        expect(is_valid).to_be_false()
开发者ID:Bladrak,项目名称:thumbor,代码行数:11,代码来源:test_strict_https_loader.py

示例4: test_with_allowed_sources

# 需要导入模块: from thumbor.config import Config [as 别名]
# 或者: from thumbor.config.Config import ALLOWED_SOURCES [as 别名]
 def test_with_allowed_sources(self):
     config = Config()
     config.ALLOWED_SOURCES = ["s.glbimg.com"]
     ctx = Context(None, config, None)
     expect(loader.validate(ctx, "http://www.google.com/logo.jpg")).to_be_false()
     expect(loader.validate(ctx, "http://s2.glbimg.com/logo.jpg")).to_be_false()
     expect(
         loader.validate(ctx, "/glob=:sfoir%20%20%3Co-pmb%20%20%20%20_%20%20%20%200%20%20g.-%3E%3Ca%20hplass=")
     ).to_be_false()
     expect(loader.validate(ctx, "http://s.glbimg.com/logo.jpg")).to_be_true()
开发者ID:nyimbi,项目名称:thumbor,代码行数:12,代码来源:test_https_loader.py


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