mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-22 16:25:58 +00:00
23 lines
755 B
Python
23 lines
755 B
Python
import inspect
|
|
|
|
from tui_gateway import slash_worker
|
|
|
|
|
|
def test_is_orphaned_true_when_ppid_changes():
|
|
# Our parent went away and we were reparented to a subreaper/init.
|
|
assert slash_worker._is_orphaned(1234, getppid=lambda: 999999) is True
|
|
|
|
|
|
def test_is_orphaned_false_when_direct_parent_is_unchanged():
|
|
original_ppid = 1234
|
|
assert slash_worker._is_orphaned(original_ppid, getppid=lambda: original_ppid) is False
|
|
|
|
|
|
def test_parent_death_watchdog_contract_has_no_create_time_plumbing():
|
|
assert list(inspect.signature(slash_worker._is_orphaned).parameters) == [
|
|
"original_ppid",
|
|
"getppid",
|
|
]
|
|
assert list(inspect.signature(slash_worker._start_parent_death_watchdog).parameters) == [
|
|
"original_ppid",
|
|
]
|