Spaces:
Running on Zero
Running on Zero
File size: 23,675 Bytes
36fc86c 04721fb 36fc86c 04721fb 36fc86c 04721fb 36fc86c 04721fb 36fc86c 04721fb 36fc86c 04721fb 36fc86c 04721fb 23eb152 04721fb 23eb152 36fc86c 04721fb 36fc86c 04721fb 23eb152 04721fb 36fc86c 23eb152 36fc86c 04721fb 36fc86c 04721fb 36fc86c 04721fb | 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 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 | import json
import time
from pathlib import Path
from unittest.mock import patch
import pytest
import handlers as h
SAMPLES_DIR = Path(__file__).parent.parent / "samples"
@pytest.fixture(autouse=True)
def no_hf_token(monkeypatch):
"""Usage logging fails open without HF_TOKEN, so tests that don't
explicitly mock log_event still can't make a real network call."""
monkeypatch.delenv("HF_TOKEN", raising=False)
def _segments(*sources):
return [{"source": s, "target": ""} for s in sources]
# ββ state / pagination ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_make_state_defaults():
state = h._make_state()
assert state["page"] == 0
assert state["segments"] == []
assert state["has_translation"] is False
assert state["label"] == "output"
assert state["usage_tracking_enabled"] is True
assert state["session_id"]
def test_make_state_generates_unique_session_ids():
assert h._make_state()["session_id"] != h._make_state()["session_id"]
def test_set_usage_tracking_toggles_flag():
state = h._make_state()
state = h._set_usage_tracking(state, False)
assert state["usage_tracking_enabled"] is False
state = h._set_usage_tracking(state, True)
assert state["usage_tracking_enabled"] is True
def test_save_page_edits_writes_current_page_slots():
state = h._make_state()
state["segments"] = _segments("a", "b", "c")
state["page"] = 0
sources = ["A", "B", "C"] + [""] * (h.MAX_SLOTS - 3)
targets = ["ta", "tb", "tc"] + [""] * (h.MAX_SLOTS - 3)
state = h._save_page_edits(state, sources, targets)
assert state["segments"] == [
{"source": "A", "target": "ta"},
{"source": "B", "target": "tb"},
{"source": "C", "target": "tc"},
]
def test_save_page_edits_respects_page_offset():
state = h._make_state()
state["segments"] = _segments(*[f"s{i}" for i in range(h.MAX_SLOTS + 2)])
state["page"] = 1
sources = ["edited0", "edited1"] + [""] * (h.MAX_SLOTS - 2)
targets = ["t0", "t1"] + [""] * (h.MAX_SLOTS - 2)
state = h._save_page_edits(state, sources, targets)
assert state["segments"][h.MAX_SLOTS]["source"] == "edited0"
assert state["segments"][h.MAX_SLOTS + 1]["source"] == "edited1"
assert state["segments"][0]["source"] == "s0" # page 0 untouched
def test_load_page_empty_state_hides_everything():
state = h._make_state()
result = h._load_page(state)
_, nav, prev, next_, *rest = result
assert nav["value"] == ""
assert prev["interactive"] is False
assert next_["interactive"] is False
groups = rest[:h.MAX_SLOTS]
assert all(g["visible"] is False for g in groups)
def test_load_page_shows_correct_slot_count_and_nav_text():
state = h._make_state()
state["segments"] = _segments("a", "b", "c")
result = h._load_page(state)
_, nav, prev, next_, *rest = result
assert "All 3 segments" in nav["value"]
assert prev["interactive"] is False
assert next_["interactive"] is False
groups = rest[:h.MAX_SLOTS]
sources = rest[h.MAX_SLOTS:2 * h.MAX_SLOTS]
assert [g["visible"] for g in groups[:3]] == [True, True, True]
assert all(g["visible"] is False for g in groups[3:])
assert [s["value"] for s in sources[:3]] == ["a", "b", "c"]
def test_load_page_pagination_across_multiple_pages():
total = h.MAX_SLOTS + 5
state = h._make_state()
state["segments"] = _segments(*[f"s{i}" for i in range(total)])
state["page"] = 0
result = h._load_page(state)
_, nav, prev, next_, *_rest = result
assert "Page 1 of 2" in nav["value"]
assert prev["interactive"] is False
assert next_["interactive"] is True
state["page"] = 1
result = h._load_page(state)
new_state, nav, prev, next_, *rest = result
assert "Page 2 of 2" in nav["value"]
assert prev["interactive"] is True
assert next_["interactive"] is False
groups = rest[:h.MAX_SLOTS]
assert [g["visible"] for g in groups[:5]] == [True] * 5
assert all(g["visible"] is False for g in groups[5:])
def test_load_page_clamps_page_when_segments_shrank():
state = h._make_state()
state["segments"] = _segments("a")
state["page"] = 5 # stale page index from before segments were replaced
new_state, *_ = h._load_page(state)
assert new_state["page"] == 0
def test_handle_prev_and_next_navigate_and_save(monkeypatch):
total = h.MAX_SLOTS + 3
state = h._make_state()
state["segments"] = _segments(*[f"s{i}" for i in range(total)])
state["page"] = 0
slot_values = [""] * h.MAX_SLOTS + [""] * h.MAX_SLOTS
result = h._handle_next(state, *slot_values)
new_state = result[0]
assert new_state["page"] == 1
result = h._handle_prev(new_state, *slot_values)
new_state = result[0]
assert new_state["page"] == 0
def test_handle_next_does_not_advance_past_last_page():
state = h._make_state()
state["segments"] = _segments("a", "b")
state["page"] = 0
slot_values = [""] * h.MAX_SLOTS * 2
result = h._handle_next(state, *slot_values)
assert result[0]["page"] == 0
def test_handle_prev_does_not_go_below_zero():
state = h._make_state()
state["segments"] = _segments("a", "b")
state["page"] = 0
slot_values = [""] * h.MAX_SLOTS * 2
result = h._handle_prev(state, *slot_values)
assert result[0]["page"] == 0
# ββ file loading βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_load_source_none_hides_editor():
state = h._make_state()
result = h._load_source(None, state)
assert result[-1]["visible"] is False
def test_load_source_txt_populates_segments():
state = h._make_state()
path = str(SAMPLES_DIR / "sample_tibetan.txt")
result = h._load_source(path, state)
new_state = result[0]
assert len(new_state["segments"]) > 0
assert new_state["label"] == "sample_tibetan"
assert new_state["has_translation"] is False
assert result[-1]["visible"] is True
def test_load_source_logs_upload_event():
state = h._make_state()
path = str(SAMPLES_DIR / "sample_tibetan.txt")
with patch.object(h, "log_event") as mock_log:
h._load_source(path, state)
mock_log.assert_called_once()
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "upload"
assert session_id == state["session_id"]
assert payload["filename"] == "sample_tibetan.txt"
assert payload["file_type"] == "txt"
assert payload["segment_count"] == len(state["segments"])
def test_load_source_skips_logging_when_tracking_disabled():
state = h._make_state()
state["usage_tracking_enabled"] = False
path = str(SAMPLES_DIR / "sample_tibetan.txt")
with patch.object(h, "log_event") as mock_log:
h._load_source(path, state)
mock_log.assert_not_called()
def test_load_source_bad_file_hides_editor_and_does_not_raise(tmp_path):
bad_path = tmp_path / "bad.rtf"
bad_path.write_text("nope", encoding="utf-8")
state = h._make_state()
result = h._load_source(str(bad_path), state)
assert result[-1]["visible"] is False
assert state["segments"] == []
def test_load_resume_json_merges_targets_by_position():
state = h._make_state()
state["segments"] = _segments("a", "b", "c")
resume_content = json.dumps([
{"source": "a", "target": "A"},
{"source": "b", "target": ""},
{"source": "c", "target": "C"},
])
import tempfile
with tempfile.NamedTemporaryFile(suffix=".json", mode="w", delete=False) as f:
f.write(resume_content)
path = f.name
h._load_resume_json(path, state)
assert [s["target"] for s in state["segments"]] == ["A", "", "C"]
assert state["has_translation"] is True
def test_load_resume_json_no_file_or_no_segments_is_noop():
state = h._make_state()
result = h._load_resume_json(None, state)
assert result[0] == state
state2 = h._make_state()
state2["segments"] = []
result = h._load_resume_json("irrelevant.json", state2)
assert result[0]["segments"] == []
# ββ downloads ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_make_downloads_writes_expected_files(tmp_path, monkeypatch):
monkeypatch.setattr(h.tempfile, "gettempdir", lambda: str(tmp_path))
segments = [{"source": "src1", "target": "tgt1"}]
paths = h._make_downloads(segments, "mylabel")
assert paths["txt"] and Path(paths["txt"]).read_text(encoding="utf-8") == "tgt1\n"
assert paths["docx"] and Path(paths["docx"]).exists()
assert json.loads(Path(paths["json"]).read_text(encoding="utf-8")) == segments
assert paths["source_txt"] and Path(paths["source_txt"]).name == "mylabel_source.txt"
def test_make_downloads_omits_empty_content():
segments = [{"source": "", "target": ""}]
paths = h._make_downloads(segments, "mylabel")
assert paths["txt"] is None
assert paths["source_txt"] is None
def test_handle_download_click_lists_available_formats(tmp_path, monkeypatch):
monkeypatch.setattr(h.tempfile, "gettempdir", lambda: str(tmp_path))
state = h._make_state()
state["segments"] = [{"source": "src", "target": "tgt"}]
# _handle_download_click saves current textbox contents before exporting, so the
# slot values passed in must reflect the segment we just seeded above.
sources = ["src"] + [""] * (h.MAX_SLOTS - 1)
targets = ["tgt"] + [""] * (h.MAX_SLOTS - 1)
slot_values = sources + targets
new_state, checklist, get_files_btn, download_zip = h._handle_download_click(state, *slot_values)
assert "Translation (TXT)" in checklist["choices"]
assert "Translation (DOCX)" in checklist["choices"]
assert "JSON (for resume)" in checklist["choices"]
assert "Source text (TXT)" in checklist["choices"]
assert get_files_btn["visible"] is True
assert download_zip["visible"] is False
def test_handle_get_files_builds_zip_with_selected_formats(tmp_path, monkeypatch):
monkeypatch.setattr(h.tempfile, "gettempdir", lambda: str(tmp_path))
state = h._make_state()
state["segments"] = [{"source": "src", "target": "tgt"}]
state["label"] = "lbl"
zip_update, checklist_update, btn_update = h._handle_get_files(state, ["Translation (TXT)"])
assert zip_update["visible"] is True
zip_path = Path(zip_update["value"])
assert zip_path.exists()
import zipfile
with zipfile.ZipFile(zip_path) as zf:
assert zf.namelist() == ["lbl.txt"]
def test_handle_get_files_no_selection_hides_download():
state = h._make_state()
state["segments"] = [{"source": "src", "target": "tgt"}]
zip_update, checklist_update, btn_update = h._handle_get_files(state, [])
assert zip_update["visible"] is False
def test_handle_save_persists_edits_and_shows_status():
state = h._make_state()
state["segments"] = _segments("a")
slot_values = ["edited"] + [""] * (h.MAX_SLOTS - 1) + ["translated"] + [""] * (h.MAX_SLOTS - 1)
with patch.object(h, "log_event"):
new_state, status = h._handle_save(state, *slot_values)
assert new_state["segments"][0] == {"source": "edited", "target": "translated"}
assert status["value"] == "Saved."
def test_handle_save_logs_edit_event():
state = h._make_state()
state["segments"] = _segments("a")
slot_values = ["edited"] + [""] * (h.MAX_SLOTS - 1) + ["translated"] + [""] * (h.MAX_SLOTS - 1)
with patch.object(h, "log_event") as mock_log:
h._handle_save(state, *slot_values)
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "edit"
assert session_id == state["session_id"]
assert payload["segments"] == [{"source": "edited", "target": "translated"}]
def test_handle_save_skips_logging_when_tracking_disabled():
state = h._make_state()
state["usage_tracking_enabled"] = False
state["segments"] = _segments("a")
slot_values = [""] * h.MAX_SLOTS * 2
with patch.object(h, "log_event") as mock_log:
h._handle_save(state, *slot_values)
mock_log.assert_not_called()
# ββ translation handlers ββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_translate_one_updates_state_and_returns_text():
state = h._make_state()
state["segments"] = _segments("source text")
state["page"] = 0
with patch.object(h, "_engine_translate_one", return_value="translated!") as mock_translate, \
patch.object(h, "log_event"):
new_state, update = h._translate_one(state, 0, "source text", "api-key", "model-x")
assert update["value"] == "translated!"
assert new_state["segments"][0]["target"] == "translated!"
mock_translate.assert_called_once_with("source text", "api-key", "model-x")
def test_translate_one_logs_translate_event():
state = h._make_state()
state["segments"] = _segments("source text")
with patch.object(h, "_engine_translate_one", return_value="translated!"), \
patch.object(h, "using_openrouter", return_value=True), \
patch.object(h, "log_event") as mock_log:
h._translate_one(state, 0, "source text", "api-key", "model-x")
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "translate"
assert payload["backend"] == "openrouter"
assert payload["model"] == "model-x"
assert payload["prompt"] == h.read_prompt()
assert payload["segments"] == [{"source": "source text", "target": "translated!"}]
def test_translate_one_logs_local_backend_without_prompt():
state = h._make_state()
state["segments"] = _segments("source text")
with patch.object(h, "_engine_translate_one", return_value="translated!"), \
patch.object(h, "using_openrouter", return_value=False), \
patch.object(h, "log_event") as mock_log:
h._translate_one(state, 0, "source text", None, "model-x")
event_type, session_id, payload = mock_log.call_args[0]
assert payload["backend"] == "local_cpu"
assert payload["model"] == "billingsmoore/mlotsawa-ground-base"
assert payload["prompt"] is None
def test_translate_one_records_error_in_target():
state = h._make_state()
state["segments"] = _segments("source text")
with patch.object(h, "_engine_translate_one", side_effect=RuntimeError("network down")):
new_state, update = h._translate_one(state, 0, "source text", "api-key", "model-x")
assert "Translation error" in update["value"]
assert "network down" in new_state["segments"][0]["target"]
def test_translate_one_out_of_range_slot_does_not_crash():
state = h._make_state()
state["segments"] = _segments("only one")
state["page"] = 0
with patch.object(h, "_engine_translate_one", return_value="x"):
new_state, update = h._translate_one(state, 5, "whatever", None, "model")
assert update["value"] == "x"
assert new_state["segments"] == _segments("only one") # untouched, index out of range
def test_translate_all_reports_completion_status():
state = h._make_state()
state["segments"] = _segments("a", "b")
# _translate_all saves current textbox contents before translating, so the slot
# values passed in must reflect the segments we just seeded above.
sources = ["a", "b"] + [""] * (h.MAX_SLOTS - 2)
targets = [""] * h.MAX_SLOTS
slot_values = sources + targets
def fake_translate_segments(segments, api_key, model, progress_callback=None, stop=None):
for seg in segments:
seg["target"] = seg["source"].upper()
return segments, []
with patch.object(h, "translate_segments", side_effect=fake_translate_segments), \
patch.object(h, "using_openrouter", return_value=True), \
patch.object(h, "log_event") as mock_log:
results = list(h._translate_all(state, "api-key", "model-x", *slot_values))
final = results[-1]
status = final[-1]
assert "Translated 2 segment(s) via OpenRouter." in status["value"]
final_state = final[0]
assert [s["target"] for s in final_state["segments"]] == ["A", "B"]
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "translate"
assert payload["backend"] == "openrouter"
assert payload["model"] == "model-x"
assert payload["prompt"] == h.read_prompt()
assert payload["segment_count"] == 2
assert payload["segments"] == [{"source": "a", "target": "A"}, {"source": "b", "target": "B"}]
def test_translate_all_logs_local_backend_without_prompt():
state = h._make_state()
state["segments"] = _segments("a")
slot_values = ["a"] + [""] * (h.MAX_SLOTS - 1) + [""] * h.MAX_SLOTS
def fake_translate_segments(segments, api_key, model, progress_callback=None, stop=None):
for seg in segments:
seg["target"] = seg["source"].upper()
return segments, []
with patch.object(h, "translate_segments", side_effect=fake_translate_segments), \
patch.object(h, "using_openrouter", return_value=False), \
patch.object(h, "log_event") as mock_log:
list(h._translate_all(state, None, "model-x", *slot_values))
event_type, session_id, payload = mock_log.call_args[0]
assert payload["backend"] == "local_cpu"
assert payload["model"] == "billingsmoore/mlotsawa-ground-base"
assert payload["prompt"] is None
def test_translate_all_reports_errors_in_status():
state = h._make_state()
state["segments"] = _segments("a", "b")
slot_values = [""] * h.MAX_SLOTS * 2
def fake_translate_segments(segments, api_key, model, progress_callback=None, stop=None):
return segments, ["Segment 1: boom"]
with patch.object(h, "translate_segments", side_effect=fake_translate_segments), \
patch.object(h, "using_openrouter", return_value=False):
results = list(h._translate_all(state, None, "model-x", *slot_values))
status = results[-1][-1]
assert "local CPU model" in status["value"]
assert "1 error(s)" in status["value"]
def test_translate_all_cancel_sets_stop_event():
state = h._make_state()
state["segments"] = _segments(*[f"s{i}" for i in range(3)])
slot_values = [""] * h.MAX_SLOTS * 2
stop_seen = {}
def fake_translate_segments(segments, api_key, model, progress_callback=None, stop=None):
stop_seen["stop"] = stop
time.sleep(0.05)
return segments, []
with patch.object(h, "translate_segments", side_effect=fake_translate_segments):
gen = h._translate_all(state, "key", "model", *slot_values)
next(gen) # drive it far enough to start the background thread
for _ in gen:
pass
assert stop_seen["stop"] is not None
assert not stop_seen["stop"].is_set() # ran to completion, was never told to stop
# ββ prompt management ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_read_save_reset_prompt_roundtrip(monkeypatch, tmp_path):
import engine.prompt as prompt_module
prompt_path = tmp_path / "translation_prompt.txt"
prompt_path.write_text("default", encoding="utf-8")
monkeypatch.setattr(prompt_module, "PROMPT_PATH", prompt_path)
monkeypatch.setattr(prompt_module, "_DEFAULT_PROMPT", "default")
assert h._read_prompt() == "default"
state = h._make_state()
_, status = h._save_prompt(state, "edited")
assert status["value"] == "Prompt saved."
assert h._read_prompt() == "edited"
_, box_update, status_update = h._reset_prompt(state)
assert box_update["value"] == "default"
assert status_update["value"] == "Prompt reset to default."
def test_save_prompt_logs_prompt_save_event():
state = h._make_state()
with patch.object(h, "log_event") as mock_log:
h._save_prompt(state, "new prompt text")
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "prompt_save"
assert session_id == state["session_id"]
assert payload["prompt"] == "new prompt text"
def test_reset_prompt_logs_prompt_reset_event():
state = h._make_state()
with patch.object(h, "log_event") as mock_log:
h._reset_prompt(state)
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "prompt_reset"
assert session_id == state["session_id"]
# ββ other interaction logging βββββββββββββββββββββββββββββββββββββββββββββββ
def test_load_resume_json_logs_resume_event():
state = h._make_state()
state["segments"] = _segments("a", "b", "c")
resume_content = json.dumps([
{"source": "a", "target": "A"},
{"source": "b", "target": ""},
{"source": "c", "target": "C"},
])
import tempfile
with tempfile.NamedTemporaryFile(suffix=".json", mode="w", delete=False) as f:
f.write(resume_content)
path = f.name
with patch.object(h, "log_event") as mock_log:
h._load_resume_json(path, state)
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "resume"
assert payload["filename"] == Path(path).name
assert payload["segment_count"] == 3
assert payload["segments"] == [
{"source": "a", "target": "A"},
{"source": "b", "target": ""},
{"source": "c", "target": "C"},
]
def test_handle_get_files_logs_download_event():
state = h._make_state()
state["segments"] = [{"source": "src", "target": "tgt"}]
state["label"] = "lbl"
with patch.object(h, "log_event") as mock_log:
h._handle_get_files(state, ["Translation (TXT)"])
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "download"
assert payload["formats"] == ["Translation (TXT)"]
assert payload["segments"] == [{"source": "src", "target": "tgt"}]
def test_handle_get_files_no_selection_does_not_log():
state = h._make_state()
state["segments"] = [{"source": "src", "target": "tgt"}]
with patch.object(h, "log_event") as mock_log:
h._handle_get_files(state, [])
mock_log.assert_not_called()
def test_handle_prev_and_next_log_navigate_events():
state = h._make_state()
state["segments"] = _segments(*[f"s{i}" for i in range(h.MAX_SLOTS + 3)])
state["page"] = 0
slot_values = [""] * h.MAX_SLOTS * 2
with patch.object(h, "log_event") as mock_log:
result = h._handle_next(state, *slot_values)
new_state = result[0]
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "navigate"
assert payload == {"direction": "next", "page": 1}
with patch.object(h, "log_event") as mock_log:
h._handle_prev(new_state, *slot_values)
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "navigate"
assert payload == {"direction": "prev", "page": 0}
def test_handle_cancel_translate_logs_event():
state = h._make_state()
with patch.object(h, "log_event") as mock_log:
h._handle_cancel_translate(state)
event_type, session_id, payload = mock_log.call_args[0]
assert event_type == "translate_cancel"
assert session_id == state["session_id"]
|