c8dac10348
* Start of MCP server and test suite * Add MCP server for interacting with meshtastic devices and testing framework / TUI * Update mcp-server/README.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix mcp-server review feedback from thread Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/91dc128a-ed50-4d07-8bb2-3dc6623a05f7 Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com> * Enhance StreamAPI and PhoneAPI for improved log record handling and concurrency control * Semgrep fixes * Trunk and semgrep fixes * optimize pio streaming tee file writes Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/04e26c6b-6a2b-45be-bbeb-79ae4d0be633 Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com> * chore: remove redundant log handle assignment Agent-Logs-Url: https://github.com/meshtastic/firmware/sessions/04e26c6b-6a2b-45be-bbeb-79ae4d0be633 Co-authored-by: thebentern <9000580+thebentern@users.noreply.github.com> * Consolidate type imports and remove placeholder test files * Add tests for config persistence and more exchange messages * Refactor position test to validate on-demand request/reply behavior * Remove position request/reply test and update README for telemetry behavior * Fix transmit history file to get removed on factory reset --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
64 lines
1.7 KiB
Python
64 lines
1.7 KiB
Python
"""Monitor: boot log is clean — no panic markers in the first 60 seconds.
|
|
|
|
This is the single highest-signal test for catching firmware regressions.
|
|
If a commit broke something critical at boot (stack overflow, NULL deref, HAL
|
|
misconfig), this test fails within a minute of reboot.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import time
|
|
from typing import Any
|
|
|
|
import pytest
|
|
from meshtastic_mcp import admin
|
|
|
|
# Substrings that indicate a panic/assert/crash. Case-insensitive.
|
|
_PANIC_MARKERS = [
|
|
"guru meditation",
|
|
"corrupt heap",
|
|
"abort()",
|
|
"assertion failed",
|
|
"***", # ESP-IDF "*** something" panic prefix
|
|
"panic",
|
|
"stack overflow",
|
|
"load prohibited",
|
|
"store prohibited",
|
|
"illegalinstr",
|
|
"watchdog got triggered",
|
|
]
|
|
|
|
|
|
@pytest.mark.timeout(180)
|
|
def test_boot_log_no_panic(
|
|
baked_single: dict[str, Any],
|
|
serial_capture,
|
|
role_env,
|
|
wait_until,
|
|
) -> None:
|
|
"""Runs once per connected role — each device must boot cleanly,
|
|
independently. A panic on one role shouldn't mask another."""
|
|
role = baked_single["role"]
|
|
port = baked_single["port"]
|
|
env = role_env(role)
|
|
|
|
# Start monitor BEFORE reboot so we catch the reset banner + early boot
|
|
cap = serial_capture(role, env=env)
|
|
time.sleep(1.0)
|
|
|
|
# Trigger reboot
|
|
admin.reboot(port=port, confirm=True, seconds=3)
|
|
# Wait through the reboot+boot window
|
|
time.sleep(60.0)
|
|
|
|
lines = cap.snapshot(max_lines=4000)
|
|
assert lines, "serial capture returned no log lines — monitor may have failed"
|
|
blob = "\n".join(lines).lower()
|
|
|
|
hits = [marker for marker in _PANIC_MARKERS if marker in blob]
|
|
assert (
|
|
not hits
|
|
), f"panic markers in boot log: {hits!r}\n\n" f"last 60 lines:\n" + "\n".join(
|
|
lines[-60:]
|
|
)
|