當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。