mirror of
https://github.com/meshtastic/firmware.git
synced 2026-05-19 14:25:28 -04:00
* 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>
61 lines
2.3 KiB
Python
61 lines
2.3 KiB
Python
"""Provisioning: the pre-bake recipe (US/LONG_FAST/slot 88/private channel)
|
|
lands on the device exactly as specified.
|
|
|
|
This is THE test that proves the MCP's core value prop — flashing firmware
|
|
with a preset USERPREFS produces a device in the expected radio config without
|
|
any post-flash admin steps.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
import pytest
|
|
from meshtastic_mcp import admin, info
|
|
|
|
|
|
@pytest.mark.timeout(60)
|
|
def test_bake_sets_region_preset_and_slot(
|
|
baked_mesh: dict[str, Any],
|
|
test_profile: dict[str, Any],
|
|
) -> None:
|
|
"""After test_00_bake, both devices must report the exact region, modem
|
|
preset, slot, and channel name that the profile specified."""
|
|
for role, state in baked_mesh.items():
|
|
port = state["port"]
|
|
live = info.device_info(port=port, timeout_s=8.0)
|
|
lora = admin.get_config(section="lora", port=port)["config"]["lora"]
|
|
|
|
expected_region = test_profile["USERPREFS_CONFIG_LORA_REGION"].rsplit("_", 1)[
|
|
-1
|
|
]
|
|
expected_preset = test_profile["USERPREFS_LORACONFIG_MODEM_PRESET"].rsplit(
|
|
"_", 2
|
|
)[-2:]
|
|
expected_preset_str = "_".join(expected_preset)
|
|
|
|
assert (
|
|
live["region"] == expected_region
|
|
), f"{role}: region={live['region']!r}, expected {expected_region!r}"
|
|
|
|
# `modem_preset` is omitted from the protobuf→JSON dump when the
|
|
# device is using the default enum value (LONG_FAST). If the key is
|
|
# missing AND we expected LONG_FAST, that's a match. Otherwise compare.
|
|
live_preset = lora.get("modem_preset")
|
|
if live_preset is None:
|
|
assert expected_preset_str == "LONG_FAST", (
|
|
f"{role}: modem_preset omitted (means default LONG_FAST), "
|
|
f"but expected {expected_preset_str!r}"
|
|
)
|
|
else:
|
|
assert live_preset in (
|
|
expected_preset_str,
|
|
expected_preset_str.upper(),
|
|
), f"{role}: modem_preset={live_preset!r}, expected {expected_preset_str!r}"
|
|
|
|
assert (
|
|
int(lora.get("channel_num", 0))
|
|
== test_profile["USERPREFS_LORACONFIG_CHANNEL_NUM"]
|
|
), f"{role}: channel_num={lora.get('channel_num')!r}"
|
|
assert live["primary_channel"] == test_profile["USERPREFS_CHANNEL_0_NAME"]
|