| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334 |
- """Tests for the VP MQTT bridge — non-proxy mirror of target printer state to slicer."""
- import asyncio
- import json
- import logging
- import socket
- from pathlib import Path
- from unittest.mock import AsyncMock, MagicMock, patch
- import pytest
- from backend.app.services.virtual_printer.mqtt_bridge import (
- MQTTBridge,
- _ip_to_uint32_le,
- _resolve_host_interface_for_target,
- _resolve_target_to_ipv4,
- )
- from backend.app.services.virtual_printer.mqtt_server import SimpleMQTTServer
- H2D_SERIAL = "0948BB540200427"
- VP_SERIAL = "09400A391800003"
- H2D_IP = "192.168.255.133"
- VP_IP = "192.168.255.16"
- def _make_server(serial: str = VP_SERIAL, bind_address: str = VP_IP) -> SimpleMQTTServer:
- return SimpleMQTTServer(
- serial=serial,
- access_code="deadbeef",
- cert_path=Path("/tmp/unused.crt"), # nosec B108
- key_path=Path("/tmp/unused.key"), # nosec B108
- model="O1D",
- bind_address=bind_address,
- )
- def _make_paho_client(
- serial: str = H2D_SERIAL,
- ip: str = H2D_IP,
- *,
- connected: bool = True,
- ) -> MagicMock:
- """Build a mock BambuMQTTClient that satisfies MQTTBridge's interface."""
- client = MagicMock()
- client.serial_number = serial
- client.ip_address = ip
- client.state = MagicMock()
- client.state.connected = connected
- client.publish_raw = MagicMock(return_value=True)
- client._raw_handlers: list = []
- def _register(handler):
- client._raw_handlers.append(handler)
- def _unregister(handler):
- if handler in client._raw_handlers:
- client._raw_handlers.remove(handler)
- client.register_raw_message_handler.side_effect = _register
- client.unregister_raw_message_handler.side_effect = _unregister
- # No-op for _request_version / request_status_update so the post-bind nudge doesn't crash.
- client._request_version = MagicMock()
- client.request_status_update = MagicMock()
- return client
- def _make_printer_manager(client) -> MagicMock:
- pm = MagicMock()
- pm.get_client = MagicMock(return_value=client)
- return pm
- def _make_bridge(server: SimpleMQTTServer, target: MagicMock | None = None) -> MQTTBridge:
- target = target if target is not None else _make_paho_client()
- pm = _make_printer_manager(target)
- return MQTTBridge(
- vp_id=1,
- vp_name="vp1",
- vp_serial=VP_SERIAL,
- target_printer_id=42,
- mqtt_server=server,
- printer_manager=pm,
- )
- # ---------------------------------------------------------------------------
- # Lifecycle
- # ---------------------------------------------------------------------------
- class TestBridgeLifecycle:
- @pytest.mark.asyncio
- async def test_start_registers_handler_on_target_client(self):
- target = _make_paho_client()
- bridge = _make_bridge(_make_server(), target)
- await bridge.start()
- assert len(target._raw_handlers) == 1
- assert bridge.is_active is True
- await bridge.stop()
- assert len(target._raw_handlers) == 0
- @pytest.mark.asyncio
- async def test_start_with_no_target_client_does_not_crash(self):
- pm = MagicMock()
- pm.get_client = MagicMock(return_value=None)
- bridge = MQTTBridge(
- vp_id=1,
- vp_name="vp1",
- vp_serial=VP_SERIAL,
- target_printer_id=42,
- mqtt_server=_make_server(),
- printer_manager=pm,
- )
- await bridge.start()
- assert bridge.is_active is False
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_resolve_rebinds_when_paho_client_replaced(self):
- """BambuMQTTClient is destroyed and recreated on connect_printer; bridge must rebind."""
- old_client = _make_paho_client(serial="REAL_OLD")
- new_client = _make_paho_client(serial="REAL_NEW")
- pm = _make_printer_manager(old_client)
- bridge = MQTTBridge(
- vp_id=1,
- vp_name="vp1",
- vp_serial=VP_SERIAL,
- target_printer_id=42,
- mqtt_server=_make_server(),
- printer_manager=pm,
- )
- await bridge.start()
- assert len(old_client._raw_handlers) == 1
- assert bridge._target_serial == "REAL_OLD"
- pm.get_client.return_value = new_client
- bridge._resolve_client()
- assert len(old_client._raw_handlers) == 0
- assert len(new_client._raw_handlers) == 1
- assert bridge._target_serial == "REAL_NEW"
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_post_bind_nudge_requests_version_and_status(self):
- target = _make_paho_client()
- bridge = _make_bridge(_make_server(), target)
- await bridge.start()
- target._request_version.assert_called_once()
- target.request_status_update.assert_called_once()
- await bridge.stop()
- # ---------------------------------------------------------------------------
- # Caching: push_status
- # ---------------------------------------------------------------------------
- class TestPushStatusCache:
- """push_status snapshots feed `_send_status_report` via the cache, not a fan-out."""
- @pytest.mark.asyncio
- async def test_push_status_is_cached_not_fanned_out(self):
- server = _make_server()
- server.push_raw_to_clients = AsyncMock()
- bridge = _make_bridge(server)
- await bridge.start()
- payload = json.dumps({"print": {"command": "push_status", "ams": {"ams": []}, "gcode_state": "IDLE"}}).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- server.push_raw_to_clients.assert_not_awaited()
- cached = bridge.get_latest_print_state()
- assert cached is not None
- assert cached["command"] == "push_status"
- assert cached["gcode_state"] == "IDLE"
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_serial_rewritten_in_cached_push(self):
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- payload = json.dumps(
- {
- "print": {
- "command": "push_status",
- "upgrade_state": {"sn": H2D_SERIAL, "status": "IDLE"},
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- assert cached["upgrade_state"]["sn"] == VP_SERIAL
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_net_info_ip_rewritten_to_vp_ip(self):
- """BambuStudio reads `net.info[].ip` (LE uint32) for the FTP destination —
- must be rewritten to the VP's bind IP or the slicer bypasses the VP."""
- server = _make_server(bind_address=VP_IP)
- bridge = _make_bridge(server)
- await bridge.start()
- h2d_le = _ip_to_uint32_le(H2D_IP)
- vp_le = _ip_to_uint32_le(VP_IP)
- payload = json.dumps(
- {
- "print": {
- "command": "push_status",
- "net": {"info": [{"ip": h2d_le, "mask": 0xFFFFFF}, {"ip": 0, "mask": 0}]},
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- assert cached["net"]["info"][0]["ip"] == vp_le
- assert cached["net"]["info"][1]["ip"] == 0 # untouched
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_net_info_ip_rewritten_for_unknown_secondary_interface(self):
- """Regression for #1429: real printers (X1C / H2D Pro) report multiple
- active interfaces (WiFi + Ethernet) — only ONE matches the IP Bambuddy
- tracks. The rewrite must catch every non-zero entry, not just the one
- whose IP equals `_target_ip_uint32_le`, or the slicer's FTP fallback
- path leaks straight to the real printer."""
- server = _make_server(bind_address=VP_IP)
- bridge = _make_bridge(server)
- await bridge.start()
- h2d_le = _ip_to_uint32_le(H2D_IP)
- # A second IP Bambuddy never saw (e.g. printer's ethernet interface
- # while Bambuddy talks over wifi).
- other_le = _ip_to_uint32_le("192.168.99.42")
- vp_le = _ip_to_uint32_le(VP_IP)
- payload = json.dumps(
- {
- "print": {
- "command": "push_status",
- "net": {
- "info": [
- {"ip": h2d_le, "mask": 0xFFFFFF},
- {"ip": other_le, "mask": 0xFFFFFF},
- {"ip": 0, "mask": 0},
- ]
- },
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- assert cached["net"]["info"][0]["ip"] == vp_le
- assert cached["net"]["info"][1]["ip"] == vp_le # secondary interface also rewritten
- assert cached["net"]["info"][2]["ip"] == 0 # placeholder untouched
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_late_arriving_printer_ip_rewrites_existing_cache(self):
- """Regression for #1429: if the printer's `ip_address` is empty at
- first bind (DB row stale, or the client object exists before the
- first SSDP refresh fills it in), the rewrite stays disabled and the
- first cached push poisons the cache with the real-printer IP.
- Once `ip_address` becomes valid, the next refresh tick must (a) arm
- the encoding and (b) sweep the cached `net.info[].ip` so the slicer
- sees the rewritten value on its next pull. Without the sweep the
- sticky-key preservation keeps the poisoned value alive across
- every subsequent incremental push."""
- server = _make_server(bind_address=VP_IP)
- # Bind to a client whose ip_address is empty at start — simulates the
- # late-arrival path.
- target = _make_paho_client(ip="")
- bridge = _make_bridge(server, target)
- await bridge.start()
- assert bridge._target_ip_uint32_le is None # not yet armed
- h2d_le = _ip_to_uint32_le(H2D_IP)
- vp_le = _ip_to_uint32_le(VP_IP)
- payload = json.dumps(
- {
- "print": {
- "command": "push_status",
- "net": {"info": [{"ip": h2d_le, "mask": 0xFFFFFF}]},
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- # First push landed before encoding was armed → cache holds real IP.
- cached = bridge.get_latest_print_state()
- assert cached["net"]["info"][0]["ip"] == h2d_le
- # Printer's IP becomes known. Next refresh tick must self-heal.
- target.ip_address = H2D_IP
- bridge._resolve_client()
- cached = bridge.get_latest_print_state()
- assert cached["net"]["info"][0]["ip"] == vp_le, (
- "cache must be swept once encoding becomes valid; sticky-key "
- "preservation would otherwise keep the poisoned IP forever"
- )
- assert bridge._target_ip_uint32_le == h2d_le
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_request_topic_message_is_ignored(self):
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- payload = json.dumps({"print": {"command": "push_status"}}).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/request", payload)
- await asyncio.sleep(0.01)
- assert bridge.get_latest_print_state() is None
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_incremental_push_preserves_ams_from_previous_cache(self):
- """Regression for #1371: Bambu firmware sends FULL push_status on
- pushall (with AMS/vt_tray/net/etc.) but typically OMITS those fields
- from 1 Hz incremental push_status updates. Without preserving the
- sticky keys across pushes, the cache forgets AMS info after the first
- incremental update, and BambuStudio (which reads the cache via the
- VP's 1 Hz status push) sees no AMS info until the user power-cycles
- the printer (forcing a fresh pushall).
- """
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- # 1. Initial pushall response with full state, AMS included.
- full_push = json.dumps(
- {
- "print": {
- "command": "push_status",
- "gcode_state": "IDLE",
- "wifi_signal": "-50dBm",
- "ams": {
- "ams": [
- {
- "id": "0",
- "tray": [
- {"id": "0", "tray_type": "PLA", "tray_color": "FF0000FF"},
- {"id": "1", "tray_type": "PETG", "tray_color": "00FF00FF"},
- ],
- }
- ],
- "tray_exist_bits": "3",
- },
- "vt_tray": {"id": "254", "tray_type": ""},
- "lights_report": [{"node": "chamber_light", "mode": "on"}],
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", full_push)
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- assert cached["ams"]["ams"][0]["tray"][0]["tray_type"] == "PLA"
- assert cached["vt_tray"]["id"] == "254"
- assert cached["lights_report"][0]["mode"] == "on"
- # 2. Incremental push with only temp/wifi changes — NO ams field.
- # This is what the printer sends every ~1 s between full pushalls.
- incremental_push = json.dumps(
- {
- "print": {
- "command": "push_status",
- "wifi_signal": "-55dBm",
- "chamber_temper": 26.0,
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", incremental_push)
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- # New fields take effect.
- assert cached["wifi_signal"] == "-55dBm"
- assert cached["chamber_temper"] == 26.0
- # Sticky fields preserved from the previous cache (the #1371 fix).
- assert "ams" in cached, "AMS field must be preserved across incremental pushes (#1371)"
- assert cached["ams"]["ams"][0]["tray"][0]["tray_type"] == "PLA"
- assert cached["ams"]["tray_exist_bits"] == "3"
- assert cached["vt_tray"]["id"] == "254"
- assert cached["lights_report"][0]["mode"] == "on"
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_partial_ams_status_update_preserves_unit_list(self):
- """#1387: Bambu firmware also sends `ams` updates where the key is
- present but the inner `ams` array is missing — e.g. just
- ``{ams_status: 1}`` or a humidity change. Before the deep-merge fix
- the bridge would overwrite the cached AMS with this stripped blob,
- the slicer would read it on the next 1 Hz push, and BambuStudio
- would drop the unit list and fall back to its "no AMS" render
- (only the external spool visible — the reporter's exact symptom).
- Now the partial update only mutates the fields it carries; the
- cached unit list survives.
- """
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- # 1. Pushall with full AMS state.
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {
- "ams": [
- {
- "id": "0",
- "humidity": "1",
- "tray": [{"id": "0", "tray_type": "PLA", "tray_color": "FF0000FF"}],
- }
- ],
- "tray_exist_bits": "1",
- "ams_status": "0",
- },
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- # 2. Partial AMS update — only `ams_status` and `humidity` changed.
- # No `ams.ams` array, so prev's unit list must be preserved.
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {"ams_status": "1", "humidity": "2"},
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- # Scalar fields take the new values.
- assert cached["ams"]["ams_status"] == "1"
- assert cached["ams"]["humidity"] == "2"
- # Unit + tray data preserved from the pushall.
- assert cached["ams"]["tray_exist_bits"] == "1"
- assert len(cached["ams"]["ams"]) == 1
- assert cached["ams"]["ams"][0]["tray"][0]["tray_type"] == "PLA"
- assert cached["ams"]["ams"][0]["tray"][0]["tray_color"] == "FF0000FF"
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_partial_ams_unit_update_preserves_other_units(self):
- """#1387: when multiple AMS units are configured (e.g. H2D with two
- AMS), an incremental push during a print typically only carries the
- unit / tray that changed state. Naive replacement of `ams.ams` wipes
- the other unit. The bridge merges unit-by-unit by id, preserving
- units the incremental doesn't mention.
- """
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- # 1. Pushall with two AMS units configured.
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {
- "ams": [
- {"id": "0", "tray": [{"id": "0", "tray_type": "PLA"}]},
- {"id": "1", "tray": [{"id": "0", "tray_type": "PETG"}]},
- ],
- "tray_exist_bits": "3",
- },
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- # 2. Tray-targeted incremental: unit 0 / tray 0 state changed.
- # Unit 1 is not in the update — must survive.
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {"ams": [{"id": "0", "tray": [{"id": "0", "state": "11"}]}]},
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- units = {u["id"]: u for u in cached["ams"]["ams"]}
- # Unit 0 keeps its tray_type from the pushall + picks up the new state.
- assert units["0"]["tray"][0]["tray_type"] == "PLA"
- assert units["0"]["tray"][0]["state"] == "11"
- # Unit 1 survives the incremental.
- assert "1" in units
- assert units["1"]["tray"][0]["tray_type"] == "PETG"
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_partial_ams_tray_update_preserves_other_trays(self):
- """Same shape as the unit-level test but at the tray level. AMS
- unit 0 has four trays; the incremental only mentions tray 0.
- Trays 1-3 must survive intact."""
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {
- "ams": [
- {
- "id": "0",
- "tray": [
- {"id": "0", "tray_type": "PLA", "tray_color": "FF0000FF"},
- {"id": "1", "tray_type": "PETG", "tray_color": "00FF00FF"},
- {"id": "2", "tray_type": "ABS", "tray_color": "0000FFFF"},
- {"id": "3", "tray_type": "TPU", "tray_color": "FFFF00FF"},
- ],
- }
- ],
- },
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {"ams": [{"id": "0", "tray": [{"id": "0", "state": "11"}]}]},
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- trays = {t["id"]: t for t in cached["ams"]["ams"][0]["tray"]}
- assert trays["0"]["tray_type"] == "PLA"
- assert trays["0"]["state"] == "11"
- # Trays not mentioned in the incremental survive intact.
- assert trays["1"]["tray_type"] == "PETG"
- assert trays["2"]["tray_type"] == "ABS"
- assert trays["3"]["tray_type"] == "TPU"
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_incoming_ams_update_replaces_cached_ams(self):
- """Counterpart to the #1371 fix: preservation only kicks in when the
- incoming push OMITS a sticky key. When the printer DOES send a fresh
- `ams` value (e.g. on a pushall, or when AMS state genuinely changes),
- that value must take effect — the preservation must not shadow real
- updates.
- """
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- # 1. Initial state: PLA in tray 0.
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {"ams": [{"id": "0", "tray": [{"id": "0", "tray_type": "PLA"}]}]},
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- # 2. Fresh push with PETG — must replace, not get shadowed by the old PLA.
- bridge._on_printer_raw(
- f"device/{H2D_SERIAL}/report",
- json.dumps(
- {
- "print": {
- "command": "push_status",
- "ams": {"ams": [{"id": "0", "tray": [{"id": "0", "tray_type": "PETG"}]}]},
- }
- }
- ).encode(),
- )
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- assert cached["ams"]["ams"][0]["tray"][0]["tray_type"] == "PETG"
- await bridge.stop()
- # ---------------------------------------------------------------------------
- # Caching: get_version response
- # ---------------------------------------------------------------------------
- class TestVersionCache:
- @pytest.mark.asyncio
- async def test_get_version_response_caches_modules(self):
- server = _make_server()
- bridge = _make_bridge(server)
- await bridge.start()
- payload = json.dumps(
- {
- "info": {
- "command": "get_version",
- "module": [
- {"name": "ota", "sn": H2D_SERIAL, "sw_ver": "01.03.00.00"},
- {"name": "n3f/0", "sn": "AMS_HW_1", "sw_ver": "04.00.21.87"},
- ],
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- modules = bridge.get_latest_version_modules()
- assert modules is not None
- assert len(modules) == 2
- # Device-level sn rewritten; AMS-hardware sn left alone.
- assert modules[0]["sn"] == VP_SERIAL
- assert modules[1]["sn"] == "AMS_HW_1"
- await bridge.stop()
- # ---------------------------------------------------------------------------
- # Selective fan-out (everything that's not push_status / get_version)
- # ---------------------------------------------------------------------------
- class TestCommandResponseFanout:
- @pytest.mark.asyncio
- async def test_extrusion_cali_get_response_is_fanned_out(self):
- """Slicer's extrusion_cali_get goes to the printer; the printer's response
- must reach the slicer or BambuStudio's pre-flight blocks Send."""
- server = _make_server()
- server.push_raw_to_clients = AsyncMock()
- bridge = _make_bridge(server)
- await bridge.start()
- body = json.dumps({"print": {"command": "extrusion_cali_get", "filaments": []}}).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", body)
- await asyncio.sleep(0.01)
- server.push_raw_to_clients.assert_awaited_once()
- topic, _payload = server.push_raw_to_clients.await_args.args
- assert topic == f"device/{VP_SERIAL}/report"
- await bridge.stop()
- # ---------------------------------------------------------------------------
- # Forwarding: slicer → printer
- # ---------------------------------------------------------------------------
- class TestForwardToPrinter:
- @pytest.mark.asyncio
- async def test_forward_publishes_to_real_serial_request_topic(self):
- target = _make_paho_client()
- bridge = _make_bridge(_make_server(), target)
- await bridge.start()
- ok = bridge.forward_to_printer({"print": {"command": "stop"}})
- assert ok is True
- target.publish_raw.assert_called_once()
- topic, payload = target.publish_raw.call_args.args
- assert topic == f"device/{H2D_SERIAL}/request"
- assert json.loads(payload) == {"print": {"command": "stop"}}
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_forward_returns_false_when_not_bound(self):
- pm = MagicMock()
- pm.get_client = MagicMock(return_value=None)
- bridge = MQTTBridge(
- vp_id=1,
- vp_name="vp1",
- vp_serial=VP_SERIAL,
- target_printer_id=42,
- mqtt_server=_make_server(),
- printer_manager=pm,
- )
- await bridge.start()
- assert bridge.forward_to_printer({"print": {"command": "stop"}}) is False
- await bridge.stop()
- # ---------------------------------------------------------------------------
- # SimpleMQTTServer status response: cached-as-base
- # ---------------------------------------------------------------------------
- class TestStatusReportCachedAsBase:
- """`_send_status_report` sends near-byte-identical real data when bridge cache exists."""
- def _capture_published(self, server: SimpleMQTTServer):
- """Wrap _publish_to_report to capture (topic, payload_dict)."""
- published: list = []
- async def _capture(writer, payload, serial=""):
- published.append((serial or server.serial, payload))
- server._publish_to_report = _capture # type: ignore[assignment]
- return published
- @pytest.mark.asyncio
- async def test_uses_real_cache_when_bridge_active(self):
- server = _make_server()
- bridge = MagicMock()
- bridge.get_latest_print_state.return_value = {
- "command": "push_status",
- "msg": 0,
- "ams": {"ams": [{"id": "0"}]},
- "device": {"extruder": {"info": [{"id": 0}, {"id": 1}]}},
- "nozzle_diameter": "0.4",
- "nozzle_type": "HH01", # real H2D value, not synthetic 'hardened_steel'
- }
- server.set_bridge(bridge)
- published = self._capture_published(server)
- await server._send_status_report(MagicMock())
- assert len(published) == 1
- _serial, payload = published[0]
- # AMS / device / nozzle_type all from cache
- assert payload["print"]["nozzle_type"] == "HH01"
- assert payload["print"]["device"]["extruder"]["info"][1]["id"] == 1
- # Protocol fields under our control
- assert payload["print"]["command"] == "push_status"
- assert payload["print"]["gcode_state"] == "IDLE"
- @pytest.mark.asyncio
- async def test_falls_back_to_synthetic_when_no_cache(self):
- server = _make_server()
- bridge = MagicMock()
- bridge.get_latest_print_state.return_value = None
- server.set_bridge(bridge)
- published = self._capture_published(server)
- await server._send_status_report(MagicMock())
- assert len(published) == 1
- _serial, payload = published[0]
- # Synthetic baseline has stub fields like nozzle_type='hardened_steel'
- # and a `storage` field that the real H2D doesn't push.
- assert payload["print"]["nozzle_type"] == "hardened_steel"
- assert "storage" in payload["print"]
- @pytest.mark.asyncio
- async def test_storage_indicators_overlaid_for_send_preflight(self):
- """#1228: P1S/A1-class firmware doesn't always include the SD/storage
- fields BambuStudio's "Send" pre-flight reads. Without these the
- slicer rejects with 'storage needs to be inserted' before even
- attempting FTP. The cached-as-base path now overlays them so the
- pre-flight passes regardless of what the real printer reports.
- """
- server = _make_server()
- bridge = MagicMock()
- # Real P1S push without SD card inserted: home_flag has other bits set
- # but the SD bit (0x100) is clear; sdcard is False; no storage field.
- bridge.get_latest_print_state.return_value = {
- "command": "push_status",
- "msg": 0,
- "home_flag": 0x42,
- "sdcard": False,
- }
- server.set_bridge(bridge)
- published = self._capture_published(server)
- await server._send_status_report(MagicMock())
- _serial, payload = published[0]
- # SD bit ORed onto whatever was there — other bits preserved.
- assert payload["print"]["home_flag"] & 0x100 == 0x100
- assert payload["print"]["home_flag"] & 0x42 == 0x42
- # Force-set so a False from the printer doesn't trip the pre-flight.
- assert payload["print"]["sdcard"] is True
- # storage was missing — the overlay must inject a non-empty default.
- assert "storage" in payload["print"]
- assert payload["print"]["storage"]["free"] > 0
- assert payload["print"]["storage"]["total"] > 0
- @pytest.mark.asyncio
- async def test_storage_indicators_preserve_real_storage_when_present(self):
- """When the real printer DOES report a storage block, pass it through
- unchanged (the overlay only fills in the missing field, not overrides).
- """
- server = _make_server()
- bridge = MagicMock()
- real_storage = {"free": 12345, "total": 67890}
- bridge.get_latest_print_state.return_value = {
- "command": "push_status",
- "msg": 0,
- "home_flag": 0x100, # SD bit already set on the real printer
- "sdcard": True,
- "storage": real_storage,
- }
- server.set_bridge(bridge)
- published = self._capture_published(server)
- await server._send_status_report(MagicMock())
- _serial, payload = published[0]
- # SD bit OR is idempotent — already-set bit stays set.
- assert payload["print"]["home_flag"] == 0x100
- assert payload["print"]["sdcard"] is True
- # Real values pass through, NOT the synthetic defaults.
- assert payload["print"]["storage"] == real_storage
- @pytest.mark.asyncio
- async def test_overrides_protocol_fields_even_when_cache_present(self):
- """Cached value's gcode_state must NOT win over our local upload-state-machine value."""
- server = _make_server()
- server._gcode_state = "PREPARE"
- server._current_file = "foo.3mf"
- bridge = MagicMock()
- bridge.get_latest_print_state.return_value = {
- "command": "push_status",
- "gcode_state": "IDLE", # printer is idle; we are mid-FTP-upload
- "gcode_file": "",
- "gcode_file_prepare_percent": "0",
- }
- server.set_bridge(bridge)
- published = self._capture_published(server)
- await server._send_status_report(MagicMock())
- _serial, payload = published[0]
- assert payload["print"]["gcode_state"] == "PREPARE"
- assert payload["print"]["gcode_file"] == "foo.3mf"
- @pytest.mark.asyncio
- async def test_live_progress_fields_zeroed_in_cached_branch(self):
- """#1558: when the real target printer is mid-print, the cached
- push_status carries live values for mc_percent / stg_cur / layer_num /
- etc. BambuStudio's Send pre-flight reads any of these as "VP busy"
- even when gcode_state above is forced to IDLE — blocking Send while
- the target prints. The cached branch must override these to the same
- idle values the synthetic stub uses.
- """
- server = _make_server()
- bridge = MagicMock()
- # Real printer mid-print state: gcode_state may be RUNNING upstream,
- # but the VP's own _gcode_state is IDLE (Send is requesting a
- # new upload, the VP isn't running anything).
- bridge.get_latest_print_state.return_value = {
- "command": "push_status",
- "msg": 0,
- "gcode_state": "RUNNING",
- "mc_print_stage": "2",
- "mc_percent": 47,
- "mc_remaining_time": 3600,
- "stg": [1, 2, 3],
- "stg_cur": 14,
- "layer_num": 120,
- "total_layer_num": 250,
- "print_error": 0,
- }
- server.set_bridge(bridge)
- published = self._capture_published(server)
- await server._send_status_report(MagicMock())
- _serial, payload = published[0]
- # Every live-progress field must reflect "idle / VP isn't busy".
- assert payload["print"]["mc_print_stage"] == ""
- assert payload["print"]["mc_percent"] == 0
- assert payload["print"]["mc_remaining_time"] == 0
- assert payload["print"]["stg"] == []
- assert payload["print"]["stg_cur"] == 0
- assert payload["print"]["layer_num"] == 0
- assert payload["print"]["total_layer_num"] == 0
- assert payload["print"]["print_error"] == 0
- # ---------------------------------------------------------------------------
- # Wire format
- # ---------------------------------------------------------------------------
- class TestWireFormat:
- """BambuStudio's Send pre-flight rejects compact JSON — must match real printer's
- indented format (32K bytes for an idle H2D vs 14K compact)."""
- @pytest.mark.asyncio
- async def test_publish_uses_indent_4_json_format(self):
- server = _make_server()
- captured: list = []
- async def _capture_drain():
- pass
- writer = MagicMock()
- writer.write = lambda data: captured.append(data)
- writer.drain = AsyncMock()
- await server._publish_to_report(writer, {"print": {"command": "push_status", "ams": {}}})
- body = b"".join(captured)
- assert b'\n "print"' in body, "publish_to_report must use indent=4 JSON"
- # ---------------------------------------------------------------------------
- # Routing: _handle_publish
- # ---------------------------------------------------------------------------
- class TestPublishRouting:
- """Slicer-issued commands: project_file/gcode_file handled locally, everything
- else forwarded to the real printer."""
- def _build_publish_payload(self, topic: str, body: bytes) -> bytes:
- topic_bytes = topic.encode("utf-8")
- return bytes([len(topic_bytes) >> 8, len(topic_bytes) & 0xFF]) + topic_bytes + body
- def _attach_active_bridge(self, server: SimpleMQTTServer) -> MagicMock:
- bridge = MagicMock()
- bridge.is_active = True
- bridge.forward_to_printer = MagicMock(return_value=True)
- server.set_bridge(bridge)
- return bridge
- @pytest.mark.asyncio
- async def test_project_file_handled_locally_not_forwarded(self):
- server = _make_server()
- bridge = self._attach_active_bridge(server)
- writer = MagicMock()
- writer.write = MagicMock()
- writer.drain = AsyncMock()
- body = json.dumps({"print": {"command": "project_file", "subtask_name": "f", "sequence_id": "1"}}).encode()
- payload = self._build_publish_payload(f"device/{VP_SERIAL}/request", body)
- with patch.object(server, "_send_print_response", new=AsyncMock()) as mock_resp:
- await server._handle_publish(0x30, payload, writer, "client1")
- bridge.forward_to_printer.assert_not_called()
- mock_resp.assert_awaited_once()
- @pytest.mark.asyncio
- async def test_gcode_file_handled_locally_not_forwarded(self):
- server = _make_server()
- bridge = self._attach_active_bridge(server)
- writer = MagicMock()
- writer.write = MagicMock()
- writer.drain = AsyncMock()
- body = json.dumps({"print": {"command": "gcode_file", "subtask_name": "f.gcode", "sequence_id": "1"}}).encode()
- payload = self._build_publish_payload(f"device/{VP_SERIAL}/request", body)
- with patch.object(server, "_send_print_response", new=AsyncMock()):
- await server._handle_publish(0x30, payload, writer, "client1")
- bridge.forward_to_printer.assert_not_called()
- @pytest.mark.asyncio
- async def test_pushall_handled_locally_not_forwarded(self):
- server = _make_server()
- bridge = self._attach_active_bridge(server)
- writer = MagicMock()
- writer.write = MagicMock()
- writer.drain = AsyncMock()
- body = json.dumps({"pushing": {"command": "pushall", "sequence_id": "0"}}).encode()
- payload = self._build_publish_payload(f"device/{VP_SERIAL}/request", body)
- with patch.object(server, "_send_status_report", new=AsyncMock()) as mock_status:
- await server._handle_publish(0x30, payload, writer, "client1")
- # Synthetic answer fires (fast, low latency); no forwarding (the
- # cache already mirrors what the printer would respond with).
- bridge.forward_to_printer.assert_not_called()
- mock_status.assert_awaited_once()
- @pytest.mark.asyncio
- async def test_get_version_handled_locally_not_forwarded(self):
- server = _make_server()
- bridge = self._attach_active_bridge(server)
- writer = MagicMock()
- writer.write = MagicMock()
- writer.drain = AsyncMock()
- body = json.dumps({"info": {"command": "get_version", "sequence_id": "1"}}).encode()
- payload = self._build_publish_payload(f"device/{VP_SERIAL}/request", body)
- with patch.object(server, "_send_version_response", new=AsyncMock()) as mock_ver:
- await server._handle_publish(0x30, payload, writer, "client1")
- bridge.forward_to_printer.assert_not_called()
- mock_ver.assert_awaited_once()
- @pytest.mark.asyncio
- async def test_extrusion_cali_get_is_forwarded(self):
- """extrusion_cali_get fetches per-filament k-profiles — must reach the printer."""
- server = _make_server()
- bridge = self._attach_active_bridge(server)
- writer = MagicMock()
- writer.write = MagicMock()
- writer.drain = AsyncMock()
- body = json.dumps(
- {
- "print": {
- "command": "extrusion_cali_get",
- "filament_id": "",
- "nozzle_diameter": "0.4",
- "sequence_id": "5",
- }
- }
- ).encode()
- payload = self._build_publish_payload(f"device/{VP_SERIAL}/request", body)
- await server._handle_publish(0x30, payload, writer, "client1")
- bridge.forward_to_printer.assert_called_once()
- forwarded = bridge.forward_to_printer.call_args.args[0]
- assert forwarded["print"]["command"] == "extrusion_cali_get"
- @pytest.mark.asyncio
- async def test_print_stop_is_forwarded(self):
- server = _make_server()
- bridge = self._attach_active_bridge(server)
- writer = MagicMock()
- writer.write = MagicMock()
- writer.drain = AsyncMock()
- body = json.dumps({"print": {"command": "stop", "sequence_id": "5"}}).encode()
- payload = self._build_publish_payload(f"device/{VP_SERIAL}/request", body)
- await server._handle_publish(0x30, payload, writer, "client1")
- bridge.forward_to_printer.assert_called_once()
- # ---------------------------------------------------------------------------
- # IP encoding helper
- # ---------------------------------------------------------------------------
- class TestIpEncoding:
- def test_le_uint32_matches_real_h2d_capture(self):
- # 192.168.255.133 captured from real H2D's net.info[0].ip = 2248124608
- assert _ip_to_uint32_le("192.168.255.133") == 2248124608
- def test_vp_ip_round_trip(self):
- assert _ip_to_uint32_le("192.168.255.16") == 285190336
- def test_invalid_ip_raises(self):
- with pytest.raises(ValueError):
- _ip_to_uint32_le("not.an.ip.actually")
- class TestHostnameResolution:
- """#1429 follow-up: users who configured the printer by FQDN (common on
- LANs with router-provided DNS like `p1s.fritz.box`) hit `invalid IPv4`
- on the encoder and the rewrite never armed — slicer kept FTPing direct
- to the real printer. The bridge now resolves hostname→IPv4 first."""
- def test_pass_through_for_valid_ipv4(self):
- assert _resolve_target_to_ipv4("192.168.1.50") == "192.168.1.50"
- def test_empty_returns_none(self):
- assert _resolve_target_to_ipv4("") is None
- assert _resolve_target_to_ipv4(None) is None # type: ignore[arg-type]
- def test_hostname_resolves_via_getaddrinfo(self):
- with patch(
- "backend.app.services.virtual_printer.mqtt_bridge.socket.getaddrinfo",
- return_value=[(2, 1, 6, "", ("192.168.3.153", 0))],
- ) as mock_gai:
- assert _resolve_target_to_ipv4("p1s.fritz.box") == "192.168.3.153"
- # AF_INET filter prevents an IPv6-only result from being picked,
- # since net.info[*].ip is a uint32 LE that can't carry v6.
- assert mock_gai.call_args.kwargs.get("family") == socket.AF_INET
- def test_dns_failure_returns_none(self):
- with patch(
- "backend.app.services.virtual_printer.mqtt_bridge.socket.getaddrinfo",
- side_effect=OSError("Name or service not known"),
- ):
- assert _resolve_target_to_ipv4("nope.invalid") is None
- def test_fqdn_target_arms_encoding(self, caplog):
- """End-to-end: a client whose `ip_address` is an FQDN should arm
- the bridge once DNS resolves, and the cached rewrite uses the
- resolved IPv4 (not the hostname string) for the `net.info[].ip`
- encoding."""
- server = _make_server(bind_address=VP_IP)
- bridge = _make_bridge(server)
- client = _make_paho_client(ip="p1s.fritz.box")
- bridge._target_client = client
- with (
- patch(
- "backend.app.services.virtual_printer.mqtt_bridge.socket.getaddrinfo",
- return_value=[(2, 1, 6, "", (H2D_IP, 0))],
- ),
- caplog.at_level(logging.INFO, logger="backend.app.services.virtual_printer.mqtt_bridge"),
- ):
- bridge._refresh_ip_encoding()
- assert bridge._target_ip_uint32_le == _ip_to_uint32_le(H2D_IP)
- assert bridge._vp_ip_uint32_le == _ip_to_uint32_le(VP_IP)
- armed = [r for r in caplog.records if "MQTT bridge IP encoding armed" in r.getMessage()]
- assert len(armed) == 1
- # Operator should see configured→resolved in the log line so a
- # bad-DNS regression is immediately legible.
- assert "p1s.fritz.box→192.168.255.133" in armed[0].getMessage()
- # ---------------------------------------------------------------------------
- # Auto-resolve fallback for default-config (bind_address = "0.0.0.0")
- # ---------------------------------------------------------------------------
- class TestBindAddressAutoResolve:
- """#1429 residual: VPs created without a dedicated bind IP run on
- `bind_address=0.0.0.0`. The original fix's `_refresh_ip_encoding`
- early-returned on 0.0.0.0, so the rewrite never armed and `net.info[].ip`
- kept leaking the real printer IP. Now the bridge auto-resolves a host
- interface in the printer's subnet and uses that as the VP IP."""
- @pytest.mark.asyncio
- async def test_rewrite_arms_via_auto_resolved_host_ip(self):
- """When bind_address is 0.0.0.0, fall back to the host interface in
- the target printer's subnet and rewrite to that IP."""
- server = _make_server(bind_address="0.0.0.0")
- bridge = _make_bridge(server)
- with patch(
- "backend.app.services.virtual_printer.mqtt_bridge._resolve_host_interface_for_target",
- return_value=VP_IP,
- ):
- await bridge.start()
- h2d_le = _ip_to_uint32_le(H2D_IP)
- vp_le = _ip_to_uint32_le(VP_IP)
- payload = json.dumps(
- {
- "print": {
- "command": "push_status",
- "net": {"info": [{"ip": h2d_le, "mask": 0xFFFFFF}]},
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- cached = bridge.get_latest_print_state()
- assert cached["net"]["info"][0]["ip"] == vp_le
- assert bridge._vp_ip_uint32_le == vp_le
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_rewrite_disabled_when_no_matching_host_interface(self):
- """If no host interface shares a subnet with the printer, the bridge
- cannot pick a sensible VP IP — leave encoding unarmed and let the
- push through unrewritten (no crash, no wrong rewrite)."""
- server = _make_server(bind_address="")
- bridge = _make_bridge(server)
- with patch(
- "backend.app.services.virtual_printer.mqtt_bridge._resolve_host_interface_for_target",
- return_value=None,
- ):
- await bridge.start()
- h2d_le = _ip_to_uint32_le(H2D_IP)
- payload = json.dumps(
- {
- "print": {
- "command": "push_status",
- "net": {"info": [{"ip": h2d_le, "mask": 0xFFFFFF}]},
- }
- }
- ).encode()
- bridge._on_printer_raw(f"device/{H2D_SERIAL}/report", payload)
- await asyncio.sleep(0.01)
- assert bridge._vp_ip_uint32_le is None
- assert bridge._target_ip_uint32_le is None
- await bridge.stop()
- @pytest.mark.asyncio
- async def test_explicit_bind_ip_takes_precedence_over_auto_resolve(self):
- """Auto-resolve only kicks in when bind_address is empty/0.0.0.0; an
- explicitly-set bind IP must be used verbatim even if there's also a
- same-subnet host interface."""
- server = _make_server(bind_address=VP_IP)
- bridge = _make_bridge(server)
- # Auto-resolver would have returned a DIFFERENT IP — we must not use it.
- with patch(
- "backend.app.services.virtual_printer.mqtt_bridge._resolve_host_interface_for_target",
- return_value="10.99.99.99",
- ):
- await bridge.start()
- assert bridge._vp_ip_uint32_le == _ip_to_uint32_le(VP_IP)
- await bridge.stop()
- def test_resolve_helper_returns_none_for_unreachable_target(self):
- """The helper itself must be defensive — if `find_interface_for_ip`
- raises or returns None, we get None (no crash)."""
- with patch(
- "backend.app.services.network_utils.find_interface_for_ip",
- return_value=None,
- ):
- assert _resolve_host_interface_for_target("203.0.113.1") is None
- class TestNotArmedDiagnosticLogging:
- """#1429 follow-up: every silent early-return in `_refresh_ip_encoding`
- now emits one INFO line explaining WHY the rewrite couldn't arm. Throttled
- to one line per state change so an idle unarmed bridge doesn't spam the
- log every 30s tick. Cleared on arm so a future failure re-emits.
- """
- def test_no_client_logs_once(self, caplog):
- bridge = _make_bridge(_make_server())
- # Force the "no client" path: bridge starts with _target_client=None.
- assert bridge._target_client is None
- with caplog.at_level(logging.INFO, logger="backend.app.services.virtual_printer.mqtt_bridge"):
- bridge._refresh_ip_encoding()
- bridge._refresh_ip_encoding() # 2nd tick — same reason, must NOT re-log.
- bridge._refresh_ip_encoding()
- not_armed = [r for r in caplog.records if "NOT armed" in r.getMessage()]
- assert len(not_armed) == 1
- assert "target_client is None" in not_armed[0].getMessage()
- def test_missing_target_ip_logs_specific_reason(self, caplog):
- bridge = _make_bridge(_make_server())
- # Manually attach a client with no ip_address (simulates pre-DHCP).
- client = _make_paho_client()
- client.ip_address = ""
- bridge._target_client = client
- with caplog.at_level(logging.INFO, logger="backend.app.services.virtual_printer.mqtt_bridge"):
- bridge._refresh_ip_encoding()
- not_armed = [r for r in caplog.records if "NOT armed" in r.getMessage()]
- assert len(not_armed) == 1
- assert "no ip_address" in not_armed[0].getMessage()
- def test_no_matching_host_interface_logs_specific_reason(self, caplog):
- server = _make_server(bind_address="0.0.0.0")
- bridge = _make_bridge(server)
- with (
- patch(
- "backend.app.services.virtual_printer.mqtt_bridge._resolve_host_interface_for_target",
- return_value=None,
- ),
- caplog.at_level(logging.INFO, logger="backend.app.services.virtual_printer.mqtt_bridge"),
- ):
- bridge._target_client = _make_paho_client()
- bridge._refresh_ip_encoding()
- not_armed = [r for r in caplog.records if "NOT armed" in r.getMessage()]
- assert len(not_armed) == 1
- msg = not_armed[0].getMessage()
- assert H2D_IP in msg
- assert "no host interface" in msg
- def test_unresolvable_target_logs_reason(self, caplog):
- """When `ip_address` isn't a valid IPv4 *and* doesn't resolve via DNS,
- the bridge must report a single concrete not-armed reason naming the
- configured value — operator can then see exactly what input failed."""
- server = _make_server(bind_address=VP_IP)
- bridge = _make_bridge(server)
- client = _make_paho_client()
- client.ip_address = "not.an.ip"
- bridge._target_client = client
- with (
- patch(
- "backend.app.services.virtual_printer.mqtt_bridge.socket.getaddrinfo",
- side_effect=OSError("nodename nor servname provided"),
- ),
- caplog.at_level(logging.INFO, logger="backend.app.services.virtual_printer.mqtt_bridge"),
- ):
- bridge._refresh_ip_encoding()
- not_armed = [r for r in caplog.records if "NOT armed" in r.getMessage()]
- assert len(not_armed) == 1
- assert "could not resolve printer host 'not.an.ip'" in not_armed[0].getMessage()
- def test_successful_arm_clears_dedup_so_future_failure_relogs(self, caplog):
- """After a successful arm, the dedup must reset so a subsequent
- regression (e.g. printer client unbinds) re-emits the diagnostic
- line instead of being silenced by the previous failure reason."""
- bridge = _make_bridge(_make_server(bind_address=VP_IP))
- bridge._target_client = _make_paho_client()
- with caplog.at_level(logging.INFO, logger="backend.app.services.virtual_printer.mqtt_bridge"):
- bridge._refresh_ip_encoding() # arms
- assert bridge._not_armed_reason is None
- # Simulate a regression — target_client drops away.
- bridge._target_client = None
- bridge._refresh_ip_encoding()
- bridge._refresh_ip_encoding() # 2nd same-reason tick must not re-log
- not_armed = [r for r in caplog.records if "NOT armed" in r.getMessage()]
- assert len(not_armed) == 1 # the post-arm failure
- armed = [r for r in caplog.records if "MQTT bridge IP encoding armed" in r.getMessage()]
- assert len(armed) == 1
|