mirror of
https://github.com/usestrix/strix.git
synced 2026-08-16 17:27:26 +02:00
* test(proxy): drop transfer encoding on replay * test(proxy): drop transfer encoding on replay
210 lines
6.4 KiB
Python
210 lines
6.4 KiB
Python
"""Tests for the shared Caido client lifecycle and proxy call serialization.
|
|
|
|
Covers the caching + serialization guarantees of ``caido_api.call_with_client``
|
|
(the sandbox-imported path) and ``proxy.tools._call`` (the host-side path). The
|
|
Caido GraphQL transport is not concurrency-safe, so both paths must run one
|
|
call at a time against the shared client.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
from typing import TYPE_CHECKING, Any, cast
|
|
|
|
import pytest
|
|
|
|
from strix.tools.proxy import caido_api, tools
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
from collections.abc import Iterator
|
|
|
|
|
|
class _FakeClient:
|
|
def __init__(self, name: str) -> None:
|
|
self.name = name
|
|
self.closed = False
|
|
|
|
async def aclose(self) -> None:
|
|
self.closed = True
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def _clear_cache() -> Iterator[None]:
|
|
caido_api._CLIENT_CACHE.clear()
|
|
yield
|
|
caido_api._CLIENT_CACHE.clear()
|
|
|
|
|
|
async def test_call_with_client_reuses_cached_client(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
cached = _FakeClient("cached")
|
|
caido_api._CLIENT_CACHE["default"] = cast("Any", cached)
|
|
|
|
async def _new() -> Any:
|
|
raise AssertionError("_new_client must not run when a client is cached")
|
|
|
|
monkeypatch.setattr(caido_api, "_new_client", _new)
|
|
|
|
seen: dict[str, Any] = {}
|
|
|
|
async def fn(client: Any) -> str:
|
|
seen["client"] = client
|
|
return "ok"
|
|
|
|
assert await caido_api.call_with_client(fn) == "ok"
|
|
assert seen["client"] is cached
|
|
|
|
|
|
async def test_call_with_client_creates_and_caches_when_empty(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
created = _FakeClient("fresh")
|
|
|
|
async def _new() -> Any:
|
|
return created
|
|
|
|
monkeypatch.setattr(caido_api, "_new_client", _new)
|
|
|
|
seen: dict[str, Any] = {}
|
|
|
|
async def fn(client: Any) -> str:
|
|
seen["client"] = client
|
|
return "ok"
|
|
|
|
assert await caido_api.call_with_client(fn) == "ok"
|
|
assert seen["client"] is created
|
|
assert caido_api._CLIENT_CACHE["default"] is created
|
|
|
|
|
|
async def test_failed_init_does_not_poison_cache(monkeypatch: pytest.MonkeyPatch) -> None:
|
|
async def _new() -> Any:
|
|
raise ConnectionRefusedError("caido not up yet")
|
|
|
|
monkeypatch.setattr(caido_api, "_new_client", _new)
|
|
|
|
async def fn(_client: Any) -> str:
|
|
return "unreachable"
|
|
|
|
with pytest.raises(ConnectionRefusedError):
|
|
await caido_api.call_with_client(fn)
|
|
assert "default" not in caido_api._CLIENT_CACHE
|
|
|
|
|
|
async def test_call_with_client_propagates_errors() -> None:
|
|
cached = _FakeClient("cached")
|
|
caido_api._CLIENT_CACHE["default"] = cast("Any", cached)
|
|
|
|
async def fn(_client: Any) -> str:
|
|
raise ValueError("Invalid HTTPQL filter")
|
|
|
|
with pytest.raises(ValueError, match="Invalid HTTPQL"):
|
|
await caido_api.call_with_client(fn)
|
|
assert caido_api._CLIENT_CACHE["default"] is cached
|
|
|
|
|
|
async def test_call_with_client_serializes_concurrent_calls(
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
caido_api._CLIENT_CACHE["default"] = cast("Any", _FakeClient("shared"))
|
|
|
|
async def _new() -> Any:
|
|
raise AssertionError("no new client expected")
|
|
|
|
monkeypatch.setattr(caido_api, "_new_client", _new)
|
|
|
|
state = {"active": 0, "max": 0}
|
|
|
|
async def fn(_client: Any) -> str:
|
|
state["active"] += 1
|
|
state["max"] = max(state["max"], state["active"])
|
|
await asyncio.sleep(0.01)
|
|
state["active"] -= 1
|
|
return "ok"
|
|
|
|
await asyncio.gather(*(caido_api.call_with_client(fn) for _ in range(6)))
|
|
assert state["max"] == 1
|
|
|
|
|
|
async def test_host_call_serializes_concurrent_calls() -> None:
|
|
client = _FakeClient("host")
|
|
state = {"active": 0, "max": 0}
|
|
|
|
async def fn(_client: Any) -> str:
|
|
state["active"] += 1
|
|
state["max"] = max(state["max"], state["active"])
|
|
await asyncio.sleep(0.01)
|
|
state["active"] -= 1
|
|
return "ok"
|
|
|
|
await asyncio.gather(*(tools._call(cast("Any", client), fn) for _ in range(6)))
|
|
assert state["max"] == 1
|
|
|
|
|
|
def _headers_named(raw: bytes, name: str) -> list[str]:
|
|
head = raw.decode("utf-8").split("\r\n\r\n", 1)[0]
|
|
return [
|
|
line.split(":", 1)[1].strip()
|
|
for line in head.split("\r\n")[1:]
|
|
if line.split(":", 1)[0].strip().lower() == name.lower()
|
|
]
|
|
|
|
|
|
def test_build_raw_request_recomputes_content_length_for_modified_body() -> None:
|
|
# The captured request declared Content-Length: 12 (original body); the
|
|
# replayed body is longer. The emitted request must carry exactly one
|
|
# Content-Length equal to the ACTUAL body length, or the target truncates
|
|
# the modified payload (or the connection desyncs).
|
|
body = '{"user":"a\' OR 1=1 -- injected long payload"}'
|
|
_conn, raw = caido_api.build_raw_request(
|
|
method="POST",
|
|
url="https://example.com/login",
|
|
headers={"content-length": "12", "Content-Type": "application/json"},
|
|
body=body,
|
|
)
|
|
sent_body = raw.decode("utf-8").split("\r\n\r\n", 1)[1]
|
|
assert sent_body == body
|
|
assert _headers_named(raw, "Content-Length") == [str(len(body.encode("utf-8")))]
|
|
|
|
|
|
def test_build_raw_request_drops_transfer_encoding_for_modified_body() -> None:
|
|
body = '{"user":"updated"}'
|
|
_conn, raw = caido_api.build_raw_request(
|
|
method="POST",
|
|
url="https://example.com/login",
|
|
headers={
|
|
"tRaNsFeR-EnCoDiNg": "chunked",
|
|
"Content-Length": "7",
|
|
"Content-Type": "application/json",
|
|
},
|
|
body=body,
|
|
)
|
|
assert _headers_named(raw, "Transfer-Encoding") == []
|
|
assert _headers_named(raw, "Content-Length") == [str(len(body.encode("utf-8")))]
|
|
|
|
|
|
def test_build_raw_request_drops_stale_content_length_for_empty_body() -> None:
|
|
# A body cleared to empty must not keep the inherited (non-zero) length.
|
|
_conn, raw = caido_api.build_raw_request(
|
|
method="POST",
|
|
url="https://example.com/x",
|
|
headers={"Content-Length": "12"},
|
|
body="",
|
|
)
|
|
assert _headers_named(raw, "Content-Length") == []
|
|
|
|
|
|
class _Ctx:
|
|
def __init__(self, context: Any) -> None:
|
|
self.context = context
|
|
|
|
|
|
def test_ctx_client_returns_client_when_present() -> None:
|
|
client = _FakeClient("host")
|
|
got = tools._ctx_client(cast("Any", _Ctx({"caido_client": client})))
|
|
assert got is client
|
|
|
|
|
|
def test_ctx_client_returns_none_without_client() -> None:
|
|
assert tools._ctx_client(cast("Any", _Ctx({}))) is None
|
|
assert tools._ctx_client(cast("Any", _Ctx(None))) is None
|