mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-06-07 23:03:54 +02:00
363b5a49c8
- User-Agent is per-install handle only (no Shadowbroker product token) - LiveUAMap: Windows UI consent when enabling Global Incidents; env override - Meshtastic callsign upstream header off by default (opt-in true) - Expanded docs/OUTBOUND_DATA.md and README link for CCTV, basemap, Broadcastify Co-authored-by: Cursor <cursoragent@cursor.com>
28 lines
1.0 KiB
Python
28 lines
1.0 KiB
Python
"""Issue #350: Meshtastic callsign in outbound UA is opt-in, not default."""
|
|
import os
|
|
|
|
import pytest
|
|
|
|
|
|
def _send_callsign_header_from_env() -> bool:
|
|
raw = str(os.environ.get("MESHTASTIC_SEND_CALLSIGN_HEADER", "false")).strip().lower()
|
|
return raw in {"1", "true", "yes", "on"}
|
|
|
|
|
|
def test_default_does_not_send_callsign(monkeypatch):
|
|
monkeypatch.setenv("MESHTASTIC_OPERATOR_CALLSIGN", "N0CALL")
|
|
monkeypatch.delenv("MESHTASTIC_SEND_CALLSIGN_HEADER", raising=False)
|
|
assert _send_callsign_header_from_env() is False
|
|
|
|
|
|
def test_opt_in_sends_callsign(monkeypatch):
|
|
monkeypatch.setenv("MESHTASTIC_OPERATOR_CALLSIGN", "N0CALL")
|
|
monkeypatch.setenv("MESHTASTIC_SEND_CALLSIGN_HEADER", "true")
|
|
assert _send_callsign_header_from_env() is True
|
|
|
|
|
|
def test_various_falsy_values_do_not_opt_in(monkeypatch):
|
|
for falsy in ("0", "false", "FALSE", "no", "off", ""):
|
|
monkeypatch.setenv("MESHTASTIC_SEND_CALLSIGN_HEADER", falsy)
|
|
assert _send_callsign_header_from_env() is False, f"value {falsy!r} should not opt in"
|