91e75e620b
CI: cua-driver distro-compat matrix / debian:12 (glibc 2.36) (push) Has been cancelled
CI: SPDX Headers / Check SPDX headers (warn-only) (push) Has been cancelled
CD: Docs MCP Server / build (linux/amd64) (push) Has been cancelled
CD: Docs MCP Server / build (linux/arm64) (push) Has been cancelled
CD: Docs MCP Server / merge (push) Has been cancelled
CI: cua-driver distro-compat matrix / Resolve release version (push) Has been cancelled
CI: cua-driver distro-compat matrix / fedora:41 (glibc 2.40) (push) Has been cancelled
CI: cua-driver distro-compat matrix / rockylinux:9 (glibc 2.34) (push) Has been cancelled
CI: cua-driver distro-compat matrix / ubuntu:22.04 (glibc 2.35) (push) Has been cancelled
CI: cua-driver distro-compat matrix / ubuntu:24.04 (glibc 2.39) (push) Has been cancelled
CI: cua-driver distro-compat matrix / Distro compat summary (push) Has been cancelled
CI: Rust Linux unit / Rust Linux unit and compile (push) Has been cancelled
CI: Rust Windows unit / Rust Windows unit and compile (push) Has been cancelled
CI: Nix Linux Rust source / Nix / compositor build (push) Has been cancelled
CI: Nix Linux Rust source / Nix / driver package (push) Has been cancelled
CI: Nix Linux Rust source / Nix / Rust unit tests (push) Has been cancelled
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
import time
|
|
|
|
import psutil
|
|
import pytest
|
|
from bench_ui import execute_javascript, launch_window
|
|
from bench_ui.api import _pid_to_port
|
|
|
|
HTML = """
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Bench UI Test</title>
|
|
</head>
|
|
<body>
|
|
<div id="t">hello-world</div>
|
|
</body>
|
|
</html>
|
|
"""
|
|
|
|
|
|
def test_execute_js_after_clearing_port_mapping():
|
|
# Skip if pywebview backend is unavailable on this machine
|
|
pywebview = pytest.importorskip("webview")
|
|
|
|
pid = launch_window(html=HTML, title="Bench UI Test", width=400, height=300)
|
|
try:
|
|
# Give a brief moment for window to render and server to start
|
|
time.sleep(1.0)
|
|
|
|
# Sanity: mapping should exist initially
|
|
assert pid in _pid_to_port
|
|
|
|
# Clear the cached mapping to simulate a fresh process lookup
|
|
del _pid_to_port[pid]
|
|
|
|
# Now execute JS; this should succeed by detecting the port via psutil
|
|
result = execute_javascript(pid, "document.querySelector('#t')?.textContent")
|
|
assert result == "hello-world"
|
|
finally:
|
|
# Best-effort cleanup of the child process
|
|
try:
|
|
p = psutil.Process(pid)
|
|
p.terminate()
|
|
try:
|
|
p.wait(timeout=3)
|
|
except psutil.TimeoutExpired:
|
|
p.kill()
|
|
except Exception:
|
|
pass
|