mirror of
https://github.com/zvx-echo6/meshai.git
synced 2026-08-26 17:31:34 +00:00
env/firms.py to_event() now unconditionally returns None. The native FIRMS path was broadcasting raw single-pixel hotspots (new_ignition/wildfire_hotspot, both live "fire"-toggle categories) straight to the mesh — no decider gated them (none registered for those categories) — violating the absolute "we do NOT broadcast hotspots" rule and diverging from the Central handler's storage-only contract. Finding: native FIRMS has NO fusion wiring — it never wrote firms_pixels or did attribution; the growth/spotting/halt fire-tracker lives entirely in central/firms_handler.py driven by NATS. So neutralization loses no fusion (there was none natively). Full native fire-tracking standalone would require feeding native pixels into that attribution engine — a known, deferred gap. Only env/firms.py + tests/test_adapter_firms.py touched; firms_handler.py, gating/firms.py, store.py untouched. Suite at the 10-failure baseline. Co-authored-by: Matt Johnson <mj@k7zvx.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
154 lines
4.9 KiB
Python
154 lines
4.9 KiB
Python
"""Tests for FIRMS adapter Phase 2.6 — to_event() method."""
|
|
|
|
import time
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
from meshai.env.firms import FIRMSAdapter
|
|
from meshai.notifications.events import Event
|
|
|
|
|
|
# ============================================================
|
|
# FIXTURES
|
|
# ============================================================
|
|
|
|
@pytest.fixture
|
|
def mock_config():
|
|
"""Create a mock FIRMSConfig."""
|
|
config = MagicMock()
|
|
config.map_key = "test-key"
|
|
config.source = "VIIRS_SNPP_NRT"
|
|
config.bbox = [-117, 42, -114, 44]
|
|
config.day_range = 1
|
|
config.tick_seconds = 1800
|
|
config.confidence_min = "nominal"
|
|
config.proximity_km = 10.0
|
|
return config
|
|
|
|
|
|
@pytest.fixture
|
|
def adapter(mock_config):
|
|
"""Create a FIRMSAdapter with mocked dependencies."""
|
|
return FIRMSAdapter(mock_config, region_anchors=[], fires_adapter=None)
|
|
|
|
|
|
def make_firms_event(
|
|
lat=42.5,
|
|
lon=-114.5,
|
|
new_ignition=False,
|
|
severity="routine",
|
|
headline="Test Hotspot",
|
|
frp=None,
|
|
confidence="n",
|
|
distance_km=None,
|
|
nearest_anchor=None,
|
|
near_fire=None,
|
|
):
|
|
"""Helper to create a FIRMS event dict."""
|
|
now = time.time()
|
|
return {
|
|
"source": "firms",
|
|
"event_id": f"firms_{lat:.4f}_{lon:.4f}_2026-05-15_1200",
|
|
"event_type": "Fire Hotspot",
|
|
"severity": severity,
|
|
"headline": headline,
|
|
"lat": lat,
|
|
"lon": lon,
|
|
"expires": now + 21600,
|
|
"fetched_at": now,
|
|
"properties": {
|
|
"new_ignition": new_ignition,
|
|
"confidence": confidence,
|
|
"frp": frp,
|
|
"brightness": 350.0,
|
|
"acq_date": "2026-05-15",
|
|
"acq_time": "1200",
|
|
"near_fire": near_fire,
|
|
"distance_to_fire_km": 5.0 if near_fire else None,
|
|
"distance_km": distance_km,
|
|
"nearest_anchor": nearest_anchor,
|
|
},
|
|
}
|
|
|
|
|
|
# ============================================================
|
|
# ATTRIBUTION-ONLY CONTRACT
|
|
# ============================================================
|
|
#
|
|
# Firm rule (Matt): "we do NOT broadcast hotspots." The native FIRMS adapter
|
|
# must NEVER produce a broadcastable Event from a raw satellite pixel --
|
|
# neither a near-known-fire `wildfire_hotspot` nor a standalone `new_ignition`.
|
|
# `to_event()` is now attribution-only and ALWAYS returns None, mirroring the
|
|
# storage-only Central path (central/firms_handler.py). The only FIRMS signals
|
|
# that ever reach the mesh are the fusion outputs (wildfire_growth /
|
|
# wildfire_spotting / wildfire_halted) produced by the Central handler.
|
|
#
|
|
# These tests lock that contract: NOTHING the adapter emits reaches the bus.
|
|
|
|
def test_to_event_hotspot_returns_none(adapter):
|
|
"""A representative hotspot (near a known fire) never broadcasts."""
|
|
evt = make_firms_event(new_ignition=False, near_fire="Snake River Fire",
|
|
frp=85.5, confidence="h")
|
|
assert adapter.to_event(evt) is None
|
|
|
|
|
|
def test_to_event_new_ignition_returns_none(adapter):
|
|
"""A representative new-ignition hotspot never broadcasts."""
|
|
evt = make_firms_event(new_ignition=True, frp=120.0, confidence="h",
|
|
distance_km=12, nearest_anchor="TFL")
|
|
assert adapter.to_event(evt) is None
|
|
|
|
|
|
def test_to_event_returns_none_across_severities(adapter):
|
|
"""No severity tier re-opens the hotspot broadcast path."""
|
|
for sev in ["routine", "priority", "immediate"]:
|
|
evt = make_firms_event(severity=sev)
|
|
assert adapter.to_event(evt) is None
|
|
|
|
|
|
def test_to_event_never_broadcasts_even_with_full_payload(adapter):
|
|
"""A fully-populated hotspot dict still produces no Event."""
|
|
evt = make_firms_event(
|
|
lat=42.5678, lon=-114.3456, new_ignition=True, severity="immediate",
|
|
headline="NEW HOTSPOT detected", frp=250.0, confidence="h",
|
|
distance_km=3, nearest_anchor="MHR",
|
|
)
|
|
assert adapter.to_event(evt) is None
|
|
|
|
|
|
# ============================================================
|
|
# DEFENSIVE TESTS
|
|
# ============================================================
|
|
|
|
def test_to_event_missing_coords_returns_none(adapter):
|
|
"""Missing coordinates returns None."""
|
|
evt = make_firms_event()
|
|
evt["lat"] = None
|
|
event = adapter.to_event(evt)
|
|
assert event is None
|
|
|
|
|
|
def test_to_event_missing_properties_returns_none(adapter):
|
|
"""Missing properties dict still produces no broadcast."""
|
|
evt = {
|
|
"source": "firms",
|
|
"event_id": "test",
|
|
"event_type": "Fire Hotspot",
|
|
"severity": "routine",
|
|
"headline": "Test",
|
|
"lat": 42.5,
|
|
"lon": -114.5,
|
|
"fetched_at": time.time(),
|
|
}
|
|
# No "properties" key at all
|
|
event = adapter.to_event(evt)
|
|
assert event is None
|
|
|
|
|
|
def test_to_event_does_not_raise_on_corrupted_dict(adapter):
|
|
"""Corrupted dict returns None without raising."""
|
|
evt = {"garbage": True}
|
|
# Should not raise
|
|
event = adapter.to_event(evt)
|
|
assert event is None
|