Files
wehub-resource-sync a7d6d88f6f
CI / changes (push) Has been cancelled
CI / cd libs/checkpoint (push) Has been cancelled
CI / cd libs/checkpoint-conformance (push) Has been cancelled
CI / cd libs/checkpoint-postgres (push) Has been cancelled
CI / cd libs/checkpoint-sqlite (push) Has been cancelled
CI / cd libs/cli (push) Has been cancelled
CI / cd libs/prebuilt (push) Has been cancelled
CI / cd libs/sdk-py (push) Has been cancelled
CI / cd libs/langgraph (push) Has been cancelled
CI / Check SDK methods matching (push) Has been cancelled
CI / Check CLI schema hasn't changed #3.13 (push) Has been cancelled
CI / CLI integration test (push) Has been cancelled
CI / sdk-py integration test (push) Has been cancelled
CI / CI Success (push) Has been cancelled
baseline / benchmark (push) Has been cancelled
Deploy Redirects to GitHub Pages / deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:37:18 +08:00

572 lines
20 KiB
Python

from __future__ import annotations
import asyncio
import contextlib
import httpx
import orjson
import pytest
from langgraph_sdk.stream.transport.http import EventStreamHandle, ProtocolSseTransport
async def test_event_stream_handle_constructs_with_open_state():
loop = asyncio.get_running_loop()
ready: asyncio.Future[None] = loop.create_future()
done: asyncio.Future[BaseException | None] = loop.create_future()
done.set_result(None)
closed = False
async def aiter_events():
if False:
yield # pragma: no cover
async def closer():
nonlocal closed
closed = True
handle = EventStreamHandle(
events=aiter_events(), ready=ready, done=done, close=closer
)
assert handle.ready is ready
assert handle.done is done
await handle.close()
assert closed is True
async def test_send_command_posts_json_and_returns_response():
from streaming._fake_server import FakeServer
fake = FakeServer()
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
result = await sse.send_command(
{
"id": 7,
"method": "run.start",
"params": {"input": {"x": 1}},
}
)
assert result == {"type": "success", "id": 7, "result": {"run_id": "run-1"}}
assert fake.received_commands[0]["id"] == 7
async def test_send_command_returns_none_on_202():
from starlette.applications import Starlette
from starlette.responses import Response
from starlette.routing import Route
received: list[dict] = []
async def commands(request):
received.append(orjson.loads(await request.body()))
return Response(status_code=202)
app = Starlette(
routes=[Route("/threads/{thread_id}/commands", commands, methods=["POST"])]
)
transport = httpx.ASGITransport(app=app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
result = await sse.send_command({"id": 1, "method": "noop", "params": {}})
assert result is None
assert len(received) == 1
async def test_send_command_raises_when_closed():
from streaming._fake_server import FakeServer
fake = FakeServer()
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
await sse.close()
with pytest.raises(RuntimeError, match="closed"):
await sse.send_command({"id": 1, "method": "noop", "params": {}})
async def test_send_command_raises_http_error_on_4xx():
from starlette.applications import Starlette
from starlette.responses import JSONResponse
from starlette.routing import Route
async def commands(_request):
return JSONResponse({"error": "bad request"}, status_code=400)
app = Starlette(
routes=[Route("/threads/{thread_id}/commands", commands, methods=["POST"])]
)
transport = httpx.ASGITransport(app=app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
with pytest.raises(httpx.HTTPStatusError):
await sse.send_command({"id": 1, "method": "noop", "params": {}})
async def test_open_event_stream_yields_scripted_events():
from streaming._events import lifecycle_event, values_event
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.script(
[
lifecycle_event(seq=0),
values_event(seq=1),
]
)
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
handle = sse.open_event_stream(
{"channels": ["lifecycle", "values"], "namespaces": [[]]}
)
await asyncio.wait_for(handle.ready, timeout=1.0)
received = [e async for e in handle.events]
await handle.close()
methods = [e["method"] for e in received]
assert methods == ["lifecycle", "values"]
async def test_open_event_stream_passes_since_in_body():
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.script([])
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
handle = sse.open_event_stream({"channels": ["values"], "since": 42})
await asyncio.wait_for(handle.ready, timeout=1.0)
_ = [e async for e in handle.events]
await handle.close()
assert fake.stream_request_bodies[0]["since"] == 42
assert fake.stream_request_bodies[0]["channels"] == ["values"]
async def test_open_event_stream_close_cancels_in_flight_iteration():
from streaming._events import lifecycle_event
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.script(
[lifecycle_event(seq=i) for i in range(50)],
)
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
handle = sse.open_event_stream({"channels": ["lifecycle"]})
await asyncio.wait_for(handle.ready, timeout=1.0)
agen = handle.events
first = await agen.__anext__()
await handle.close()
# Further iteration should terminate cleanly, not hang.
with pytest.raises(StopAsyncIteration):
await asyncio.wait_for(agen.__anext__(), timeout=1.0)
assert first["method"] == "lifecycle"
@pytest.mark.anyio
async def test_transport_accepts_max_queue_size_kwarg():
transport = ProtocolSseTransport(
client=httpx.AsyncClient(),
thread_id="t1",
max_queue_size=42,
)
assert transport._max_queue_size == 42
@pytest.mark.anyio
async def test_transport_default_max_queue_size_is_1024():
transport = ProtocolSseTransport(
client=httpx.AsyncClient(),
thread_id="t1",
)
assert transport._max_queue_size == 1024
@pytest.mark.anyio
async def test_pump_backpressures_when_queue_full():
"""Slow consumer should not cause unbounded queue growth.
With maxsize=2 and a producer that emits 100 events before any consumption,
the pump must suspend on queue.put after the second enqueue rather than
buffer all 100. We verify by counting queue items observed at the suspension
point.
"""
q: asyncio.Queue[int] = asyncio.Queue(maxsize=2)
produced: list[int] = []
async def producer():
for i in range(100):
await q.put(i)
produced.append(i)
task = asyncio.create_task(producer())
await asyncio.sleep(0.05) # let producer fill and suspend
task.cancel()
with contextlib.suppress(asyncio.CancelledError):
await task
# Producer should have enqueued 2 items, then blocked waiting on a third
# put. The third item was attempted but never completed.
assert len(produced) == 2
@pytest.mark.anyio
async def test_mid_stream_error_after_ready_surfaces_on_done():
"""If the SSE response body iteration raises after headers/ready, the
error must be exposed on handle.done so callers can distinguish a clean
end from a transport failure."""
import httpx
from langgraph_sdk.stream.transport.http import ProtocolSseTransport
def handler(_request: httpx.Request) -> httpx.Response:
async def body():
yield b'event: message\ndata: {"jsonrpc": "2.0"}\n\n'
raise RuntimeError("simulated mid-stream drop")
return httpx.Response(200, content=body())
mock = httpx.MockTransport(handler)
async with httpx.AsyncClient(
transport=mock, base_url="http://example.com"
) as client:
transport = ProtocolSseTransport(
client=client,
thread_id="t1",
)
handle = transport.open_event_stream({"channels": ["values"]})
await handle.ready
async for _ in handle.events:
pass
err = await handle.done
assert isinstance(err, RuntimeError)
assert "mid-stream drop" in str(err)
@pytest.mark.anyio
async def test_clean_stream_end_done_resolves_with_none():
"""A stream that ends without error must resolve `done` with None."""
import httpx
from langgraph_sdk.stream.transport.http import ProtocolSseTransport
def handler(_request: httpx.Request) -> httpx.Response:
async def body():
yield b'event: message\ndata: {"jsonrpc": "2.0"}\n\n'
return httpx.Response(200, content=body())
mock = httpx.MockTransport(handler)
async with httpx.AsyncClient(
transport=mock, base_url="http://example.com"
) as client:
transport = ProtocolSseTransport(
client=client,
thread_id="t1",
)
handle = transport.open_event_stream({"channels": ["values"]})
await handle.ready
async for _ in handle.events:
pass
err = await handle.done
assert err is None
@pytest.mark.anyio
async def test_send_command_empty_200_body_raises_runtime_error_not_decoder_error():
"""A 200 response with empty body must raise RuntimeError matching the
'did not return a valid response' contract, not orjson.JSONDecodeError."""
import httpx
from langgraph_sdk.stream.transport.http import ProtocolSseTransport
def handler(_request: httpx.Request) -> httpx.Response:
return httpx.Response(200, content=b"")
mock = httpx.MockTransport(handler)
async with httpx.AsyncClient(
transport=mock, base_url="http://example.com"
) as client:
transport = ProtocolSseTransport(
client=client,
thread_id="t1",
)
with pytest.raises(RuntimeError, match="did not return a valid response"):
await transport.send_command(
{"command_id": 1, "method": "run.start", "params": {}}
)
@pytest.mark.anyio
async def test_cancel_event_prevents_post_cancel_flush():
"""When the consumer cancels the handle mid-stream, the pump's decoder
flush MUST NOT emit additional events after the cancel point."""
import httpx
from langgraph_sdk.stream.transport.http import ProtocolSseTransport
received: list = []
def handler(_request: httpx.Request) -> httpx.Response:
async def body():
yield b'event: message\ndata: {"seq": 1}\n\n'
yield b'event: message\ndata: {"seq": 2}\n\n'
yield b'event: message\ndata: {"seq": 3}\n\n'
return httpx.Response(200, content=body())
mock = httpx.MockTransport(handler)
async with httpx.AsyncClient(
transport=mock, base_url="http://example.com"
) as client:
transport = ProtocolSseTransport(
client=client,
thread_id="t1",
)
handle = transport.open_event_stream({"channels": ["values"]})
await handle.ready
async for event in handle.events:
received.append(event)
if len(received) == 1:
await handle.close()
break
# After close, no further events should drain from the flush.
async for _ in handle.events:
pytest.fail("event yielded after close()")
assert len(received) == 1
@pytest.mark.anyio
async def test_open_event_stream_ready_rejects_on_5xx():
from starlette.applications import Starlette
from starlette.responses import JSONResponse
from starlette.routing import Route
async def stream_events(_request):
return JSONResponse({"error": "boom"}, status_code=500)
app = Starlette(
routes=[
Route(
"/threads/{thread_id}/stream/events",
stream_events,
methods=["POST"],
)
]
)
transport = httpx.ASGITransport(app=app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
handle = sse.open_event_stream({"channels": ["lifecycle"]})
with pytest.raises(httpx.HTTPStatusError):
await asyncio.wait_for(handle.ready, timeout=1.0)
# Iterator should terminate cleanly (no hang).
with pytest.raises(StopAsyncIteration):
await asyncio.wait_for(handle.events.__anext__(), timeout=1.0)
await handle.close()
def test_build_event_stream_body_minimal_channels_only():
from langgraph_sdk.stream.transport.http import _build_event_stream_body
body = _build_event_stream_body({"channels": ["values"]})
assert body == {"channels": ["values"]}
def test_build_event_stream_body_includes_all_optional_fields():
from langgraph_sdk.stream.transport.http import _build_event_stream_body
body = _build_event_stream_body(
{
"channels": ["values", "messages"],
"namespaces": [["fetcher"]],
"depth": 2,
"since": 7,
}
)
assert body == {
"channels": ["values", "messages"],
"namespaces": [["fetcher"]],
"depth": 2,
"since": 7,
}
def test_build_event_stream_body_omits_since_when_not_int():
from langgraph_sdk.stream.transport.http import _build_event_stream_body
body = _build_event_stream_body({"channels": ["values"], "since": None})
assert "since" not in body
async def test_open_event_stream_raises_when_closed():
from streaming._fake_server import FakeServer
fake = FakeServer()
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
await sse.close()
with pytest.raises(RuntimeError, match="closed"):
sse.open_event_stream({"channels": ["lifecycle"]})
async def test_transport_close_cancels_open_event_streams():
from streaming._events import lifecycle_event
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.script([lifecycle_event(seq=i) for i in range(5)], delay=0.05)
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
handle = sse.open_event_stream({"channels": ["lifecycle"]})
await asyncio.wait_for(handle.ready, timeout=1.0)
# Closing the transport must terminate the open stream within a bounded time.
await asyncio.wait_for(sse.close(), timeout=1.0)
# Drain any already-queued events; the stream must end (not hang).
async def drain() -> None:
async for _ in handle.events:
pass
await asyncio.wait_for(drain(), timeout=1.0)
async def test_default_headers_forwarded_to_send_command():
"""Headers passed at construction are sent on every command request."""
from streaming._fake_server import FakeServer
fake = FakeServer()
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(
client=client,
thread_id="t-1",
headers={"X-Trace-Id": "abc123"},
)
await sse.send_command({"id": 1, "method": "run.start", "params": {}})
assert fake.command_request_headers[0].get("x-trace-id") == "abc123"
# content-type must not be clobbered by default headers
assert "application/json" in fake.command_request_headers[0].get("content-type", "")
async def test_default_headers_forwarded_to_open_event_stream():
"""Headers passed at construction are sent on every SSE stream request."""
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.script([])
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(
client=client,
thread_id="t-1",
headers={"X-Trace-Id": "abc123"},
)
handle = sse.open_event_stream({"channels": ["lifecycle"]})
await asyncio.wait_for(handle.ready, timeout=1.0)
_ = [e async for e in handle.events]
await handle.close()
assert fake.stream_request_headers_list[0].get("x-trace-id") == "abc123"
# Fixed SSE headers must not be clobbered by default headers
assert "text/event-stream" in fake.stream_request_headers_list[0].get("accept", "")
async def test_default_headers_cannot_override_sse_fixed_headers():
"""Caller-supplied default headers must not override content-type or accept."""
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.script([])
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(
client=client,
thread_id="t-1",
headers={
"content-type": "text/plain",
"accept": "application/json",
"cache-control": "max-age=3600",
},
)
handle = sse.open_event_stream({"channels": ["lifecycle"]})
await asyncio.wait_for(handle.ready, timeout=1.0)
_ = [e async for e in handle.events]
await handle.close()
hdrs = fake.stream_request_headers_list[0]
assert "application/json" in hdrs.get("content-type", "")
assert "text/event-stream" in hdrs.get("accept", "")
assert hdrs.get("cache-control") == "no-store"
async def test_fake_server_state_endpoint():
"""State endpoint returns the set state and increments the counter."""
from streaming._fake_server import FakeServer
fake = FakeServer()
fake.set_state({"foo": "bar"}, next=["node_a"])
transport = httpx.ASGITransport(app=fake.app)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
resp = await client.get("/threads/t-1/state")
assert resp.status_code == 200
body = resp.json()
assert body["values"] == {"foo": "bar"}
assert body["next"] == ["node_a"]
assert body["tasks"] == []
assert body["metadata"] == {}
assert body["checkpoint"] is None
assert body["created_at"] is None
assert fake.state_request_count == 1
assert len(fake.state_request_headers) == 1
def test_values_event_builder_shape():
"""values_event produces the expected shape with params.data as the snapshot."""
from streaming._events import values_event
evt = values_event(seq=1, values={"foo": 1})
assert evt["event_id"] == "evt-1"
assert evt["method"] == "values"
assert evt["params"]["data"] == {"values": {"foo": 1}}
assert evt["params"]["namespace"] == []
async def test_open_event_stream_done_records_post_ready_error():
from streaming._events import values_event
event_data = values_event(seq=1)
class _FailAfterOneStream(httpx.AsyncByteStream):
async def __aiter__(self):
import orjson
payload = orjson.dumps(event_data).decode()
yield f"id: {event_data.get('event_id', '')}\n".encode()
yield f"event: message\ndata: {payload}\n\n".encode()
raise RuntimeError("scripted async stream failure")
async def handler(_request: httpx.Request) -> httpx.Response:
return httpx.Response(
200,
headers={"content-type": "text/event-stream"},
stream=_FailAfterOneStream(),
)
transport = httpx.MockTransport(handler)
async with httpx.AsyncClient(transport=transport, base_url="http://test") as client:
sse = ProtocolSseTransport(client=client, thread_id="t-1")
handle = sse.open_event_stream({"channels": ["values"]})
await asyncio.wait_for(handle.ready, timeout=1.0)
received = [event async for event in handle.events]
err = await asyncio.wait_for(handle.done, timeout=1.0)
await handle.close()
assert received == [values_event(seq=1)]
assert isinstance(err, RuntimeError)
assert "scripted async stream failure" in str(err)