Spaces:
Paused
Paused
File size: 7,724 Bytes
a5784e9 | 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 | """
Tests for api_utils/routers/server.py
Tests for server control API endpoints including status and restart.
"""
import os
from unittest.mock import patch
import pytest
from fastapi.testclient import TestClient
from api_utils.app import VERSION
from api_utils.routers.server import (
RestartRequest,
ServerStatus,
_format_uptime,
router,
)
# ==================== _format_uptime TESTS ====================
class TestFormatUptime:
"""Tests for _format_uptime helper function."""
def test_seconds_only(self):
"""Test formatting with only seconds."""
result = _format_uptime(45)
assert result == "45s"
def test_minutes_and_seconds(self):
"""Test formatting with minutes and seconds."""
result = _format_uptime(125) # 2 min 5 sec
assert "2m" in result
assert "5s" in result
def test_hours_minutes_seconds(self):
"""Test formatting with hours, minutes, and seconds."""
result = _format_uptime(3725) # 1 hr 2 min 5 sec
assert "1h" in result
assert "2m" in result
assert "5s" in result
def test_days_hours_minutes_seconds(self):
"""Test formatting with days, hours, minutes, and seconds."""
result = _format_uptime(90125) # 1 day 1 hr 2 min 5 sec
assert "1d" in result
assert "1h" in result
assert "2m" in result
assert "5s" in result
def test_zero_seconds(self):
"""Test formatting with zero seconds."""
result = _format_uptime(0)
assert result == "0s"
def test_exact_hour(self):
"""Test formatting with exact hour (no minutes)."""
result = _format_uptime(3600) # 1 hour exactly
assert "1h" in result
assert "0s" in result
assert (
"m" not in result or result.count("m") == 0
) # "m" might be in "min" but we use "m"
def test_exact_day(self):
"""Test formatting with exact day."""
result = _format_uptime(86400) # 1 day exactly
assert "1d" in result
assert "0s" in result
# ==================== _init_start_time TESTS ====================
def test_init_start_time_sets_value():
"""Test _init_start_time sets the start time."""
with patch("api_utils.routers.server._SERVER_START_TIME", None):
with patch("api_utils.routers.server.time.time", return_value=12345.0):
# Force re-initialization by importing fresh
import api_utils.routers.server as server_module
server_module._SERVER_START_TIME = None
server_module._init_start_time()
assert server_module._SERVER_START_TIME == 12345.0
def test_init_start_time_only_once():
"""Test _init_start_time only sets value once."""
import api_utils.routers.server as server_module
original_value = server_module._SERVER_START_TIME
# Should not change since already set
server_module._init_start_time()
assert server_module._SERVER_START_TIME == original_value
# ==================== Model TESTS ====================
def test_server_status_model():
"""Test ServerStatus model creation."""
status = ServerStatus(
status="running",
uptime_seconds=100.5,
uptime_formatted="1m 40s",
launch_mode="headless",
server_port=2048,
stream_port=3120,
version=VERSION,
python_version="3.12.0",
started_at="2024-01-01T00:00:00",
)
assert status.status == "running"
assert status.uptime_seconds == 100.5
assert status.server_port == 2048
def test_restart_request_model():
"""Test RestartRequest model creation."""
request = RestartRequest(mode="debug", confirm=True)
assert request.mode == "debug"
assert request.confirm is True
def test_restart_request_defaults():
"""Test RestartRequest model defaults."""
request = RestartRequest()
assert request.mode == "headless"
assert request.confirm is False
# ==================== API Endpoint TESTS ====================
@pytest.fixture
def client():
"""Create test client for the router."""
from fastapi import FastAPI
app = FastAPI()
app.include_router(router)
return TestClient(app)
class TestServerEndpoints:
"""Tests for Server control API endpoints."""
def test_get_server_status_endpoint(self, client):
"""Test GET /api/server/status returns status."""
response = client.get("/api/server/status")
assert response.status_code == 200
data = response.json()
assert data["status"] == "running"
assert "uptime_seconds" in data
assert "uptime_formatted" in data
assert "launch_mode" in data
assert "server_port" in data
assert "stream_port" in data
assert "version" in data
assert "python_version" in data
assert "started_at" in data
def test_restart_server_no_confirm(self, client):
"""Test POST /api/server/restart without confirm fails."""
response = client.post(
"/api/server/restart", json={"mode": "headless", "confirm": False}
)
assert response.status_code == 400
data = response.json()
assert data["success"] is False
assert "confirm" in data["message"].lower()
def test_restart_server_invalid_mode(self, client):
"""Test POST /api/server/restart with invalid mode fails."""
response = client.post(
"/api/server/restart", json={"mode": "invalid_mode", "confirm": True}
)
assert response.status_code == 400
data = response.json()
assert data["success"] is False
assert "invalid" in data["message"].lower()
def test_restart_server_headless_success(self, client):
"""Test POST /api/server/restart with headless mode succeeds."""
response = client.post(
"/api/server/restart", json={"mode": "headless", "confirm": True}
)
assert response.status_code == 200
data = response.json()
assert data["success"] is True
assert data["mode"] == "headless"
assert os.environ.get("REQUESTED_RESTART_MODE") == "headless"
def test_restart_server_debug_success(self, client):
"""Test POST /api/server/restart with debug mode succeeds."""
# Use a fresh env or patch os.environ to avoid leaking between tests if necessary
response = client.post(
"/api/server/restart", json={"mode": "debug", "confirm": True}
)
assert response.status_code == 200
data = response.json()
assert data["success"] is True
assert data["mode"] == "debug"
def test_restart_server_virtual_display_success(self, client):
"""Test POST /api/server/restart with virtual_display mode succeeds."""
response = client.post(
"/api/server/restart", json={"mode": "virtual_display", "confirm": True}
)
assert response.status_code == 200
data = response.json()
assert data["success"] is True
assert data["mode"] == "virtual_display"
def test_get_server_status_uses_env_vars(self, client):
"""Test server status reads from environment variables."""
with patch.dict(
os.environ,
{
"LAUNCH_MODE": "debug",
"SERVER_PORT_INFO": "3000",
"STREAM_PORT": "4000",
},
):
response = client.get("/api/server/status")
data = response.json()
assert data["launch_mode"] == "debug"
assert data["server_port"] == 3000
assert data["stream_port"] == 4000
|