1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
# flake8: noqa
import pook
import asyncio
import aiohttp
@pook.on
async def run():
pook.get(
"httpbin.org/ip",
reply=403,
response_headers={"pepe": "lopez"},
response_json={"error": "not found"},
)
async with aiohttp.ClientSession(loop=loop) as session:
async with session.get("http://httpbin.org/ip") as res:
print("Status:", res.status)
print("Headers:", res.headers)
print("Body:", await res.text())
print("Is done:", pook.isdone())
print("Pending mocks:", pook.pending_mocks())
print("Unmatched requests:", pook.unmatched_requests())
loop = asyncio.get_event_loop()
loop.run_until_complete(run())
|