examples/match_callback.py

Summary

Maintainability
A
0 mins
Test Coverage
import pook
import requests


def on_match(request, mock):
    print("On match:", request, mock)


# Enable mock engine
pook.on()

pook.get(
    "httpbin.org/ip",
    reply=403,
    response_type="json",
    response_headers={"pepe": "lopez"},
    response_json={"error": "not found"},
    callback=on_match,
)

res = requests.get("http://httpbin.org/ip")
print("Status:", res.status_code)
print("Headers:", res.headers)
print("Body:", res.json())

print("Is done:", pook.isdone())
print("Pending mocks:", pook.pending_mocks())
print("Unmatched requests:", pook.unmatched_requests())