94 lines
3.2 KiB
Python
94 lines
3.2 KiB
Python
"""
|
|
Tests for vendored ghostty-web files.
|
|
|
|
Verifies that the ghostty-web UMD build and WASM binary are present
|
|
in the vendor directory and servable by the static file server.
|
|
"""
|
|
|
|
import mimetypes
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
from muxplex.main import app
|
|
|
|
_VENDOR_DIR = Path(__file__).resolve().parent.parent / "frontend" / "vendor"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# File-existence tests (no server required)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_ghostty_web_js_exists():
|
|
"""muxplex/frontend/vendor/ghostty-web.js must exist."""
|
|
path = _VENDOR_DIR / "ghostty-web.js"
|
|
assert path.is_file(), f"Expected vendored JS at {path}"
|
|
|
|
|
|
def test_ghostty_vt_wasm_exists():
|
|
"""muxplex/frontend/vendor/ghostty-vt.wasm must exist."""
|
|
path = _VENDOR_DIR / "ghostty-vt.wasm"
|
|
assert path.is_file(), f"Expected vendored WASM at {path}"
|
|
|
|
|
|
def test_ghostty_vt_wasm_size():
|
|
"""ghostty-vt.wasm should be approximately 400-450 KB."""
|
|
path = _VENDOR_DIR / "ghostty-vt.wasm"
|
|
if not path.is_file():
|
|
pytest.skip("WASM file not yet vendored")
|
|
size_kb = path.stat().st_size / 1024
|
|
assert 350 < size_kb < 500, (
|
|
f"WASM file size {size_kb:.0f} KB outside expected range 350-500 KB"
|
|
)
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# MIME type test (Python mimetypes module — used by Starlette)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_wasm_mime_type_registered():
|
|
"""Python mimetypes must map .wasm to application/wasm."""
|
|
mime, _ = mimetypes.guess_type("file.wasm")
|
|
assert mime == "application/wasm", f"Expected application/wasm, got {mime}"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Static-serving tests (requires test client)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.fixture()
|
|
def client(tmp_path, monkeypatch):
|
|
"""Authenticated TestClient that patches startup paths."""
|
|
tmp_state_dir = tmp_path / "state"
|
|
tmp_state_path = tmp_state_dir / "state.json"
|
|
monkeypatch.setattr("muxplex.state.STATE_DIR", tmp_state_dir)
|
|
monkeypatch.setattr("muxplex.state.STATE_PATH", tmp_state_path)
|
|
|
|
# Mock start_muxterm/stop_muxterm so startup doesn't touch real processes
|
|
from unittest.mock import AsyncMock
|
|
|
|
monkeypatch.setattr("muxplex.main.start_muxterm", AsyncMock())
|
|
monkeypatch.setattr("muxplex.main.stop_muxterm", AsyncMock())
|
|
|
|
async def noop_poll_loop() -> None:
|
|
pass
|
|
|
|
monkeypatch.setattr("muxplex.main._poll_loop", noop_poll_loop)
|
|
|
|
with TestClient(app) as c:
|
|
yield c
|
|
|
|
|
|
def test_ghostty_vt_wasm_served_with_correct_mime(client):
|
|
"""GET /vendor/ghostty-vt.wasm must return application/wasm content-type."""
|
|
wasm_path = _VENDOR_DIR / "ghostty-vt.wasm"
|
|
if not wasm_path.is_file():
|
|
pytest.skip("WASM file not yet vendored")
|
|
resp = client.get("/vendor/ghostty-vt.wasm")
|
|
assert resp.status_code == 200, f"Expected 200, got {resp.status_code}"
|
|
assert "application/wasm" in resp.headers.get("content-type", "")
|