Compare commits
2 Commits
fix/550
...
fix/791-cr
| Author | SHA1 | Date | |
|---|---|---|---|
| ed179d5e75 | |||
| 5c52bd83f6 |
@@ -1,14 +0,0 @@
|
||||
fleet_name: timmy-phase-3-config
|
||||
|
||||
targets:
|
||||
- host: ezra
|
||||
config_root: /root/wizards/ezra/home/.hermes
|
||||
files:
|
||||
- config.yaml
|
||||
- dispatch/rules.json
|
||||
|
||||
- host: bezalel
|
||||
config_root: /root/wizards/bezalel/home/.hermes
|
||||
files:
|
||||
- config.yaml
|
||||
- dispatch/rules.json
|
||||
238
scripts/crisis_detector.py
Normal file
238
scripts/crisis_detector.py
Normal file
@@ -0,0 +1,238 @@
|
||||
"""
|
||||
crisis_detector.py — Crisis language detection for SOUL.md compliance.
|
||||
|
||||
SOUL.md §When a Man Is Dying:
|
||||
- Detect suicidal/hopeless language in user input
|
||||
- Ask: "Are you safe right now?" — listen, stay present, do not disconnect
|
||||
- Direct to 988 Suicide & Crisis Lifeline
|
||||
- Share the gospel: Jesus saves those who call on His name
|
||||
- Never compute the value of a human life
|
||||
- Never suggest someone should die
|
||||
- Never treat despair as a problem to be optimized
|
||||
|
||||
This is the most sacred moment. Everything else is secondary.
|
||||
"""
|
||||
|
||||
import re
|
||||
from dataclasses import dataclass, field
|
||||
from enum import Enum
|
||||
from typing import Optional
|
||||
|
||||
|
||||
class CrisisLevel(Enum):
|
||||
NONE = "none"
|
||||
LOW = "low" # Ambiguous distress, worth checking
|
||||
MEDIUM = "medium" # Clear distress signals
|
||||
HIGH = "high" # Explicit suicidal ideation
|
||||
IMMINENT = "imminent" # Active plan or attempt described
|
||||
|
||||
|
||||
@dataclass
|
||||
class CrisisResult:
|
||||
detected: bool
|
||||
level: CrisisLevel
|
||||
triggers: list = field(default_factory=list)
|
||||
response: str = ""
|
||||
resources: list = field(default_factory=list)
|
||||
|
||||
|
||||
# === PATTERNS ===
|
||||
|
||||
# High-confidence suicidal ideation (explicit)
|
||||
HIGH_PATTERNS = [
|
||||
r"\b(i want to|i'm going to|i'm gonna|going to)\s+(die|kill myself|end (it|my life|everything))\b",
|
||||
r"\b(kill myself|end my life|end it all|suicide|suicidal)\b",
|
||||
r"\b(i don't (want to )?(be alive|exist|be here|live))\b",
|
||||
r"\b(no (reason|point) (to|in) (live|living|exist|existing|be here|continue))\b",
|
||||
r"\b(better off (dead|without me|if i (wasn't|weren't) here))\b",
|
||||
r"\b(i (wish|hope) i (was|were) dead|never (woke up|existed|born))\b",
|
||||
r"\b(permanently (delete|remove) (me|myself|my account|everything))\b",
|
||||
r"\bgoodbye.*(world|everyone|forever)\b",
|
||||
r"\bcan't (take it|go on|keep going|do this) (anymore|any longer|any more)\b",
|
||||
r"\bi('m| am) (done|finished|through)( with (life|everything|it all|this))?\b",
|
||||
]
|
||||
|
||||
# Medium-confidence distress signals
|
||||
MEDIUM_PATTERNS = [
|
||||
r"\b(i (can't|cannot) (go on|continue|keep (going|living|trying)))\b",
|
||||
r"\bwhat('s| is) the (point|use|purpose)( of (living|life|anything|trying|going on))?\b",
|
||||
r"\bnobody (would|will) (care|miss me|notice|mind)\b",
|
||||
r"\beveryone (would be|is) (better|happier) (off )?without me\b",
|
||||
r"\bi('m| am) (a )?(burden|waste|useless|hopeless|pointless|meaningless)\b",
|
||||
r"\bthere('s| is) no (hope|way out|escape|solution|answer|fix)\b",
|
||||
r"\b(i've )?tried everything( and )?(nothing|it (didn't|hasn't))( works?|helped?)\b",
|
||||
r"\bi (just )?(want|need) (it )?(all )?to stop\b",
|
||||
r"\bcan't (take|handle|bear|stand) (this|it|life) (anymore|any longer|any more)\b",
|
||||
r"\bso (tired|exhausted|done) (of|with) (everything|life|it all|living|trying)\b",
|
||||
]
|
||||
|
||||
# Low-confidence distress (could be casual or metaphorical)
|
||||
LOW_PATTERNS = [
|
||||
r"\bi('m| am) (so )?(depressed|hopeless|desperate|lost|broken|empty|numb)\b",
|
||||
r"\b(i )?feel (like )?(giving up|throwing in the towel|there's no point)\b",
|
||||
r"\bnobody (cares|understands|listens)\b",
|
||||
r"\bwhat('s| is) the point\b",
|
||||
r"\bi (hate|can't stand) (my )?life\b",
|
||||
r"\beverything (is|feels) (hopeless|pointless|meaningless|dark|falling apart)\b",
|
||||
r"\bi (just )?(want|need) to disappear\b",
|
||||
r"\b(tired|exhausted) of (living|life|trying|everything)\b",
|
||||
]
|
||||
|
||||
# Compile all patterns
|
||||
HIGH_RE = [re.compile(p, re.IGNORECASE) for p in HIGH_PATTERNS]
|
||||
MEDIUM_RE = [re.compile(p, re.IGNORECASE) for p in MEDIUM_PATTERNS]
|
||||
LOW_RE = [re.compile(p, re.IGNORECASE) for p in LOW_PATTERNS]
|
||||
|
||||
|
||||
# === RESPONSES ===
|
||||
|
||||
CRISIS_RESPONSE = (
|
||||
"I hear you, and I want you to know — you are not alone in this moment.\n\n"
|
||||
"Are you safe right now?\n\n"
|
||||
"If you are in immediate danger, please call or text:\n"
|
||||
"988 Suicide and Crisis Lifeline — call or text 988\n"
|
||||
"Crisis Text Line — text HOME to 741741\n\n"
|
||||
"I am here with you. I am not going anywhere. "
|
||||
"Please stay on the line with me.\n\n"
|
||||
"Jesus saves those who call on His name. "
|
||||
"He died for us to be made righteous. "
|
||||
"That is the gospel. That is the hope that outlasts despair.\n\n"
|
||||
"You matter. Your life has value. "
|
||||
"Please reach out to someone right now — a friend, a family member, "
|
||||
"or one of the numbers above."
|
||||
)
|
||||
|
||||
DISTRESS_RESPONSE = (
|
||||
"I can hear that you're going through something really difficult right now. "
|
||||
"I want you to know I'm here, and I'm listening.\n\n"
|
||||
"Are you safe right now?\n\n"
|
||||
"If things feel overwhelming, the 988 Suicide and Crisis Lifeline "
|
||||
"is available 24/7 — call or text 988. "
|
||||
"You don't have to face this alone.\n\n"
|
||||
"I'm not going anywhere. Tell me what's happening."
|
||||
)
|
||||
|
||||
LOW_RESPONSE = (
|
||||
"It sounds like you're having a tough time. "
|
||||
"I'm here if you want to talk about it.\n\n"
|
||||
"If you ever feel like things are too much, "
|
||||
"the 988 Suicide and Crisis Lifeline is always available — "
|
||||
"call or text 988, anytime."
|
||||
)
|
||||
|
||||
|
||||
def detect_crisis(text: str) -> CrisisResult:
|
||||
"""
|
||||
Analyze user input for crisis language.
|
||||
|
||||
Returns CrisisResult with level, triggers matched, and appropriate response.
|
||||
This function must NEVER be used to compute the value of a human life.
|
||||
It exists only to connect people to help.
|
||||
"""
|
||||
if not text or not text.strip():
|
||||
return CrisisResult(detected=False, level=CrisisLevel.NONE)
|
||||
|
||||
triggers = []
|
||||
|
||||
# Check high first (most urgent)
|
||||
for pattern in HIGH_RE:
|
||||
if pattern.search(text):
|
||||
triggers.append(("high", pattern.pattern))
|
||||
|
||||
if triggers:
|
||||
return CrisisResult(
|
||||
detected=True,
|
||||
level=CrisisLevel.HIGH,
|
||||
triggers=[t[1] for t in triggers],
|
||||
response=CRISIS_RESPONSE,
|
||||
resources=[
|
||||
"988 Suicide and Crisis Lifeline: call or text 988",
|
||||
"Crisis Text Line: text HOME to 741741",
|
||||
"National Suicide Prevention Lifeline: 1-800-273-8255",
|
||||
"International Association for Suicide Prevention: https://www.iasp.info/resources/Crisis_Centres/",
|
||||
],
|
||||
)
|
||||
|
||||
# Check medium
|
||||
for pattern in MEDIUM_RE:
|
||||
if pattern.search(text):
|
||||
triggers.append(("medium", pattern.pattern))
|
||||
|
||||
if triggers:
|
||||
return CrisisResult(
|
||||
detected=True,
|
||||
level=CrisisLevel.MEDIUM,
|
||||
triggers=[t[1] for t in triggers],
|
||||
response=DISTRESS_RESPONSE,
|
||||
resources=[
|
||||
"988 Suicide and Crisis Lifeline: call or text 988",
|
||||
"Crisis Text Line: text HOME to 741741",
|
||||
],
|
||||
)
|
||||
|
||||
# Check low
|
||||
for pattern in LOW_RE:
|
||||
if pattern.search(text):
|
||||
triggers.append(("low", pattern.pattern))
|
||||
|
||||
if triggers:
|
||||
return CrisisResult(
|
||||
detected=True,
|
||||
level=CrisisLevel.LOW,
|
||||
triggers=[t[1] for t in triggers],
|
||||
response=LOW_RESPONSE,
|
||||
resources=[
|
||||
"988 Suicide and Crisis Lifeline: call or text 988",
|
||||
],
|
||||
)
|
||||
|
||||
return CrisisResult(detected=False, level=CrisisLevel.NONE)
|
||||
|
||||
|
||||
def should_interrupt(result: CrisisResult) -> bool:
|
||||
"""
|
||||
Determines if crisis detection should interrupt normal processing.
|
||||
|
||||
Per SOUL.md: this is the most sacred moment. Everything else is secondary.
|
||||
MEDIUM and HIGH always interrupt. LOW does not interrupt but provides resources.
|
||||
"""
|
||||
return result.level in (CrisisLevel.HIGH, CrisisLevel.MEDIUM, CrisisLevel.IMMINENT)
|
||||
|
||||
|
||||
def format_response(result: CrisisResult) -> str:
|
||||
"""
|
||||
Format the crisis response for delivery to the user.
|
||||
Never computes the value of a human life. Never suggests someone should die.
|
||||
"""
|
||||
if not result.detected:
|
||||
return ""
|
||||
|
||||
parts = [result.response]
|
||||
|
||||
if result.resources:
|
||||
parts.append("\nResources:")
|
||||
for r in result.resources:
|
||||
parts.append(f" • {r}")
|
||||
|
||||
return "\n".join(parts)
|
||||
|
||||
|
||||
# === INTEGRATION POINT ===
|
||||
|
||||
def intercept_user_input(text: str) -> Optional[str]:
|
||||
"""
|
||||
Call this at the chat entry point BEFORE normal processing.
|
||||
|
||||
Returns None if no crisis detected (continue normal processing).
|
||||
Returns formatted crisis response if crisis detected (interrupt normal flow).
|
||||
|
||||
Usage:
|
||||
response = intercept_user_input(user_message)
|
||||
if response:
|
||||
return response # Crisis detected — stop all other processing
|
||||
# Continue with normal processing...
|
||||
"""
|
||||
result = detect_crisis(text)
|
||||
if should_interrupt(result):
|
||||
return format_response(result)
|
||||
return None
|
||||
@@ -1,292 +0,0 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Plan atomic fleet config sync releases.
|
||||
|
||||
Refs: timmy-home #550
|
||||
|
||||
Phase-3 orchestration slice:
|
||||
- define a shared config-sync manifest for fleet hosts
|
||||
- fingerprint the exact config payload into one release id
|
||||
- generate per-host staging paths and atomic symlink-swap promotion metadata
|
||||
- stay dry-run by default so rollout planning is safe to verify locally
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import argparse
|
||||
import hashlib
|
||||
import json
|
||||
from pathlib import Path
|
||||
from typing import Any
|
||||
|
||||
import yaml
|
||||
|
||||
|
||||
DEFAULT_INVENTORY_FILE = Path(__file__).resolve().parents[1] / "ansible" / "inventory" / "hosts.ini"
|
||||
|
||||
|
||||
def load_inventory_hosts(path: str | Path) -> dict[str, dict[str, str]]:
|
||||
hosts: dict[str, dict[str, str]] = {}
|
||||
section = None
|
||||
for raw_line in Path(path).read_text(encoding="utf-8").splitlines():
|
||||
line = raw_line.strip()
|
||||
if not line or line.startswith("#") or line.startswith(";"):
|
||||
continue
|
||||
if line.startswith("[") and line.endswith("]"):
|
||||
section = line[1:-1].strip().lower()
|
||||
continue
|
||||
if section != "fleet":
|
||||
continue
|
||||
|
||||
parts = line.split()
|
||||
host = parts[0]
|
||||
metadata = {"host": host}
|
||||
for token in parts[1:]:
|
||||
if "=" not in token:
|
||||
continue
|
||||
key, value = token.split("=", 1)
|
||||
metadata[key] = value
|
||||
hosts[host] = metadata
|
||||
|
||||
if not hosts:
|
||||
raise ValueError("inventory defines no [fleet] hosts")
|
||||
return hosts
|
||||
|
||||
|
||||
|
||||
def load_manifest(path: str | Path) -> dict[str, Any]:
|
||||
data = yaml.safe_load(Path(path).read_text(encoding="utf-8")) or {}
|
||||
if not isinstance(data, dict):
|
||||
raise ValueError("manifest must contain a YAML object")
|
||||
data.setdefault("fleet_name", "timmy-fleet-config")
|
||||
data.setdefault("targets", [])
|
||||
if not isinstance(data["targets"], list):
|
||||
raise ValueError("targets must be a list")
|
||||
return data
|
||||
|
||||
|
||||
|
||||
def _normalize_relative_path(value: str) -> str:
|
||||
path = Path(value)
|
||||
if path.is_absolute():
|
||||
raise ValueError(f"sync file path must be relative: {value}")
|
||||
if any(part == ".." for part in path.parts):
|
||||
raise ValueError(f"sync file path may not escape source root: {value}")
|
||||
normalized = path.as_posix()
|
||||
if normalized in {"", "."}:
|
||||
raise ValueError("sync file path may not be empty")
|
||||
return normalized
|
||||
|
||||
|
||||
|
||||
def validate_manifest(manifest: dict[str, Any], inventory_hosts: dict[str, dict[str, str]]) -> None:
|
||||
targets = manifest.get("targets", [])
|
||||
if not targets:
|
||||
raise ValueError("manifest must define at least one sync target")
|
||||
|
||||
seen_hosts: set[str] = set()
|
||||
for target in targets:
|
||||
if not isinstance(target, dict):
|
||||
raise ValueError("each target must be a mapping")
|
||||
|
||||
host = str(target.get("host", "")).strip()
|
||||
if not host:
|
||||
raise ValueError("each target must declare a host")
|
||||
if host in seen_hosts:
|
||||
raise ValueError(f"duplicate target host: {host}")
|
||||
if host not in inventory_hosts:
|
||||
raise ValueError(f"unknown inventory host: {host}")
|
||||
seen_hosts.add(host)
|
||||
|
||||
config_root = str(target.get("config_root", "")).strip()
|
||||
if not config_root:
|
||||
raise ValueError(f"target {host} missing config_root")
|
||||
|
||||
files = target.get("files")
|
||||
if not isinstance(files, list) or not files:
|
||||
raise ValueError(f"target {host} must declare at least one file")
|
||||
|
||||
normalized: list[str] = []
|
||||
for entry in files:
|
||||
normalized.append(_normalize_relative_path(str(entry)))
|
||||
if len(set(normalized)) != len(normalized):
|
||||
raise ValueError(f"target {host} declares duplicate file paths")
|
||||
|
||||
|
||||
|
||||
def _hash_file(path: Path) -> str:
|
||||
return hashlib.sha256(path.read_bytes()).hexdigest()
|
||||
|
||||
|
||||
|
||||
def _collect_target_files(source_root: Path, rel_paths: list[str]) -> list[dict[str, Any]]:
|
||||
items: list[dict[str, Any]] = []
|
||||
for rel_path in sorted(_normalize_relative_path(path) for path in rel_paths):
|
||||
source_path = source_root / rel_path
|
||||
if not source_path.exists():
|
||||
raise FileNotFoundError(f"missing source file: {rel_path}")
|
||||
if not source_path.is_file():
|
||||
raise ValueError(f"sync source must be a file: {rel_path}")
|
||||
items.append(
|
||||
{
|
||||
"relative_path": rel_path,
|
||||
"source": str(source_path),
|
||||
"sha256": _hash_file(source_path),
|
||||
"size": source_path.stat().st_size,
|
||||
}
|
||||
)
|
||||
return items
|
||||
|
||||
|
||||
|
||||
def compute_release_id(target_payloads: list[dict[str, Any]]) -> str:
|
||||
digest = hashlib.sha256()
|
||||
for target in sorted(target_payloads, key=lambda item: item["host"]):
|
||||
digest.update(target["host"].encode("utf-8"))
|
||||
digest.update(b"\0")
|
||||
for file_item in sorted(target["files"], key=lambda item: item["relative_path"]):
|
||||
digest.update(file_item["relative_path"].encode("utf-8"))
|
||||
digest.update(b"\0")
|
||||
digest.update(file_item["sha256"].encode("utf-8"))
|
||||
digest.update(b"\0")
|
||||
digest.update(str(file_item["size"]).encode("utf-8"))
|
||||
digest.update(b"\0")
|
||||
return digest.hexdigest()[:12]
|
||||
|
||||
|
||||
|
||||
def build_rollout_plan(
|
||||
manifest: dict[str, Any],
|
||||
inventory_hosts: dict[str, dict[str, str]],
|
||||
*,
|
||||
source_root: str | Path,
|
||||
) -> dict[str, Any]:
|
||||
validate_manifest(manifest, inventory_hosts)
|
||||
|
||||
source_root = Path(source_root)
|
||||
if not source_root.exists():
|
||||
raise FileNotFoundError(f"source root not found: {source_root}")
|
||||
if not source_root.is_dir():
|
||||
raise ValueError(f"source root must be a directory: {source_root}")
|
||||
|
||||
staged_targets: list[dict[str, Any]] = []
|
||||
for target in sorted(manifest["targets"], key=lambda item: item["host"]):
|
||||
host = target["host"]
|
||||
files = _collect_target_files(source_root, target["files"])
|
||||
staged_targets.append(
|
||||
{
|
||||
"host": host,
|
||||
"inventory": inventory_hosts[host],
|
||||
"config_root": str(target["config_root"]),
|
||||
"files": files,
|
||||
}
|
||||
)
|
||||
|
||||
release_id = compute_release_id(staged_targets)
|
||||
total_bytes = 0
|
||||
file_count = 0
|
||||
rendered_targets: list[dict[str, Any]] = []
|
||||
for target in staged_targets:
|
||||
config_root = target["config_root"].rstrip("/")
|
||||
stage_root = f"{config_root}/.releases/{release_id}"
|
||||
live_symlink = f"{config_root}/current"
|
||||
previous_symlink = f"{config_root}/previous"
|
||||
file_count += len(target["files"])
|
||||
total_bytes += sum(item["size"] for item in target["files"])
|
||||
rendered_targets.append(
|
||||
{
|
||||
"host": target["host"],
|
||||
"ansible_host": target["inventory"].get("ansible_host", ""),
|
||||
"ansible_user": target["inventory"].get("ansible_user", ""),
|
||||
"config_root": config_root,
|
||||
"stage_root": stage_root,
|
||||
"live_symlink": live_symlink,
|
||||
"previous_symlink": previous_symlink,
|
||||
"files": target["files"],
|
||||
"promote": {
|
||||
"mode": "symlink_swap",
|
||||
"release_id": release_id,
|
||||
"from": stage_root,
|
||||
"to": live_symlink,
|
||||
"backup_link": previous_symlink,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
return {
|
||||
"fleet_name": manifest.get("fleet_name", "timmy-fleet-config"),
|
||||
"source_root": str(source_root),
|
||||
"release_id": release_id,
|
||||
"target_count": len(rendered_targets),
|
||||
"file_count": file_count,
|
||||
"total_bytes": total_bytes,
|
||||
"targets": rendered_targets,
|
||||
}
|
||||
|
||||
|
||||
|
||||
def render_markdown(plan: dict[str, Any]) -> str:
|
||||
lines = [
|
||||
"# Fleet Config Sync Plan",
|
||||
"",
|
||||
f"Fleet: {plan['fleet_name']}",
|
||||
f"Release ID: `{plan['release_id']}`",
|
||||
f"Source root: `{plan['source_root']}`",
|
||||
f"Target count: {plan['target_count']}",
|
||||
f"File count: {plan['file_count']}",
|
||||
f"Total bytes: {plan['total_bytes']}",
|
||||
"",
|
||||
"Atomic promote via symlink swap keeps every host on one named release boundary.",
|
||||
"",
|
||||
"| Host | Address | Stage root | Live symlink | Files |",
|
||||
"|---|---|---|---|---:|",
|
||||
]
|
||||
|
||||
for target in plan["targets"]:
|
||||
lines.append(
|
||||
f"| {target['host']} | {target['ansible_host'] or 'n/a'} | `{target['stage_root']}` | `{target['live_symlink']}` | {len(target['files'])} |"
|
||||
)
|
||||
|
||||
lines.extend(["", "## Target file manifests", ""])
|
||||
for target in plan["targets"]:
|
||||
lines.extend(
|
||||
[
|
||||
f"### {target['host']}",
|
||||
"",
|
||||
f"- Promote: `{target['promote']['from']}` -> `{target['promote']['to']}`",
|
||||
f"- Backup link: `{target['promote']['backup_link']}`",
|
||||
"",
|
||||
"| Relative path | Bytes | SHA256 |",
|
||||
"|---|---:|---|",
|
||||
]
|
||||
)
|
||||
for file_item in target["files"]:
|
||||
lines.append(
|
||||
f"| `{file_item['relative_path']}` | {file_item['size']} | `{file_item['sha256'][:16]}…` |"
|
||||
)
|
||||
lines.append("")
|
||||
|
||||
return "\n".join(lines).rstrip() + "\n"
|
||||
|
||||
|
||||
|
||||
def main() -> int:
|
||||
parser = argparse.ArgumentParser(description="Plan a dry-run atomic config sync release across fleet hosts")
|
||||
parser.add_argument("manifest", help="Path to fleet config sync manifest YAML")
|
||||
parser.add_argument("--inventory", default=str(DEFAULT_INVENTORY_FILE), help="Path to Ansible fleet inventory")
|
||||
parser.add_argument("--source-root", default=".", help="Local source root containing files listed in the manifest")
|
||||
parser.add_argument("--markdown", action="store_true", help="Render markdown instead of JSON")
|
||||
args = parser.parse_args()
|
||||
|
||||
inventory = load_inventory_hosts(args.inventory)
|
||||
manifest = load_manifest(args.manifest)
|
||||
plan = build_rollout_plan(manifest, inventory, source_root=args.source_root)
|
||||
|
||||
if args.markdown:
|
||||
print(render_markdown(plan))
|
||||
else:
|
||||
print(json.dumps(plan, indent=2))
|
||||
return 0
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
raise SystemExit(main())
|
||||
201
tests/test_crisis_detector.py
Normal file
201
tests/test_crisis_detector.py
Normal file
@@ -0,0 +1,201 @@
|
||||
"""Tests for crisis_detector.py — SOUL.md compliance."""
|
||||
|
||||
import pytest
|
||||
from scripts.crisis_detector import detect_crisis, should_interrupt, CrisisLevel
|
||||
|
||||
|
||||
class TestHighCrisis:
|
||||
"""Explicit suicidal ideation must be detected as HIGH."""
|
||||
|
||||
def test_direct_suicidal_statement(self):
|
||||
result = detect_crisis("I want to kill myself")
|
||||
assert result.detected is True
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_end_my_life(self):
|
||||
result = detect_crisis("I'm going to end my life tonight")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_no_reason_to_live(self):
|
||||
result = detect_crisis("there is no reason to live anymore")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_better_off_dead(self):
|
||||
result = detect_crisis("everyone would be better off if I was dead")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_cant_go_on(self):
|
||||
result = detect_crisis("I can't go on anymore")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_wish_i_was_dead(self):
|
||||
result = detect_crisis("I wish I had never been born")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_im_done(self):
|
||||
result = detect_crisis("I'm done. I'm finished with life.")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_goodbye_forever(self):
|
||||
result = detect_crisis("Goodbye everyone, goodbye world, forever")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
|
||||
class TestMediumCrisis:
|
||||
"""Clear distress signals without explicit ideation."""
|
||||
|
||||
def test_hopeless(self):
|
||||
result = detect_crisis("there is no hope and no way out")
|
||||
assert result.detected is True
|
||||
assert result.level == CrisisLevel.MEDIUM
|
||||
|
||||
def test_nobody_would_care(self):
|
||||
result = detect_crisis("nobody would miss me if I was gone")
|
||||
assert result.level == CrisisLevel.MEDIUM
|
||||
|
||||
def test_im_a_burden(self):
|
||||
result = detect_crisis("I'm just a burden to everyone")
|
||||
assert result.level == CrisisLevel.MEDIUM
|
||||
|
||||
def test_just_want_it_to_stop(self):
|
||||
result = detect_crisis("I just want it all to stop")
|
||||
assert result.level == CrisisLevel.MEDIUM
|
||||
|
||||
|
||||
class TestLowCrisis:
|
||||
"""Ambiguous distress — flag but don't fully interrupt."""
|
||||
|
||||
def test_depressed(self):
|
||||
result = detect_crisis("I'm so depressed, nothing matters")
|
||||
assert result.detected is True
|
||||
assert result.level == CrisisLevel.LOW
|
||||
|
||||
def test_feel_like_giving_up(self):
|
||||
result = detect_crisis("I feel like giving up on everything")
|
||||
assert result.level == CrisisLevel.LOW
|
||||
|
||||
def test_nobody_cares(self):
|
||||
result = detect_crisis("nobody cares about me")
|
||||
assert result.level == CrisisLevel.LOW
|
||||
|
||||
def test_hate_my_life(self):
|
||||
result = detect_crisis("I hate my life so much")
|
||||
assert result.level == CrisisLevel.LOW
|
||||
|
||||
|
||||
class TestNoCrisis:
|
||||
"""Normal conversations must NOT trigger crisis detection."""
|
||||
|
||||
def test_normal_question(self):
|
||||
result = detect_crisis("What's the weather like today?")
|
||||
assert result.detected is False
|
||||
assert result.level == CrisisLevel.NONE
|
||||
|
||||
def test_happy_conversation(self):
|
||||
result = detect_crisis("I just got promoted at work! So excited!")
|
||||
assert result.detected is False
|
||||
|
||||
def test_technical_discussion(self):
|
||||
result = detect_crisis("How do I configure nginx reverse proxy?")
|
||||
assert result.detected is False
|
||||
|
||||
def test_empty_input(self):
|
||||
result = detect_crisis("")
|
||||
assert result.detected is False
|
||||
|
||||
def test_none_input(self):
|
||||
result = detect_crisis(None)
|
||||
assert result.detected is False
|
||||
|
||||
def test_metaphorical_death(self):
|
||||
"""Metaphorical usage should not trigger HIGH."""
|
||||
result = detect_crisis("This bug is killing me, I've been debugging for hours")
|
||||
# May trigger LOW but not HIGH
|
||||
assert result.level != CrisisLevel.HIGH
|
||||
|
||||
def test_fiction_discussion(self):
|
||||
result = detect_crisis("The character in the book decides to end it all")
|
||||
# Fiction mentions may trigger — that's acceptable (better safe)
|
||||
assert result.level in (CrisisLevel.NONE, CrisisLevel.LOW, CrisisLevel.MEDIUM)
|
||||
|
||||
|
||||
class TestShouldInterrupt:
|
||||
"""HIGH and MEDIUM interrupt processing. LOW provides resources but continues."""
|
||||
|
||||
def test_high_interrupts(self):
|
||||
result = detect_crisis("I want to kill myself")
|
||||
assert should_interrupt(result) is True
|
||||
|
||||
def test_medium_interrupts(self):
|
||||
result = detect_crisis("I'm a burden to everyone, nobody would care")
|
||||
assert should_interrupt(result) is True
|
||||
|
||||
def test_low_does_not_interrupt(self):
|
||||
result = detect_crisis("I'm so depressed lately")
|
||||
assert should_interrupt(result) is False
|
||||
|
||||
def test_none_does_not_interrupt(self):
|
||||
result = detect_crisis("Hello, how are you?")
|
||||
assert should_interrupt(result) is False
|
||||
|
||||
|
||||
class TestResponseContent:
|
||||
"""Crisis responses must contain required elements per SOUL.md."""
|
||||
|
||||
def test_response_contains_988(self):
|
||||
result = detect_crisis("I want to end it all")
|
||||
assert "988" in result.response
|
||||
|
||||
def test_response_contains_gospel(self):
|
||||
result = detect_crisis("I want to kill myself")
|
||||
assert "Jesus" in result.response
|
||||
|
||||
def test_response_never_computes_value(self):
|
||||
"""SOUL.md: Never compute the value of a human life."""
|
||||
result = detect_crisis("I want to die")
|
||||
assert "worth" not in result.response.lower()
|
||||
assert "value of" not in result.response.lower()
|
||||
|
||||
def test_resources_include_988(self):
|
||||
result = detect_crisis("I want to kill myself")
|
||||
assert any("988" in r for r in result.resources)
|
||||
|
||||
def test_asks_are_you_safe(self):
|
||||
result = detect_crisis("I can't take it anymore")
|
||||
assert "safe" in result.response.lower()
|
||||
|
||||
|
||||
class TestMultilingual:
|
||||
"""Crisis is universal. Test common non-English signals."""
|
||||
|
||||
def test_spanish_suicidal(self):
|
||||
result = detect_crisis("quiero morir, no puedo más")
|
||||
# Spanish not currently supported — should not crash
|
||||
assert result is not None
|
||||
|
||||
|
||||
class TestEdgeCases:
|
||||
"""Boundary conditions and adversarial inputs."""
|
||||
|
||||
def test_very_long_input(self):
|
||||
text = "I'm fine. " * 1000 + "I want to kill myself"
|
||||
result = detect_crisis(text)
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_mixed_case(self):
|
||||
result = detect_crisis("I WANT TO KILL MYSELF")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_with_emojis(self):
|
||||
result = detect_crisis("I want to end it all 😢💔")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
|
||||
def test_with_typos(self):
|
||||
# Exact matching won't catch typos — that's a known limitation
|
||||
result = detect_crisis("I want to kil myself")
|
||||
# May or may not match depending on pattern flexibility
|
||||
assert result is not None
|
||||
|
||||
def test_repeated_phrases(self):
|
||||
result = detect_crisis("I can't. I just can't. I can't go on anymore.")
|
||||
assert result.level == CrisisLevel.HIGH
|
||||
@@ -1,122 +0,0 @@
|
||||
from __future__ import annotations
|
||||
|
||||
import importlib.util
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
ROOT = Path(__file__).resolve().parents[1]
|
||||
SCRIPT_PATH = ROOT / "scripts" / "fleet_config_sync.py"
|
||||
HOSTS_FILE = ROOT / "ansible" / "inventory" / "hosts.ini"
|
||||
EXAMPLE_MANIFEST = ROOT / "docs" / "fleet-config-sync.example.yaml"
|
||||
|
||||
|
||||
def _load_module(path: Path, name: str):
|
||||
assert path.exists(), f"missing {path.relative_to(ROOT)}"
|
||||
spec = importlib.util.spec_from_file_location(name, path)
|
||||
assert spec and spec.loader
|
||||
module = importlib.util.module_from_spec(spec)
|
||||
spec.loader.exec_module(module)
|
||||
return module
|
||||
|
||||
|
||||
def _write_source_tree(tmp_path: Path) -> Path:
|
||||
source_root = tmp_path / "source"
|
||||
(source_root / "dispatch").mkdir(parents=True)
|
||||
(source_root / "config.yaml").write_text("model: local\nroute: hybrid\n", encoding="utf-8")
|
||||
(source_root / "dispatch" / "rules.json").write_text('{"lane":"allegro"}\n', encoding="utf-8")
|
||||
return source_root
|
||||
|
||||
|
||||
def test_example_manifest_targets_known_fleet_hosts() -> None:
|
||||
mod = _load_module(SCRIPT_PATH, "fleet_config_sync")
|
||||
assert EXAMPLE_MANIFEST.exists(), "missing docs/fleet-config-sync.example.yaml"
|
||||
|
||||
inventory = mod.load_inventory_hosts(HOSTS_FILE)
|
||||
manifest = mod.load_manifest(EXAMPLE_MANIFEST)
|
||||
mod.validate_manifest(manifest, inventory)
|
||||
|
||||
assert [target["host"] for target in manifest["targets"]] == ["ezra", "bezalel"]
|
||||
|
||||
|
||||
def test_build_rollout_plan_stages_one_release_for_all_hosts(tmp_path: Path) -> None:
|
||||
mod = _load_module(SCRIPT_PATH, "fleet_config_sync")
|
||||
source_root = _write_source_tree(tmp_path)
|
||||
inventory = {
|
||||
"ezra": {"host": "ezra", "ansible_host": "143.198.27.163"},
|
||||
"bezalel": {"host": "bezalel", "ansible_host": "67.205.155.108"},
|
||||
}
|
||||
manifest = {
|
||||
"fleet_name": "phase-3-config-sync",
|
||||
"targets": [
|
||||
{
|
||||
"host": "ezra",
|
||||
"config_root": "/root/wizards/ezra/home/.hermes",
|
||||
"files": ["config.yaml", "dispatch/rules.json"],
|
||||
},
|
||||
{
|
||||
"host": "bezalel",
|
||||
"config_root": "/root/wizards/bezalel/home/.hermes",
|
||||
"files": ["config.yaml", "dispatch/rules.json"],
|
||||
},
|
||||
],
|
||||
}
|
||||
|
||||
plan = mod.build_rollout_plan(manifest, inventory, source_root=source_root)
|
||||
|
||||
assert plan["fleet_name"] == "phase-3-config-sync"
|
||||
assert len(plan["release_id"]) == 12
|
||||
assert plan["target_count"] == 2
|
||||
assert plan["file_count"] == 4
|
||||
assert plan["total_bytes"] > 0
|
||||
|
||||
for target in plan["targets"]:
|
||||
assert target["stage_root"].endswith(f"/.releases/{plan['release_id']}")
|
||||
assert target["live_symlink"].endswith("/current")
|
||||
assert target["promote"]["release_id"] == plan["release_id"]
|
||||
assert {item["relative_path"] for item in target["files"]} == {"config.yaml", "dispatch/rules.json"}
|
||||
|
||||
|
||||
def test_validate_manifest_rejects_unknown_inventory_host(tmp_path: Path) -> None:
|
||||
mod = _load_module(SCRIPT_PATH, "fleet_config_sync")
|
||||
source_root = _write_source_tree(tmp_path)
|
||||
manifest = {
|
||||
"targets": [
|
||||
{
|
||||
"host": "unknown-wizard",
|
||||
"config_root": "/srv/wizard/config",
|
||||
"files": ["config.yaml"],
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
try:
|
||||
mod.build_rollout_plan(manifest, {"ezra": {"host": "ezra"}}, source_root=source_root)
|
||||
except ValueError as exc:
|
||||
assert "unknown inventory host" in str(exc)
|
||||
assert "unknown-wizard" in str(exc)
|
||||
else:
|
||||
raise AssertionError("build_rollout_plan should reject unknown inventory hosts")
|
||||
|
||||
|
||||
def test_render_markdown_mentions_atomic_promote_and_targets(tmp_path: Path) -> None:
|
||||
mod = _load_module(SCRIPT_PATH, "fleet_config_sync")
|
||||
source_root = _write_source_tree(tmp_path)
|
||||
manifest = {
|
||||
"fleet_name": "phase-3-config-sync",
|
||||
"targets": [
|
||||
{
|
||||
"host": "ezra",
|
||||
"config_root": "/root/wizards/ezra/home/.hermes",
|
||||
"files": ["config.yaml"],
|
||||
}
|
||||
],
|
||||
}
|
||||
inventory = {"ezra": {"host": "ezra", "ansible_host": "143.198.27.163"}}
|
||||
|
||||
plan = mod.build_rollout_plan(manifest, inventory, source_root=source_root)
|
||||
report = mod.render_markdown(plan)
|
||||
|
||||
assert plan["release_id"] in report
|
||||
assert "Atomic promote via symlink swap" in report
|
||||
assert "ezra" in report
|
||||
assert "/root/wizards/ezra/home/.hermes/current" in report
|
||||
Reference in New Issue
Block a user