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


Python test_utils.AioHTTPTestCase方法代码示例

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


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

示例1: get_admin_server

# 需要导入模块: from aiohttp import test_utils [as 别名]
# 或者: from aiohttp.test_utils import AioHTTPTestCase [as 别名]
def get_admin_server(self) -> AdminServer:
        if not self.admin_server:
            context = InjectionContext()
            context.settings["admin.admin_insecure_mode"] = True
            self.admin_server = AdminServer(
                "0.0.0.0",
                unused_port(),
                context,
                self.outbound_message_router,
                self.webhook_router,
            )
        return self.admin_server

    # the unittest_run_loop decorator can be used in tandem with
    # the AioHTTPTestCase to simplify running
    # tests that are asynchronous 
开发者ID:hyperledger,项目名称:aries-cloudagent-python,代码行数:18,代码来源:test_admin_server.py

示例2: get_application

# 需要导入模块: from aiohttp import test_utils [as 别名]
# 或者: from aiohttp.test_utils import AioHTTPTestCase [as 别名]
def get_application(self):  # AioHTTPTestCase requirement
        app = web.Application()

        async def handle(request):
            self.last_request = request
            self.last_request_post = await request.post()
            return self.auth_response

        app.router.add_post("/refresh", handle)
        return app 
开发者ID:CJWorkbench,项目名称:cjworkbench,代码行数:12,代码来源:test_secrets.py


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