Groups every flat test_*.py under the module it exercises, matching the
existing tests/{profiler,sniffer,prober,collector,correlation,cli,web,
topology,swarm,bus,updater,api,docker,geoip,...} layout. New folders:
services/, fleet/, config/, logging/, db/ (+ db/mysql/), telemetry/,
mutator/, core/.
Path-dependent __file__ references bumped an extra .parent in three
files that moved one level deeper:
- tests/sniffer/test_sniffer_ja3.py (template path)
- tests/services/test_ssh_capture_emit.py (template path)
- tests/cli/test_mode_gating.py (REPO root)
- tests/web/test_env_lazy_jwt.py (repo var)
Also drops two SQLite runtime artifacts (test_decnet.db-{shm,wal}) that
were leaking into the repo from a previous test run.
Fixes two test_service_isolation cases that patched asyncio.sleep (no
longer on the profiler main-loop hot path — same pre-existing bug I
fixed earlier in test_attacker_worker.py) by patching asyncio.wait_for
and passing interval=0.
46 lines
1.7 KiB
Python
46 lines
1.7 KiB
Python
"""
|
|
Regression guards for workers that duplicate standalone daemons.
|
|
|
|
`decnet deploy` starts standalone `decnet sniffer --daemon` and
|
|
`decnet profiler --daemon` processes. The API's lifespan must not spawn
|
|
its own copies unless the operator explicitly opts in via env flags.
|
|
|
|
These tests are intentionally static: we don't spin up lifespan, because
|
|
scapy's sniff thread doesn't cooperate with asyncio cancellation and
|
|
hangs pytest teardown.
|
|
"""
|
|
import importlib
|
|
import inspect
|
|
|
|
|
|
def test_embed_sniffer_defaults_off(monkeypatch):
|
|
monkeypatch.delenv("DECNET_EMBED_SNIFFER", raising=False)
|
|
import decnet.env
|
|
importlib.reload(decnet.env)
|
|
assert decnet.env.DECNET_EMBED_SNIFFER is False
|
|
|
|
|
|
def test_embed_sniffer_flag_is_truthy_on_opt_in(monkeypatch):
|
|
monkeypatch.setenv("DECNET_EMBED_SNIFFER", "true")
|
|
import decnet.env
|
|
importlib.reload(decnet.env)
|
|
assert decnet.env.DECNET_EMBED_SNIFFER is True
|
|
|
|
|
|
def test_api_lifespan_gates_sniffer_on_embed_flag():
|
|
"""The lifespan source must reference the gate flag before spawning the
|
|
sniffer task — catches accidental removal of the guard in future edits."""
|
|
import decnet.web.api
|
|
src = inspect.getsource(decnet.web.api.lifespan)
|
|
assert "DECNET_EMBED_SNIFFER" in src, "sniffer gate removed from lifespan"
|
|
assert "sniffer_worker" in src
|
|
# Gate must appear before the task creation.
|
|
assert src.index("DECNET_EMBED_SNIFFER") < src.index("sniffer_worker")
|
|
|
|
|
|
def test_api_lifespan_gates_profiler_on_embed_flag():
|
|
import decnet.web.api
|
|
src = inspect.getsource(decnet.web.api.lifespan)
|
|
assert "DECNET_EMBED_PROFILER" in src
|
|
assert src.index("DECNET_EMBED_PROFILER") < src.index("attacker_profile_worker")
|