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 29
|
import httpx
import pook
# Enable mock engine
pook.on()
# Enable network mode
pook.enable_network()
(
pook.get("httpbin.org/headers")
.reply(201)
.headers({"server": "pook"})
.json({"error": "simulated"})
)
res = httpx.get("http://httpbin.org/headers")
print("Mock status:", res.status_code)
# Real network request, since pook cannot match any mock
res = httpx.get("http://httpbin.org/ip")
print("Real status:", res.status_code)
print("Is done:", pook.isdone())
print("Pending mocks:", pook.pending_mocks())
# Disable network mode once we're done
pook.disable_network()
|