forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_header_propagation.py
More file actions
464 lines (361 loc) · 15.4 KB
/
Copy pathtest_header_propagation.py
File metadata and controls
464 lines (361 loc) · 15.4 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
"""Tests for header propagation (x-* prefixed headers to outgoing LLM calls)."""
import asyncio
import contextvars
import inspect
import warnings
import httpx
import pytest
from copilotkit.header_propagation import (
get_forwarded_headers,
install_httpx_hook,
set_forwarded_headers,
)
class TestSetForwardedHeaders:
"""set_forwarded_headers filters to x-* prefixed headers only."""
def test_filters_to_x_prefixed_headers(self):
set_forwarded_headers(
{
"x-aimock-strict": "true",
"x-aimock-session": "abc123",
"x-request-id": "req-456",
"x-custom-trace": "xyz",
"authorization": "Bearer token",
"content-type": "application/json",
}
)
result = get_forwarded_headers()
assert result == {
"x-aimock-strict": "true",
"x-aimock-session": "abc123",
"x-request-id": "req-456",
"x-custom-trace": "xyz",
}
def test_case_insensitive_prefix_match(self):
set_forwarded_headers(
{
"X-AIMock-Strict": "true",
"X-AIMOCK-SESSION": "xyz",
}
)
result = get_forwarded_headers()
assert result == {
"x-aimock-strict": "true",
"x-aimock-session": "xyz",
}
def test_empty_when_no_x_headers(self):
set_forwarded_headers(
{
"authorization": "Bearer token",
"content-type": "application/json",
}
)
result = get_forwarded_headers()
assert result == {}
def test_empty_input(self):
set_forwarded_headers({})
result = get_forwarded_headers()
assert result == {}
class TestGetForwardedHeaders:
"""get_forwarded_headers returns empty dict by default."""
def test_default_is_empty_dict(self):
# Reset to default by running in a fresh context
ctx = contextvars.copy_context()
result = ctx.run(get_forwarded_headers)
assert result == {}
class TestRoundTrip:
"""set + get round-trip."""
def test_round_trip(self):
headers = {"x-aimock-strict": "true", "x-aimock-foo": "bar"}
set_forwarded_headers(headers)
assert get_forwarded_headers() == headers
def test_overwrite(self):
set_forwarded_headers({"x-aimock-a": "1"})
set_forwarded_headers({"x-aimock-b": "2"})
assert get_forwarded_headers() == {"x-aimock-b": "2"}
class TestInstallHttpxHook:
"""install_httpx_hook appends to event hooks."""
def test_appends_to_raw_httpx_client(self):
"""Mock a raw httpx client with event_hooks dict."""
class FakeClient:
def __init__(self):
self.event_hooks = {"request": []}
client = FakeClient()
install_httpx_hook(client)
assert len(client.event_hooks["request"]) == 1
def test_appends_to_sdk_wrapped_client(self):
"""Mock an OpenAI/Anthropic SDK client with _client attribute."""
class FakeTransport:
def __init__(self):
self.event_hooks = {"request": []}
class FakeSDKClient:
def __init__(self):
self._client = FakeTransport()
client = FakeSDKClient()
install_httpx_hook(client)
assert len(client._client.event_hooks["request"]) == 1
def test_hook_injects_headers(self):
"""The installed hook reads from ContextVar and injects headers."""
class FakeHeaders(dict):
"""Dict that also supports item assignment like httpx Headers."""
pass
class FakeRequest:
def __init__(self):
self.headers = FakeHeaders()
class FakeClient:
def __init__(self):
self.event_hooks = {"request": []}
client = FakeClient()
install_httpx_hook(client)
# Set headers in ContextVar
set_forwarded_headers({"x-aimock-strict": "true"})
# Simulate httpx calling the hook
request = FakeRequest()
client.event_hooks["request"][0](request)
assert request.headers["x-aimock-strict"] == "true"
def test_hook_noop_when_no_headers(self):
"""Hook is a no-op when ContextVar is empty (demo traffic)."""
class FakeRequest:
def __init__(self):
self.headers = {}
class FakeClient:
def __init__(self):
self.event_hooks = {"request": []}
# Reset ContextVar to simulate a fresh request with no aimock headers
set_forwarded_headers({})
client = FakeClient()
install_httpx_hook(client)
request = FakeRequest()
client.event_hooks["request"][0](request)
assert request.headers == {}
def test_no_event_hooks_warns(self):
"""Client without event_hooks emits a warning."""
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
install_httpx_hook(object())
assert len(w) == 1
assert "event_hooks" in str(w[0].message)
class TestInstallHttpxHookNestedChain:
"""install_httpx_hook walks the ``._client`` chain (modern OpenAI SDK shape)."""
def test_walks_chain_to_find_event_hooks(self):
"""Modern OpenAI SDK: ChatOpenAI.client -> Resource -> openai.OpenAI
-> ._client = httpx wrapper (event_hooks here). The hook installer
must walk past intermediate ``._client`` hops that do NOT expose
event_hooks, and attach to the first one that does.
"""
class HttpxWrapper:
def __init__(self):
self.event_hooks = {"request": []}
class OpenAIClient:
"""Mirrors openai.OpenAI / openai.AsyncOpenAI: holds an httpx
wrapper at ``._client`` but exposes no event_hooks itself."""
def __init__(self):
self._client = HttpxWrapper()
class Resource:
"""Mirrors openai resources (Completions, AsyncCompletions, etc):
holds the OpenAI client at ``._client``."""
def __init__(self):
self._client = OpenAIClient()
class LangChainWrapper:
"""Mirrors langchain_openai.ChatOpenAI.client: the resource."""
def __init__(self):
self.client = Resource()
outer = LangChainWrapper()
install_httpx_hook(outer.client)
# The hook MUST land on the deepest object that has event_hooks
hooks = outer.client._client._client.event_hooks["request"]
assert len(hooks) == 1, (
f"expected hook installed on deepest httpx wrapper, got "
f"{len(hooks)} hook(s) (chain walk likely stopped too shallow)"
)
def test_idempotent_double_install(self):
"""Calling install_httpx_hook twice must NOT register the hook twice."""
class FakeClient:
def __init__(self):
self.event_hooks = {"request": []}
client = FakeClient()
install_httpx_hook(client)
install_httpx_hook(client)
assert len(client.event_hooks["request"]) == 1, (
"install_httpx_hook must be idempotent — double install detected"
)
def test_header_agnostic_injection(self):
"""Hook must forward whatever headers are in the ContextVar, not just x-aimock-*."""
class FakeRequest:
def __init__(self):
self.headers = {}
class FakeClient:
def __init__(self):
self.event_hooks = {"request": []}
client = FakeClient()
install_httpx_hook(client)
set_forwarded_headers(
{
"x-trace-id": "abc",
"x-team-id": "ck",
"x-anything-custom": "v",
}
)
request = FakeRequest()
client.event_hooks["request"][0](request)
assert request.headers["x-trace-id"] == "abc"
assert request.headers["x-team-id"] == "ck"
assert request.headers["x-anything-custom"] == "v"
class TestInstallHttpxHookAsync:
"""For httpx.AsyncClient instances the installed hook MUST be an
async callable; httpx awaits async-client request hooks."""
def test_async_client_gets_async_hook(self):
"""httpx.AsyncClient -> the installed hook is a coroutine function."""
async def _run():
client = httpx.AsyncClient()
try:
install_httpx_hook(client)
hooks = client.event_hooks["request"]
assert len(hooks) == 1
hook = hooks[0]
assert inspect.iscoroutinefunction(hook), (
f"AsyncClient must receive an async hook, got sync "
f"callable {hook!r}"
)
finally:
await client.aclose()
asyncio.run(_run())
def test_async_hook_is_awaitable_and_injects_headers(self):
"""Awaiting the installed async hook must inject forwarded headers."""
class FakeRequest:
def __init__(self):
self.headers = {}
async def _run():
client = httpx.AsyncClient()
try:
install_httpx_hook(client)
set_forwarded_headers({"x-aimock-strict": "true"})
hook = client.event_hooks["request"][0]
request = FakeRequest()
# Must be awaitable without TypeError
result = hook(request)
assert inspect.isawaitable(result), (
"async-client hook must return an awaitable"
)
await result
assert request.headers["x-aimock-strict"] == "true"
finally:
await client.aclose()
asyncio.run(_run())
def test_sync_client_gets_sync_hook(self):
"""httpx.Client -> the installed hook is a plain sync callable
(httpx calls request hooks synchronously on a sync client)."""
client = httpx.Client()
try:
install_httpx_hook(client)
hooks = client.event_hooks["request"]
assert len(hooks) == 1
hook = hooks[0]
assert not inspect.iscoroutinefunction(hook), (
f"sync Client must receive a sync hook, got coroutine function {hook!r}"
)
finally:
client.close()
class TestInstallHttpxHookRegressions:
"""Regression tests for chain-depth, async/sync MRO heuristic, and
foreign-hook preservation."""
def test_chain_depth_exhausted_warns(self):
"""A ``._client`` chain LONGER than the walker's max depth where NO
node exposes event_hooks must emit a warning (loud-via-warning) and
not silently no-op."""
class ChainNode:
def __init__(self):
self._client: object | None = None # filled in below
# Build a chain of depth well beyond _MAX_CHAIN_DEPTH (5 hops).
# 10 nodes total, none of which carries event_hooks.
nodes = [ChainNode() for _ in range(10)]
for i in range(len(nodes) - 1):
nodes[i]._client = nodes[i + 1]
# Terminate the chain at the last node with a non-None, non-event_hooks
# object so the walker doesn't short-circuit on None.
nodes[-1]._client = object()
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
install_httpx_hook(nodes[0])
assert len(w) >= 1
assert any("event_hooks" in str(item.message) for item in w), (
f"expected a warning mentioning event_hooks, got {[str(i.message) for i in w]}"
)
def test_sync_client_with_async_named_mro_base_is_sync(self):
"""A SYNC duck-typed client whose MRO includes a base class named
``Async*`` (but whose own class name is neither ``AsyncClient`` nor
starts with ``Async``) must be classified as SYNC. An overbroad
``startswith("Async")`` MRO heuristic would misclassify it as async
and install an async hook that httpx calls synchronously -> the
coroutine is never awaited and headers are silently dropped."""
class AsyncMixin:
"""A base class whose NAME starts with ``Async`` but which does
not represent an async client (mirrors e.g. AsyncContextManager
appearing in MRO)."""
pass
class FakeSyncClient(AsyncMixin):
def __init__(self):
self.event_hooks = {"request": []}
client = FakeSyncClient()
install_httpx_hook(client)
hooks = client.event_hooks["request"]
assert len(hooks) == 1
hook = hooks[0]
assert not inspect.iscoroutinefunction(hook), (
f"sync duck-typed client (MRO contains Async*-named base) must "
f"receive a sync hook, got coroutine function {hook!r}"
)
def test_preexisting_foreign_hook_is_preserved(self):
"""If event_hooks['request'] already contains an unrelated callable
(not carrying our idempotency marker), install_httpx_hook must
APPEND ours alongside it — not skip installation, not replace the
foreign hook."""
def foreign_hook(request):
# Unrelated pre-existing hook; carries no marker.
return None
class FakeClient:
def __init__(self):
self.event_hooks = {"request": [foreign_hook]}
client = FakeClient()
install_httpx_hook(client)
hooks = client.event_hooks["request"]
assert len(hooks) == 2, (
f"expected foreign hook + ours = 2 hooks, got {len(hooks)}: {hooks!r}"
)
# Foreign hook still present and unchanged.
assert foreign_hook in hooks
# Exactly one of the two hooks is ours (carries the marker).
from copilotkit.header_propagation import _HOOK_MARKER
marked = [h for h in hooks if getattr(h, _HOOK_MARKER, False)]
assert len(marked) == 1, (
f"expected exactly one hook to carry our marker, got {len(marked)}"
)
class TestContextVarIsolation:
"""ContextVar provides proper isolation across contexts."""
def test_context_isolation(self):
"""Headers set in one context don't leak to another."""
results = {}
def task_a():
set_forwarded_headers({"x-aimock-task": "a"})
results["a"] = get_forwarded_headers()
def task_b():
set_forwarded_headers({"x-aimock-task": "b"})
results["b"] = get_forwarded_headers()
# Run in separate contexts to verify isolation
ctx_a = contextvars.copy_context()
ctx_b = contextvars.copy_context()
ctx_a.run(task_a)
ctx_b.run(task_b)
assert results["a"] == {"x-aimock-task": "a"}
assert results["b"] == {"x-aimock-task": "b"}
def test_child_context_does_not_pollute_parent(self):
"""Setting headers in a child context does not affect the parent."""
# Ensure clean state in a fresh context
def _run():
parent_before = get_forwarded_headers()
def child():
set_forwarded_headers({"x-aimock-child": "yes"})
ctx = contextvars.copy_context()
ctx.run(child)
parent_after = get_forwarded_headers()
assert parent_before == parent_after
contextvars.copy_context().run(_run)