Fixed stabilize e2e SSE event handling
ci/woodpecker/push/02-build-push Pipeline was canceled
ci/woodpecker/manual/e2e-smoke-jetson Pipeline was successful
ci/woodpecker/manual/01-test Pipeline failed
ci/woodpecker/manual/02-build-push Pipeline was successful

This commit is contained in:
Roman Meshko
2026-05-08 18:05:51 +03:00
parent 562ad14b09
commit b2af48a2e5
2 changed files with 66 additions and 76 deletions
+64 -37
View File
@@ -88,38 +88,6 @@ def image_detect(http_client, auth_headers):
def _detect(image_bytes, filename="img.jpg", config=None, timeout=30):
cid = str(uuid.uuid4())
headers = {**auth_headers, "X-Channel-Id": cid}
detections = []
errors = []
done = threading.Event()
connected = threading.Event()
def _listen():
try:
with http_client.get(
f"/detect/events/{cid}",
stream=True,
timeout=timeout + 2,
headers=auth_headers,
) as resp:
resp.raise_for_status()
connected.set()
for ev in sseclient.SSEClient(resp).events():
if not ev.data or not str(ev.data).strip():
continue
data = json.loads(ev.data)
if data.get("mediaStatus") == "AIProcessing":
detections.extend(data.get("annotations", []))
if data.get("mediaStatus") in ("AIProcessed", "Error"):
break
except BaseException as e:
errors.append(e)
finally:
connected.set()
done.set()
th = threading.Thread(target=_listen, daemon=True)
th.start()
connected.wait(timeout=5)
data_form = {}
if config:
@@ -133,19 +101,78 @@ def image_detect(http_client, auth_headers):
headers=headers,
timeout=timeout,
)
completed = done.wait(timeout=timeout)
assert r.status_code == 202, f"Expected 202, got {r.status_code}: {r.text}"
events = _read_sse_events_until_terminal(
http_client, cid, auth_headers, timeout=timeout
)
elapsed_ms = (time.perf_counter() - t0) * 1000.0
assert r.status_code == 202, f"Expected 202, got {r.status_code}: {r.text}"
assert completed, f"Timed out waiting for terminal SSE event on channel {cid}"
assert not errors, f"SSE errors: {errors}"
assert events, f"No SSE events received on channel {cid}"
assert events[-1].get("mediaStatus") in ("AIProcessed", "Error")
th.join(timeout=1)
detections = []
for event in events:
if event.get("mediaStatus") == "AIProcessing":
detections.extend(event.get("annotations", []))
return detections, elapsed_ms
return _detect
def _read_sse_events_until_terminal(http_client, channel_id, headers, timeout=30):
deadline = time.time() + timeout
after_ts = 0
collected = []
last_error = None
while time.time() < deadline:
remaining = max(0.1, deadline - time.time())
read_timeout = min(5, remaining)
try:
with http_client.get(
f"/detect/events/{channel_id}?after_ts={after_ts}",
stream=True,
timeout=(5, read_timeout),
headers=headers,
) as resp:
resp.raise_for_status()
for ev in sseclient.SSEClient(resp).events():
if ev.id:
try:
after_ts = max(after_ts, int(ev.id))
except ValueError:
pass
if not ev.data or not str(ev.data).strip():
continue
data = json.loads(ev.data)
collected.append(data)
if data.get("mediaStatus") in ("AIProcessed", "Error"):
return collected
if time.time() >= deadline:
break
except (requests.exceptions.RequestException, OSError) as exc:
last_error = exc
time.sleep(0.2)
if collected:
return collected
if last_error is not None:
raise AssertionError(
f"SSE timed out on channel {channel_id}: {last_error}"
) from last_error
return collected
@pytest.fixture(scope="session")
def sse_events_until_terminal(http_client, auth_headers):
def _read(channel_id, headers=None, timeout=30):
return _read_sse_events_until_terminal(
http_client, channel_id, headers or auth_headers, timeout=timeout
)
return _read
@pytest.fixture
def sse_client_factory(http_client, auth_headers):
@contextmanager