* feat(ports): make backend/share/UI ports configurable via env vars Single-source the backend port from OMNIVOICE_PORT and derive the LAN-share base from it (OMNIVOICE_SHARE_PORT override). Previously network_share.py hardcoded BACKEND_PORT=3900, so a user running the backend on a custom port got LAN-share/Tailscale pointed at the wrong port. - network_share: replace BACKEND_PORT constant with backend_port() / share_port_base() helpers (env-driven, never-throw fallback to defaults); enable() probes from share_port_base(). - tailscale: serve_enable(port=None) defaults to network_share.backend_port(). - main.py: direct-run + --health-check ports and HEALTH_URL read OMNIVOICE_PORT; CORS default origins use OMNIVOICE_UI_PORT (default 3901). - /system/info + SystemInfoResponse: expose backend_port, share_port_base, ui_port (both success and never-throw except branches). - set-env: persist OMNIVOICE_PORT/SHARE_PORT/UI_PORT; validate numeric and 1024-65535, reject otherwise with 400. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(ports): pin child OMNIVOICE_PORT in backend spawn Push OMNIVOICE_PORT=backend_port() onto the spawned Python child's env so network_share.backend_port() always agrees with the uvicorn --port Rust passes. Without this, a user-set OMNIVOICE_PORT would move the LAN-share / Tailscale target while the listener stayed on the Rust-resolved port. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * feat(ports): Ports subsection in Sharing settings + env-driven Vite port - vite.config.js: dev-server port reads OMNIVOICE_UI_PORT (default 3901). - SharingPanel: new Ports subsection reads /system/info and displays backend_port / ui_port (with their env-var names + restart-to-apply note) and makes the LAN-share port editable — Save POSTs OMNIVOICE_SHARE_PORT to /system/set-env (persisted), "applies next time you enable sharing". - Tests: extend SharingPanel.test.jsx for the ports subsection. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
106 lines
4.8 KiB
Python
106 lines
4.8 KiB
Python
# tests/test_tailscale_service.py
|
|
import json
|
|
from unittest.mock import patch, MagicMock
|
|
from services import tailscale as ts
|
|
|
|
|
|
def test_status_absent_cli_is_graceful():
|
|
with patch("services.tailscale.shutil.which", return_value=None):
|
|
s = ts.status()
|
|
assert s["installed"] is False and s["running"] is False
|
|
|
|
|
|
def test_status_parses_json():
|
|
payload = {"BackendState": "Running", "Self": {"DNSName": "box.tail1234.ts.net.", "TailscaleIPs": ["100.64.0.1"]}}
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", return_value=MagicMock(returncode=0, stdout=json.dumps(payload))):
|
|
s = ts.status()
|
|
assert s["installed"] and s["running"]
|
|
assert s["magic_dns_name"] == "box.tail1234.ts.net"
|
|
assert s["tailnet_ips"] == ["100.64.0.1"]
|
|
|
|
|
|
_RUNNING = {"BackendState": "Running", "Self": {"DNSName": "box.ts.net.", "TailscaleIPs": ["100.64.0.1"]}}
|
|
|
|
|
|
def _runner(status_payload, https_ok=True, http_ok=True):
|
|
"""subprocess.run side_effect: serves the status JSON for `status --json`
|
|
and ok/fail for the serve subcommands based on the --http/--https flag."""
|
|
def run(args, **kw):
|
|
if "status" in args and "--json" in args:
|
|
return MagicMock(returncode=0, stdout=json.dumps(status_payload))
|
|
if "--https=443" in args:
|
|
return MagicMock(returncode=0 if https_ok else 1, stdout="",
|
|
stderr="" if https_ok else "error enabling https feature: error 404 Not Found")
|
|
if "--http=80" in args:
|
|
return MagicMock(returncode=0 if http_ok else 1, stdout="",
|
|
stderr="" if http_ok else "serve failed")
|
|
return MagicMock(returncode=0, stdout="", stderr="")
|
|
return run
|
|
|
|
|
|
def test_status_includes_cert_domains():
|
|
payload = {**_RUNNING, "CertDomains": ["box.ts.net"]}
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", return_value=MagicMock(returncode=0, stdout=json.dumps(payload))):
|
|
s = ts.status()
|
|
assert s["cert_domains"] == ["box.ts.net"]
|
|
|
|
|
|
def test_serve_enable_not_running_is_clear_error():
|
|
payload = {"BackendState": "Stopped", "Self": {}}
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", return_value=MagicMock(returncode=0, stdout=json.dumps(payload))):
|
|
r = ts.serve_enable(3900)
|
|
assert r["ok"] is False and "tailscale up" in r["error"]
|
|
|
|
|
|
def test_serve_enable_uses_http_when_no_certs():
|
|
# CertDomains absent (the common case) -> HTTP serve, no failed https attempt.
|
|
payload = {**_RUNNING, "CertDomains": None}
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", side_effect=_runner(payload)):
|
|
r = ts.serve_enable(3900)
|
|
assert r["ok"] and r["scheme"] == "http"
|
|
assert r["url"] == "http://box.ts.net"
|
|
assert "note" in r
|
|
|
|
|
|
def test_serve_enable_uses_https_when_certs_present():
|
|
payload = {**_RUNNING, "CertDomains": ["box.ts.net"]}
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", side_effect=_runner(payload, https_ok=True)):
|
|
r = ts.serve_enable(3900)
|
|
assert r["ok"] and r["scheme"] == "https"
|
|
assert r["url"] == "https://box.ts.net"
|
|
|
|
|
|
def test_serve_enable_falls_back_to_http_when_https_fails():
|
|
payload = {**_RUNNING, "CertDomains": ["box.ts.net"]}
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", side_effect=_runner(payload, https_ok=False, http_ok=True)):
|
|
r = ts.serve_enable(3900)
|
|
assert r["ok"] and r["scheme"] == "http"
|
|
|
|
|
|
def test_serve_enable_proxies_configured_backend_port(monkeypatch):
|
|
"""When OMNIVOICE_PORT is set and serve_enable() is called with no explicit
|
|
port, the proxy target must use the configured backend port (not 3900)."""
|
|
monkeypatch.setenv("OMNIVOICE_PORT", "4000")
|
|
payload = {**_RUNNING, "CertDomains": None}
|
|
captured = {}
|
|
|
|
def run(args, **kw):
|
|
if "status" in args and "--json" in args:
|
|
return MagicMock(returncode=0, stdout=json.dumps(payload))
|
|
if "--http=80" in args:
|
|
captured["target"] = args[-1]
|
|
return MagicMock(returncode=0, stdout="", stderr="")
|
|
return MagicMock(returncode=0, stdout="", stderr="")
|
|
|
|
with patch("services.tailscale.shutil.which", return_value="/usr/bin/tailscale"), \
|
|
patch("services.tailscale.subprocess.run", side_effect=run):
|
|
r = ts.serve_enable() # no explicit port → defaults to backend_port()
|
|
assert r["ok"]
|
|
assert captured["target"] == "http://127.0.0.1:4000"
|