mirror of
https://github.com/zvx-echo6/central.git
synced 2026-05-22 10:34:43 +02:00
fix(gui): use get_msg().time for stream timestamps, fix badge layout
- nats-py StreamState doesn't expose first_ts/last_ts - Fetch timestamps via js.get_msg(stream, seq=N).time instead - Handle edge cases: empty streams, single-message streams, get_msg failures - Fix badge overlap using flex layout instead of float:right - Change label from "Max bytes (config)" to "Max bytes (current)" Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
ca853fbba9
commit
16e31efd73
3 changed files with 287 additions and 23 deletions
|
|
@ -1,6 +1,7 @@
|
|||
"""Tests for streams list and edit routes."""
|
||||
|
||||
import os
|
||||
from datetime import datetime, timezone
|
||||
from unittest.mock import AsyncMock, MagicMock, patch
|
||||
|
||||
import pytest
|
||||
|
|
@ -28,8 +29,8 @@ class TestStreamsListAuthenticated:
|
|||
"""Test streams list with authentication."""
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_streams_list_returns_all_streams(self):
|
||||
"""GET /streams authenticated returns 200 with all four streams."""
|
||||
async def test_streams_list_returns_all_streams_with_timestamps(self):
|
||||
"""GET /streams authenticated returns 200 with all four streams and timestamps."""
|
||||
from central.gui.routes import streams_list
|
||||
|
||||
mock_request = MagicMock()
|
||||
|
|
@ -55,15 +56,21 @@ class TestStreamsListAuthenticated:
|
|||
mock_csrf.generate_csrf_tokens.return_value = ("token", "signed")
|
||||
mock_csrf.set_csrf_cookie = MagicMock()
|
||||
|
||||
# Mock JetStream
|
||||
# Mock JetStream with proper state fields
|
||||
mock_js = AsyncMock()
|
||||
mock_stream_info = MagicMock()
|
||||
mock_stream_info.state.bytes = 1024000
|
||||
mock_stream_info.state.messages = 100
|
||||
mock_stream_info.state.first_ts = None
|
||||
mock_stream_info.state.last_ts = None
|
||||
mock_stream_info.state.first_seq = 1
|
||||
mock_stream_info.state.last_seq = 100
|
||||
mock_js.stream_info.return_value = mock_stream_info
|
||||
|
||||
# Mock get_msg for timestamps (RawStreamMsg has .time attribute)
|
||||
test_ts = datetime(2026, 5, 17, 12, 0, 0, tzinfo=timezone.utc)
|
||||
mock_msg = MagicMock()
|
||||
mock_msg.time = test_ts
|
||||
mock_js.get_msg.return_value = mock_msg
|
||||
|
||||
with patch("central.gui.routes._get_templates", return_value=mock_templates):
|
||||
with patch("central.gui.routes.get_pool", return_value=mock_pool):
|
||||
with patch("central.gui.nats.get_js", return_value=mock_js):
|
||||
|
|
@ -78,6 +85,13 @@ class TestStreamsListAuthenticated:
|
|||
assert "CENTRAL_QUAKE" in stream_names
|
||||
assert "CENTRAL_WX" in stream_names
|
||||
|
||||
# Check that timestamps are populated
|
||||
fire_stream = next(s for s in context["streams"] if s["name"] == "CENTRAL_FIRE")
|
||||
assert fire_stream["live_bytes"] == 1024000
|
||||
assert fire_stream["live_messages"] == 100
|
||||
assert fire_stream["live_first_ts"] == test_ts
|
||||
assert fire_stream["live_last_ts"] == test_ts
|
||||
|
||||
|
||||
class TestStreamsListNatsUnavailable:
|
||||
"""Test streams list when NATS is unavailable."""
|
||||
|
|
@ -122,8 +136,8 @@ class TestStreamsListPartialFailure:
|
|||
"""Test streams list with one stream's info raising."""
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_one_stream_unavailable_others_render(self):
|
||||
"""GET /streams with one stream error shows unavailable for that stream only."""
|
||||
async def test_stream_info_raises_shows_exception_type(self):
|
||||
"""GET /streams with stream_info error shows unavailable with exception type."""
|
||||
from central.gui.routes import streams_list
|
||||
|
||||
mock_request = MagicMock()
|
||||
|
|
@ -147,21 +161,26 @@ class TestStreamsListPartialFailure:
|
|||
mock_csrf.generate_csrf_tokens.return_value = ("token", "signed")
|
||||
mock_csrf.set_csrf_cookie = MagicMock()
|
||||
|
||||
# Mock JetStream - CENTRAL_FIRE raises, CENTRAL_WX works
|
||||
# Mock JetStream - CENTRAL_FIRE raises ValueError, CENTRAL_WX works
|
||||
mock_js = AsyncMock()
|
||||
test_ts = datetime(2026, 5, 17, 12, 0, 0, tzinfo=timezone.utc)
|
||||
|
||||
def stream_info_side_effect(name):
|
||||
if name == "CENTRAL_FIRE":
|
||||
raise Exception("Stream not found")
|
||||
raise ValueError("Stream not found")
|
||||
mock_info = MagicMock()
|
||||
mock_info.state.bytes = 2048
|
||||
mock_info.state.messages = 50
|
||||
mock_info.state.first_ts = None
|
||||
mock_info.state.last_ts = None
|
||||
mock_info.state.first_seq = 1
|
||||
mock_info.state.last_seq = 50
|
||||
return mock_info
|
||||
|
||||
mock_js.stream_info.side_effect = stream_info_side_effect
|
||||
|
||||
mock_msg = MagicMock()
|
||||
mock_msg.time = test_ts
|
||||
mock_js.get_msg.return_value = mock_msg
|
||||
|
||||
with patch("central.gui.routes._get_templates", return_value=mock_templates):
|
||||
with patch("central.gui.routes.get_pool", return_value=mock_pool):
|
||||
with patch("central.gui.nats.get_js", return_value=mock_js):
|
||||
|
|
@ -173,11 +192,197 @@ class TestStreamsListPartialFailure:
|
|||
fire_stream = next(s for s in context["streams"] if s["name"] == "CENTRAL_FIRE")
|
||||
wx_stream = next(s for s in context["streams"] if s["name"] == "CENTRAL_WX")
|
||||
|
||||
assert fire_stream["error"] == "unavailable"
|
||||
# Exception type should be in error message
|
||||
assert "unavailable: ValueError" in fire_stream["error"]
|
||||
assert wx_stream["error"] is None
|
||||
assert wx_stream["live_bytes"] == 2048
|
||||
|
||||
|
||||
class TestStreamsListEmptyStream:
|
||||
"""Test streams list with empty stream (zero messages)."""
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_empty_stream_no_get_msg_calls(self):
|
||||
"""Empty stream (first_seq == 0) renders correctly, no get_msg calls made."""
|
||||
from central.gui.routes import streams_list
|
||||
|
||||
mock_request = MagicMock()
|
||||
mock_request.state.operator = MagicMock(id=1, username="testop")
|
||||
|
||||
mock_conn = AsyncMock()
|
||||
mock_conn.fetch.return_value = [
|
||||
{"name": "CENTRAL_QUAKE", "max_age_s": 604800, "max_bytes": 1073741824, "managed_max_bytes": True, "updated_at": None},
|
||||
]
|
||||
|
||||
mock_pool = MagicMock()
|
||||
mock_pool.acquire.return_value.__aenter__ = AsyncMock(return_value=mock_conn)
|
||||
mock_pool.acquire.return_value.__aexit__ = AsyncMock(return_value=None)
|
||||
|
||||
mock_templates = MagicMock()
|
||||
mock_response = MagicMock()
|
||||
mock_templates.TemplateResponse.return_value = mock_response
|
||||
|
||||
mock_csrf = MagicMock()
|
||||
mock_csrf.generate_csrf_tokens.return_value = ("token", "signed")
|
||||
mock_csrf.set_csrf_cookie = MagicMock()
|
||||
|
||||
# Mock JetStream with empty stream (first_seq = 0)
|
||||
mock_js = AsyncMock()
|
||||
mock_stream_info = MagicMock()
|
||||
mock_stream_info.state.bytes = 0
|
||||
mock_stream_info.state.messages = 0
|
||||
mock_stream_info.state.first_seq = 0
|
||||
mock_stream_info.state.last_seq = 0
|
||||
mock_js.stream_info.return_value = mock_stream_info
|
||||
mock_js.get_msg = AsyncMock()
|
||||
|
||||
with patch("central.gui.routes._get_templates", return_value=mock_templates):
|
||||
with patch("central.gui.routes.get_pool", return_value=mock_pool):
|
||||
with patch("central.gui.nats.get_js", return_value=mock_js):
|
||||
result = await streams_list(mock_request, mock_csrf)
|
||||
|
||||
call_args = mock_templates.TemplateResponse.call_args
|
||||
context = call_args.kwargs.get("context", call_args[1].get("context"))
|
||||
|
||||
quake_stream = context["streams"][0]
|
||||
assert quake_stream["live_messages"] == 0
|
||||
assert quake_stream["live_first_ts"] is None
|
||||
assert quake_stream["live_last_ts"] is None
|
||||
assert quake_stream["error"] is None
|
||||
|
||||
# get_msg should NOT have been called for empty stream
|
||||
mock_js.get_msg.assert_not_called()
|
||||
|
||||
|
||||
class TestStreamsListSingleMessage:
|
||||
"""Test streams list with single-message stream."""
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_single_message_stream_reuses_timestamp(self):
|
||||
"""Single-message stream (first_seq == last_seq) calls get_msg once."""
|
||||
from central.gui.routes import streams_list
|
||||
|
||||
mock_request = MagicMock()
|
||||
mock_request.state.operator = MagicMock(id=1, username="testop")
|
||||
|
||||
mock_conn = AsyncMock()
|
||||
mock_conn.fetch.return_value = [
|
||||
{"name": "CENTRAL_WX", "max_age_s": 604800, "max_bytes": 1073741824, "managed_max_bytes": True, "updated_at": None},
|
||||
]
|
||||
|
||||
mock_pool = MagicMock()
|
||||
mock_pool.acquire.return_value.__aenter__ = AsyncMock(return_value=mock_conn)
|
||||
mock_pool.acquire.return_value.__aexit__ = AsyncMock(return_value=None)
|
||||
|
||||
mock_templates = MagicMock()
|
||||
mock_response = MagicMock()
|
||||
mock_templates.TemplateResponse.return_value = mock_response
|
||||
|
||||
mock_csrf = MagicMock()
|
||||
mock_csrf.generate_csrf_tokens.return_value = ("token", "signed")
|
||||
mock_csrf.set_csrf_cookie = MagicMock()
|
||||
|
||||
# Mock JetStream with single message (first_seq == last_seq)
|
||||
mock_js = AsyncMock()
|
||||
mock_stream_info = MagicMock()
|
||||
mock_stream_info.state.bytes = 512
|
||||
mock_stream_info.state.messages = 1
|
||||
mock_stream_info.state.first_seq = 1
|
||||
mock_stream_info.state.last_seq = 1
|
||||
mock_js.stream_info.return_value = mock_stream_info
|
||||
|
||||
test_ts = datetime(2026, 5, 17, 12, 0, 0, tzinfo=timezone.utc)
|
||||
mock_msg = MagicMock()
|
||||
mock_msg.time = test_ts
|
||||
mock_js.get_msg.return_value = mock_msg
|
||||
|
||||
with patch("central.gui.routes._get_templates", return_value=mock_templates):
|
||||
with patch("central.gui.routes.get_pool", return_value=mock_pool):
|
||||
with patch("central.gui.nats.get_js", return_value=mock_js):
|
||||
result = await streams_list(mock_request, mock_csrf)
|
||||
|
||||
call_args = mock_templates.TemplateResponse.call_args
|
||||
context = call_args.kwargs.get("context", call_args[1].get("context"))
|
||||
|
||||
wx_stream = context["streams"][0]
|
||||
assert wx_stream["live_messages"] == 1
|
||||
assert wx_stream["live_first_ts"] == test_ts
|
||||
assert wx_stream["live_last_ts"] == test_ts
|
||||
|
||||
# get_msg should have been called once (for first message only)
|
||||
assert mock_js.get_msg.call_count == 1
|
||||
|
||||
|
||||
class TestStreamsListGetMsgFailure:
|
||||
"""Test streams list when get_msg fails for a message."""
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_get_msg_first_fails_shows_lookup_error(self):
|
||||
"""get_msg raises for first message shows lookup failed, rest renders normally."""
|
||||
from central.gui.routes import streams_list
|
||||
|
||||
mock_request = MagicMock()
|
||||
mock_request.state.operator = MagicMock(id=1, username="testop")
|
||||
|
||||
mock_conn = AsyncMock()
|
||||
mock_conn.fetch.return_value = [
|
||||
{"name": "CENTRAL_WX", "max_age_s": 604800, "max_bytes": 1073741824, "managed_max_bytes": True, "updated_at": None},
|
||||
]
|
||||
|
||||
mock_pool = MagicMock()
|
||||
mock_pool.acquire.return_value.__aenter__ = AsyncMock(return_value=mock_conn)
|
||||
mock_pool.acquire.return_value.__aexit__ = AsyncMock(return_value=None)
|
||||
|
||||
mock_templates = MagicMock()
|
||||
mock_response = MagicMock()
|
||||
mock_templates.TemplateResponse.return_value = mock_response
|
||||
|
||||
mock_csrf = MagicMock()
|
||||
mock_csrf.generate_csrf_tokens.return_value = ("token", "signed")
|
||||
mock_csrf.set_csrf_cookie = MagicMock()
|
||||
|
||||
# Mock JetStream
|
||||
mock_js = AsyncMock()
|
||||
mock_stream_info = MagicMock()
|
||||
mock_stream_info.state.bytes = 2048
|
||||
mock_stream_info.state.messages = 50
|
||||
mock_stream_info.state.first_seq = 1
|
||||
mock_stream_info.state.last_seq = 50
|
||||
mock_js.stream_info.return_value = mock_stream_info
|
||||
|
||||
test_ts = datetime(2026, 5, 17, 12, 0, 0, tzinfo=timezone.utc)
|
||||
|
||||
# First call fails, second succeeds
|
||||
def get_msg_side_effect(name, seq):
|
||||
if seq == 1:
|
||||
raise KeyError("Message not found")
|
||||
mock_msg = MagicMock()
|
||||
mock_msg.time = test_ts
|
||||
return mock_msg
|
||||
|
||||
mock_js.get_msg.side_effect = get_msg_side_effect
|
||||
|
||||
with patch("central.gui.routes._get_templates", return_value=mock_templates):
|
||||
with patch("central.gui.routes.get_pool", return_value=mock_pool):
|
||||
with patch("central.gui.nats.get_js", return_value=mock_js):
|
||||
result = await streams_list(mock_request, mock_csrf)
|
||||
|
||||
call_args = mock_templates.TemplateResponse.call_args
|
||||
context = call_args.kwargs.get("context", call_args[1].get("context"))
|
||||
|
||||
wx_stream = context["streams"][0]
|
||||
# Main stream info still works
|
||||
assert wx_stream["live_bytes"] == 2048
|
||||
assert wx_stream["live_messages"] == 50
|
||||
assert wx_stream["error"] is None
|
||||
# First timestamp failed
|
||||
assert wx_stream["live_first_ts"] is None
|
||||
assert wx_stream["first_ts_error"] == "KeyError"
|
||||
# Last timestamp succeeded
|
||||
assert wx_stream["live_last_ts"] == test_ts
|
||||
assert wx_stream["last_ts_error"] is None
|
||||
|
||||
|
||||
class TestStreamsUpdate:
|
||||
"""Test stream update POST handler."""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue