本文整理匯總了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