удаления еще раз 2

This commit is contained in:
2026-08-20 16:22:47 +03:00
parent 9429659c14
commit 54fd7dbbed
9 changed files with 167 additions and 51 deletions

View File

@@ -0,0 +1,40 @@
from pathlib import Path
ROOT = Path(__file__).resolve().parents[1]
APP_JS = (ROOT / "ui_builder/static/app.js").read_text(encoding="utf-8")
APP = (ROOT / "app.py").read_text(encoding="utf-8")
def test_game_countdown_resume_is_reseeded_before_start():
block = APP_JS.split("async function syncActiveVmixGameCountdown", 1)[1].split("function penaltyMirrorKey", 1)[0]
assert '["timer_start", "timer_restart", "timer_resume"].includes(eventName)' in block
set_pos = block.index('Function: "SetCountdown"')
start_pos = block.index('Function: "StartCountdown"')
assert set_pos < start_pos
assert 'eventName === "timer_resume"' not in block
def test_hockey_timer_shortcut_reseeds_game_and_penalty_on_resume():
block = APP_JS.split('case "hockey_vmix_timers_start":', 1)[1].split('case "delay":', 1)[0]
# Resume must no longer have a StartCountdown-only branch.
assert '} else if (action === "resume") {' not in block
assert block.count('Function: "SetCountdown"') >= 2
assert block.count('Function: "StartCountdown"') >= 2
def test_penalty_rebalance_pairs_every_start_with_current_web_value():
block = APP_JS.split("async function rebalanceVmixPenaltyTargets", 1)[1].split("function currentHockeyPenaltyEntries", 1)[0]
assert "const startingCountdown" in block
assert "force || assignmentChanged || startingCountdown" in block
assert 'Function: "SetCountdown"' in block
assert 'Function: "StartCountdown"' in block
def test_native_mode_still_has_no_per_second_countdown_transport():
assert 'eventName === "timer_tick" && state.vmixTimerMirrors.has(component.action_id)' in APP_JS
tick_branch = APP_JS.split('eventName === "timer_tick" && state.vmixTimerMirrors.has(component.action_id)', 1)[1].split('} else if (eventName !== "timer_tick"', 1)[0]
assert "SetCountdown" not in tick_branch
def test_build93_runtime_version():
assert 'BUILD_VERSION = "2026.08.20.14"' in APP