| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512 |
- from __future__ import annotations
- import json
- import runpy
- import subprocess
- from pathlib import Path
- from types import SimpleNamespace
- import pytest
- from deepseek_harness import RunResult
- ROOT = Path(__file__).resolve().parents[3]
- SMOKE = runpy.run_path(ROOT / "scripts" / "smoke-python-runtime.py")
- def live_result(**overrides: object) -> RunResult:
- values = {
- "session_id": "installed-wheel-live-api",
- "final_response": SMOKE["LIVE_API_SENTINEL"],
- "finish_reason": "completed",
- "events": [{"type": "tool/call", "data": {"name": "unrelated_tool"}}],
- "notifications": [],
- }
- values.update(overrides)
- return RunResult(**values)
- @pytest.fixture
- def live_smoke(monkeypatch: pytest.MonkeyPatch) -> SimpleNamespace:
- import deepseek_harness
- state = SimpleNamespace(
- prompts=[], session_ids=[], challenges=[], checked_logs=[], closed=False,
- create_bytes=SMOKE["LIVE_API_SENTINEL"].encode("utf-8"),
- create_result=live_result(), verify_result=live_result(), receipt_mode="copy",
- )
- globals_ = SMOKE["smoke_sdk_live"].__globals__
- token_hex = globals_["secrets"].token_hex
- def fresh_challenge(size: int) -> str:
- assert len(state.prompts) == 1
- value = token_hex(size)
- state.challenges.append(value)
- return value
- class ScriptedHarness:
- def __init__(self, **kwargs: object) -> None:
- state.root = Path(kwargs["cwd"])
- assert "toolChoice" not in kwargs
- def __enter__(self) -> ScriptedHarness:
- return self
- def __exit__(self, *args: object) -> None:
- state.closed = True
- def run(self, prompt: str, *, session_id: str) -> RunResult:
- state.prompts.append(prompt)
- state.session_ids.append(session_id)
- if len(state.prompts) == 1:
- state.marker = Path(prompt.splitlines()[-1])
- assert state.marker.parent == state.root
- if state.create_bytes is not None:
- state.marker.write_bytes(state.create_bytes)
- return state.create_result
- assert len(state.prompts) == 2
- assert len(state.challenges) == 1
- challenge = state.challenges[0]
- assert all(challenge not in sent for sent in state.prompts)
- assert str(state.marker) not in prompt
- assert "previous turn" in prompt and "changed externally" in prompt
- assert state.marker.read_bytes() == challenge.encode("ascii")
- receipt = Path(prompt.splitlines()[-1])
- assert receipt != state.marker and not receipt.exists()
- if state.receipt_mode == "copy":
- receipt.write_bytes(state.marker.read_bytes())
- elif state.receipt_mode == "stale":
- receipt.write_bytes(state.create_bytes)
- elif state.receipt_mode == "wrong":
- receipt.write_bytes(b"wrong")
- elif state.receipt_mode == "newline":
- receipt.write_bytes(state.marker.read_bytes() + b"\n")
- elif state.receipt_mode == "changed-source":
- receipt.write_bytes(state.marker.read_bytes())
- state.marker.write_bytes(b"changed")
- elif state.receipt_mode != "missing":
- raise AssertionError(state.receipt_mode)
- return state.verify_result
- monkeypatch.setenv("DEEPSEEK_API_KEY", "unit-test-key")
- monkeypatch.setenv("DEEPSEEK_BASE_URL", "https://api.invalid")
- monkeypatch.setattr(deepseek_harness, "DeepSeekHarness", ScriptedHarness)
- monkeypatch.setattr(globals_["secrets"], "token_hex", fresh_challenge)
- monkeypatch.setitem(globals_, "assert_zstd_session_log", state.checked_logs.append)
- return state
- def test_live_smoke_requires_fresh_external_content(live_smoke: SimpleNamespace) -> None:
- SMOKE["smoke_sdk_live"]()
- assert len(live_smoke.prompts) == 2
- assert live_smoke.session_ids == ["installed-wheel-live-api"] * 2
- assert len(live_smoke.checked_logs) == 1
- assert live_smoke.closed and not live_smoke.root.exists()
- @pytest.mark.parametrize("label", ["create", "verify"])
- @pytest.mark.parametrize(("overrides", "message"), [
- ({"finish_reason": "error"}, "turn ended with 'error'"),
- ({"finish_reason": "error", "events": [{
- "type": "turn/end", "data": {"turn": 1, "reason": {
- "kind": "error", "error": {"code": "AUTH", "status": 401},
- }},
- }]}, "turn ended with.*AUTH.*401"),
- ({"events": []}, "turn made no model-requested tool call"),
- ({"final_response": "PYTHON_SDK_LIVE_OK extra"}, "turn returned"),
- ])
- def test_live_smoke_rejects_invalid_turn_before_continuing(
- live_smoke: SimpleNamespace, label: str, overrides: dict[str, object], message: str,
- ) -> None:
- setattr(live_smoke, f"{label}_result", live_result(**overrides))
- with pytest.raises(AssertionError, match=f"{label} {message}"):
- SMOKE["smoke_sdk_live"]()
- assert len(live_smoke.prompts) == (1 if label == "create" else 2)
- assert not live_smoke.checked_logs
- assert live_smoke.closed
- if label == "create":
- assert not live_smoke.challenges
- @pytest.mark.parametrize("content", [None, b"wrong", b"PYTHON_SDK_LIVE_OK\n"])
- def test_live_smoke_rejects_bad_create_before_host_overwrite(
- live_smoke: SimpleNamespace, content: bytes | None,
- ) -> None:
- live_smoke.create_bytes = content
- with pytest.raises(AssertionError, match="create turn (did not create|wrote unexpected bytes)"):
- SMOKE["smoke_sdk_live"]()
- assert len(live_smoke.prompts) == 1
- assert not live_smoke.challenges and not live_smoke.checked_logs
- assert live_smoke.closed
- @pytest.mark.parametrize(("mode", "message"), [
- ("missing", "did not create receipt"),
- ("stale", "wrote unexpected bytes to receipt"),
- ("wrong", "wrote unexpected bytes to receipt"),
- ("newline", "wrote unexpected bytes to receipt"),
- ("changed-source", "changed source file"),
- ])
- def test_live_smoke_rejects_unrelated_tool_without_exact_receipt(
- live_smoke: SimpleNamespace, mode: str, message: str,
- ) -> None:
- live_smoke.receipt_mode = mode
- with pytest.raises(AssertionError, match=f"verify turn {message}"):
- SMOKE["smoke_sdk_live"]()
- assert len(live_smoke.prompts) == 2
- assert not live_smoke.checked_logs
- assert live_smoke.closed
- @pytest.mark.parametrize(
- ("prompt_name", "expected"),
- [
- ("SNAPSHOT_DIRECT_CHILD_PROMPT", "DIRECT_CHILD_OK"),
- ("SNAPSHOT_WORKFLOW_CHILD_PROMPT", "WORKFLOW_CHILD_OK"),
- ],
- )
- def test_child_prompt_precedes_runtime_context(prompt_name: str, expected: str) -> None:
- chunks = SMOKE["completion_chunks"]({
- "messages": [
- {"role": "user", "content": SMOKE[prompt_name]},
- {"role": "user", "content": "Current runtime context"},
- ],
- })
- assert any(
- choice.get("delta", {}).get("content") == expected
- for chunk in chunks
- for choice in chunk.get("choices", [])
- )
- def test_mcp_smoke_requests_the_discovered_tool() -> None:
- chunks = SMOKE["completion_chunks"]({
- "messages": [{"role": "user", "content": SMOKE["MCP_PROMPT"]}],
- "tools": [{"type": "function", "function": {"name": "mcp__fixture__add"}}],
- })
- calls = [
- call
- for chunk in chunks
- for choice in chunk.get("choices", [])
- for call in choice.get("delta", {}).get("tool_calls", [])
- ]
- assert calls[0]["function"] == {
- "name": "mcp__fixture__add",
- "arguments": '{"a": 19, "b": 23}',
- }
- def test_mcp_smoke_accepts_the_external_server_result() -> None:
- chunks = SMOKE["completion_chunks"]({
- "messages": [
- {"role": "user", "content": SMOKE["MCP_PROMPT"]},
- {
- "role": "assistant",
- "tool_calls": [{
- "id": "mcp-add",
- "type": "function",
- "function": {"name": "mcp__fixture__add", "arguments": '{}'},
- }],
- },
- {"role": "tool", "tool_call_id": "mcp-add", "content": "42"},
- ],
- })
- assert any(
- choice.get("delta", {}).get("content") == SMOKE["MCP_TEXT"]
- for chunk in chunks
- for choice in chunk.get("choices", [])
- )
- def test_snapshot_comparison_preserves_opaque_generation_provenance() -> None:
- normalize = SMOKE["normalize_session_format_comparison"]
- expected = {
- "header": {"type": "session", "version": 0, "otherVersion": 7},
- "accepted": {
- "type": "session-log-deepseek/delivery-accepted",
- "data": {"sessionId": "s", "throughSeq": 4},
- },
- "source": {
- "kind": "session-reference",
- "references": [{"sessionId": "other", "capturedThroughSeq": 8}],
- },
- }
- actual = {
- "header": {"type": "session", "version": 1, "otherVersion": 7},
- "accepted": {
- "type": "session-log-deepseek/delivery-accepted",
- "data": {"sessionId": "s", "sessionFormatVersion": 1, "throughSeq": 4},
- },
- "source": {
- "kind": "session-reference",
- "references": [{
- "sessionId": "other",
- "capturedFormatVersion": 1,
- "capturedThroughSeq": 8,
- }],
- },
- }
- assert normalize(expected) != normalize(actual)
- assert normalize(expected)["header"] == normalize(actual)["header"]
- assert normalize(expected)["header"]["otherVersion"] == 7
- assert normalize(actual)["accepted"] == actual["accepted"]
- assert normalize(actual)["source"] == actual["source"]
- def test_snapshot_value_scrubs_system_nodes_without_erasing_header_fields() -> None:
- normalize = SMOKE["normalize_snapshot_value"]
- system = {
- "type": "system/message",
- "data": {"message": {"role": "system", "content": [{"type": "text", "text": "prompt"}]}},
- }
- header = {"type": "request/header", "data": {"header": {"system": "unexpected"}}}
- assert normalize(system, [])["data"]["message"]["content"] == [{"type": "text", "text": "{{system}}"}]
- assert normalize(header, []) == header
- empty = {"type": "system/message", "data": {"message": {"role": "system", "content": []}}}
- assert normalize(empty, []) == empty
- def test_snapshot_value_normalizes_embedded_assistant_stream_timing() -> None:
- normalize = SMOKE["normalize_snapshot_value"]
- event = {
- "type": "assistant/message",
- "seq": 4,
- "time": 100,
- "data": {
- "stream": [
- {"type": "chunk", "time": 101, "chunk": {"type": "finish"}},
- {"type": "text-chunks", "time0": 102, "dt": [1, 2], "texts": ["a", "b", "c"]},
- ],
- },
- }
- normalized = normalize(event, [])
- assert normalized["time"] == 0
- assert normalized["data"]["stream"] == [
- {"type": "chunk", "time": 0, "chunk": {"type": "finish"}},
- {"type": "text-chunks", "time0": 0, "dt": [0, 0], "texts": ["a", "b", "c"]},
- ]
- def test_snapshot_comparison_expands_embedded_assistant_streams() -> None:
- normalize = SMOKE["normalize_session_format_comparison"]
- expected = [
- {
- "type": "assistant/chunk",
- "seq": 4,
- "time": 0,
- "data": {"turn": 1, "step": 1, "chunk": {
- "type": "text-delta", "index": 0, "text": "done",
- }},
- },
- {
- "type": "assistant/message",
- "seq": 5,
- "time": 0,
- "data": {"turn": 1, "step": 1, "message": {"role": "assistant"}},
- "sourceEventSeqs": [4],
- "surfaceOp": "append",
- },
- ]
- actual = [{
- "type": "assistant/message",
- "seq": 4,
- "time": 0,
- "data": {
- "turn": 1,
- "step": 1,
- "message": {"role": "assistant"},
- "stream": [{
- "type": "text-chunks", "time0": 0, "index": 0, "dt": [], "texts": ["done"],
- }],
- },
- "surfaceOp": "append",
- }]
- assert normalize(actual, 2) == normalize(expected, 1)
- tool_result = {
- "type": "tool/result",
- "data": {"turn": 1, "step": 1},
- "sourceEventSeqs": [4],
- }
- assert normalize(tool_result, 1)["sourceEventSeqs"] == [4]
- assert normalize(tool_result, 2)["sourceEventSeqs"] == [4]
- def test_snapshot_stream_expands_reasoning_and_tool_call_records() -> None:
- expand = SMOKE["expand_snapshot_stream_member"]
- assert expand({
- "type": "reasoning-chunks", "time0": 0, "index": 1,
- "dt": [], "texts": ["think"],
- }) == [{"type": "reasoning-delta", "index": 1, "text": "think"}]
- assert expand({
- "type": "tool-call-chunks", "time0": 0, "index": 2,
- "id": "call-1", "name": "read", "dt": [1], "args": ["{", "}"],
- }) == [
- {"type": "tool-call-delta", "index": 2, "id": "call-1", "name": "read", "argumentsDelta": "{"},
- {"type": "tool-call-delta", "index": 2, "id": "call-1", "name": "read", "argumentsDelta": "}"},
- ]
- def test_snapshot_file_builder_order_is_checked_outside_update_mode(tmp_path: Path) -> None:
- compare = SMOKE["compare_snapshot_files"]
- with pytest.raises(AssertionError, match="snapshot builder produced"):
- compare({}, False, tmp_path, ("result.json",))
- def test_snapshot_comparison_expands_sdk_wrapped_attempts() -> None:
- normalize = SMOKE["normalize_session_format_comparison"]
- actual = [{
- "method": "session.event",
- "payload": {
- "sessionId": "s",
- "event": {
- "type": "assistant/attempt",
- "seq": 7,
- "time": 0,
- "data": {
- "turn": 1,
- "step": 1,
- "stream": [{"type": "chunk", "time": 0, "chunk": {"type": "finish"}}],
- },
- },
- },
- }]
- assert normalize(actual) == [{
- "method": "session.event",
- "payload": {
- "sessionId": "s",
- "event": {
- "type": "assistant/chunk",
- "data": {"turn": 1, "step": 1, "chunk": {"type": "finish"}},
- },
- },
- }]
- def test_snapshot_generation_names_select_highest_role_without_double_counting(
- tmp_path: Path,
- ) -> None:
- render = SMOKE["snapshot_session_filename"]
- select = SMOKE["selected_snapshot_session_files"]
- assert render(0, 0) == "session.jsonl"
- assert render(0, 2) == "session.v2.jsonl"
- assert render(3, 0) == "session.3.jsonl"
- assert render(3, 2) == "session.3.v2.jsonl"
- (tmp_path / "session.jsonl").write_text(
- '{"type":"session","version":0}\n', encoding="utf-8",
- )
- (tmp_path / "session.v1.jsonl").write_text(
- '{"type":"session","version":1}\n', encoding="utf-8",
- )
- (tmp_path / "session.1.jsonl").write_text(
- '{"type":"session","version":0}\n', encoding="utf-8",
- )
- assert {index: path.name for index, path in select(tmp_path).items()} == {
- 0: "session.v1.jsonl",
- 1: "session.1.jsonl",
- }
- def test_snapshot_comparison_accepts_v3_output_against_v2_without_rewriting(tmp_path: Path) -> None:
- predecessor = '{"type":"session","version":2}\n'
- successor = '{"type":"session","version":3}\n'
- old_path = tmp_path / "session.v2.jsonl"
- old_path.write_text(predecessor, encoding="utf-8")
- files = {"session.v3.jsonl": successor}
- SMOKE["compare_snapshot_files"](files, False, tmp_path, ("session.v2.jsonl",))
- assert old_path.read_text(encoding="utf-8") == predecessor
- assert not (tmp_path / "session.v3.jsonl").exists()
- SMOKE["compare_snapshot_files"](files, True, tmp_path, ("session.v2.jsonl",))
- assert old_path.read_text(encoding="utf-8") == predecessor
- assert (tmp_path / "session.v3.jsonl").read_text(encoding="utf-8") == successor
- assert SMOKE["selected_snapshot_session_files"](tmp_path) == {0: tmp_path / "session.v3.jsonl"}
- @pytest.mark.parametrize("filenames", [
- ("session.1.v2.jsonl", "session.v2.jsonl"),
- ("session.v2.jsonl",),
- ("session.v2.jsonl", "session.2.v2.jsonl"),
- ])
- def test_snapshot_builder_checks_role_order_and_count_across_generations(
- tmp_path: Path, filenames: tuple[str, ...],
- ) -> None:
- files = {"session.v3.jsonl": "", "session.1.v3.jsonl": ""}
- with pytest.raises(AssertionError, match="snapshot builder produced"):
- SMOKE["compare_snapshot_files"](files, False, tmp_path, filenames)
- def test_snapshot_generation_comparison_rejects_changed_payload(tmp_path: Path) -> None:
- (tmp_path / "session.v2.jsonl").write_text(
- '{"type":"session","version":2,"id":"expected"}\n', encoding="utf-8",
- )
- with pytest.raises(AssertionError, match="executable snapshot mismatch"):
- SMOKE["compare_snapshot_files"](
- {"session.v3.jsonl": '{"type":"session","version":3,"id":"changed"}\n'},
- False, tmp_path, ("session.v2.jsonl",),
- )
- @pytest.mark.parametrize("version", [2, 4])
- @pytest.mark.parametrize("update", [False, True])
- def test_snapshot_comparison_rejects_noncurrent_writer(
- tmp_path: Path, version: int, update: bool,
- ) -> None:
- golden = '{"type":"session","version":2}\n'
- (tmp_path / "session.v2.jsonl").write_text(golden, encoding="utf-8")
- content = json.dumps({"type": "session", "version": version}) + "\n"
- with pytest.raises(AssertionError, match="expected current Session format v3"):
- SMOKE["compare_snapshot_files"](
- {f"session.v{version}.jsonl": content}, update, tmp_path, ("session.v2.jsonl",),
- )
- assert (tmp_path / "session.v2.jsonl").read_text(encoding="utf-8") == golden
- assert not (tmp_path / "session.v4.jsonl").exists()
- @pytest.mark.parametrize("version", [2, 3, 4])
- def test_persisted_session_requires_current_writer(version: int) -> None:
- content = json.dumps({"type": "session", "version": version}) + "\n"
- path = Path(f"session.v{version}.jsonl")
- if version == 3:
- assert SMOKE["assert_persisted_session_version"](path, content) == version
- else:
- with pytest.raises(AssertionError, match="expected current Session format v3"):
- SMOKE["assert_persisted_session_version"](path, content)
- def test_snapshot_generation_filename_must_match_header(tmp_path: Path) -> None:
- (tmp_path / "session.v1.jsonl").write_text(
- '{"type":"session","version":0}\n', encoding="utf-8",
- )
- with pytest.raises(AssertionError, match="filename declares Session format v1"):
- SMOKE["selected_snapshot_session_files"](tmp_path)
- @pytest.mark.parametrize("returncode", [1, -1073741819, 3221225477])
- def test_profile_plugin_failure_reports_native_exit_status(monkeypatch: pytest.MonkeyPatch, returncode: int) -> None:
- def failed_install(*args: object, **kwargs: object) -> subprocess.CompletedProcess[str]:
- return subprocess.CompletedProcess(args=[], returncode=returncode, stdout="", stderr="")
- monkeypatch.setattr(subprocess, "run", failed_install)
- with pytest.raises(AssertionError) as error:
- SMOKE["smoke_sdk_profile_plugin"]("http://127.0.0.1:1")
- message = str(error.value)
- assert f"returncode={returncode}" in message
- assert f"0x{returncode & 0xffffffff:08x}" in message
- assert "stdout='' stderr=''" in message
|