Lines Matching refs:httpd
58 with test_utils.run_test_server() as httpd:
59 conn_fut = asyncio.open_connection(*httpd.address)
64 with test_utils.run_test_unix_server() as httpd:
65 conn_fut = asyncio.open_unix_connection(httpd.address)
85 with test_utils.run_test_server(use_ssl=True) as httpd:
87 *httpd.address,
95 with test_utils.run_test_unix_server(use_ssl=True) as httpd:
97 httpd.address,
117 with test_utils.run_test_server() as httpd:
118 conn_fut = asyncio.open_connection(*httpd.address)
123 with test_utils.run_test_unix_server() as httpd:
124 conn_fut = asyncio.open_unix_connection(httpd.address)
908 with test_utils.run_test_server() as httpd:
910 asyncio.open_connection(*httpd.address))
925 with test_utils.run_test_server() as httpd:
927 asyncio.open_connection(*httpd.address))
937 async def inner(httpd): argument
938 rd, wr = await asyncio.open_connection(*httpd.address)
951 with test_utils.run_test_server() as httpd:
952 self.loop.run_until_complete(inner(httpd))
957 async def inner(httpd): argument
958 rd, wr = await asyncio.open_connection(*httpd.address)
973 with test_utils.run_test_server() as httpd:
974 self.loop.run_until_complete(inner(httpd))
983 with test_utils.run_test_server() as httpd:
985 asyncio.open_connection(*httpd.address))