本文整理汇总了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
示例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