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


Python TConfig.PUBLIC_KEY方法代码示例

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


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

示例1: test_bad_pub_key

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import PUBLIC_KEY [as 别名]
 def test_bad_pub_key(self):
     t_config = TConfig()
     # If changed ensure it's a valid key format
     t_config.PUBLIC_KEY = '25RSdhJ+xCsxxTjY5jffilatipp29tnKp/D5BelSMJM'
     t_config.DATA_DIR = os.getcwd()
     client = Client(t_config, refresh=True, test=True)
     assert client.update_check(client.app_name, '0.0.0') is None
开发者ID:awesome-python,项目名称:PyUpdater,代码行数:9,代码来源:test_client.py

示例2: test_callback

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import PUBLIC_KEY [as 别名]
    def test_callback(self):
        def cb(status):
            print(status)

        def cb2(status):
            raise IndexError

        t_config = TConfig()
        t_config.PUBLIC_KEY = '25RSdhJ+xCsxxTjY5jffilatipp29tnKp/D5BelSMJM'
        t_config.DATA_DIR = os.getcwd()
        client = Client(t_config, refresh=True, test=True, progress_hooks=[cb])
        client.add_progress_hook(cb2)
        assert client.update_check(client.app_name, '0.0.0') is None
开发者ID:awesome-python,项目名称:PyUpdater,代码行数:15,代码来源:test_client.py

示例3: test_bad_pub_key

# 需要导入模块: from tconfig import TConfig [as 别名]
# 或者: from tconfig.TConfig import PUBLIC_KEY [as 别名]
def test_bad_pub_key():
    config = TConfig()
    config.PUBLIC_KEY = 'bad key'
    client = Client(config, test=True)
    assert client.update_check(u'jms', '0.0.0') is False
开发者ID:douglasmccormickjr,项目名称:PyiUpdater,代码行数:7,代码来源:test_client.py


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