#!/usr/bin/env bash # Health owns the accepted diagnostic snapshot. A newer unreadable response # must degrade diagnostics without discarding the last report that Settings # and future health surfaces will render. set -euo pipefail repo_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)" harness="$repo_dir/config/dot/quickshell/health-harness.qml" service="$repo_dir/config/dot/quickshell/services/Health.qml" shell="$repo_dir/config/dot/quickshell/shell.qml" warning_snapshot='{"schemaVersion":1,"generatedAt":"2026-08-18T00:00:00Z","summary":{"status":"warning","healthy":0,"warnings":2,"errors":0,"unconfigured":0},"context":{"session":"hyprland","versions":[{"id":"quickshell","version":"0.3.0"}]},"checks":[{"id":"integration.calendar","group":"integrations","title":"Calendar","status":"warning","detail":"Calendar probe timed out.","action":{"kind":"open","label":"Open Date & Time","confirm":false,"target":"datetime"}},{"id":"panama.caffeine","group":"panama-tools","title":"Caffeine","status":"warning","detail":"Duplicate inhibitors are active.","action":{"kind":"repair","label":"Release duplicate inhibitors","confirm":false}}]}' projection_snapshot="$(jq -c ' .fixtureSecret = "fixture-secret" | .summary.fixtureSecret = "fixture-secret" | .context.fixtureSecret = "fixture-secret" | .context.versions[0].fixtureSecret = "fixture-secret" | .checks[0].fixtureSecret = "fixture-secret" ' <<<"$warning_snapshot")" adversarial_snapshot="$(jq -c ' .fixtureSecret = "fixture-secret" | .summary.fixtureSecret = "fixture-secret" | .context.fixtureSecret = "fixture-secret" | .context.versions[0].fixtureSecret = "fixture-secret" | .checks[0].fixtureSecret = "fixture-secret" | .checks[0].action.fixtureSecret = "fixture-secret" ' <<<"$warning_snapshot")" fail() { printf 'health service contract: %s\n' "$1" >&2 exit 1 } [[ -f "$service" ]] || fail 'Health.qml is missing' [[ -f "$harness" ]] || fail 'health harness is missing' [[ -f "$shell" ]] || fail 'shell.qml is missing' # shell.qml is not started here: it is the active desktop shell. Keep this # contract static while pinning the typed, redacted IPC boundary it exports. python3 - "$shell" <<'PY' || fail 'health IPC contract is missing or exposes unsafe state' import re import sys text = open(sys.argv[1], encoding="utf-8").read() match = re.search(r'IpcHandler \{\s*target: "health"(?P.*?)\n \}', text, re.S) if not match: raise SystemExit(1) body = match.group("body") required = ( 'function refresh(): bool { return Health.refresh(); }', 'function status(): string {', 'summary: Health.summary,', 'busy: Health.busy,', 'generation: Health.generation,', 'acceptedGeneration: Health.acceptedGeneration,', 'checks: Health.checks.map(check => ({ id: check.id, status: check.status }))', 'ShellState.openSettings("services");', 'Health.refresh();', 'function repair(id: string): bool { return Health.repair(id, true); }', ) if any(entry not in body for entry in required): raise SystemExit(1) if 'Health.snapshot' in body or 'Health.diagnostics' in body: raise SystemExit(1) status = re.search(r'function status\(\): string \{\s*return JSON\.stringify\(\{(?P.*?)\n \}\);', body, re.S) if not status: raise SystemExit(1) keys = re.findall(r'^\s*([A-Za-z][A-Za-z0-9]*):', status.group("fields"), re.M) if keys != ["summary", "busy", "generation", "acceptedGeneration", "checks"]: raise SystemExit(1) PY fixture_dir="$(mktemp -d /tmp/panama-health.XXXXXX)" helper="$fixture_dir/panama-doctor" copy_bin="$fixture_dir/bin" copy_file="$fixture_dir/copied-report.json" printf '%s\n' \ '#!/usr/bin/env bash' \ 'if [[ "$1" == "--json" ]]; then' \ ' sleep 0.2' \ " printf '%s\\n' '$warning_snapshot'" \ ' exit 0' \ 'fi' \ 'if [[ "$1" == "--repair" && "$2" == "panama.caffeine" && "$3" == "--json" ]]; then' \ ' exit 0' \ 'fi' \ 'exit 2' >"$helper" chmod +x "$helper" mkdir -p "$copy_bin" printf '%s\n' \ '#!/usr/bin/env bash' \ '/usr/bin/cat > "$PANAMA_HEALTH_COPY_FILE"' >"$copy_bin/wl-copy" chmod +x "$copy_bin/wl-copy" run() { PATH="$copy_bin:$PATH" PANAMA_HEALTH_HELPER="$helper" PANAMA_HEALTH_COPY_FILE="$copy_file" qs -p "$harness" "$@"; } harness_pid="" cleanup() { [[ -n "$harness_pid" ]] && kill "$harness_pid" >/dev/null 2>&1 || true rm -rf "$fixture_dir" } trap cleanup EXIT PATH="$copy_bin:$PATH" PANAMA_HEALTH_HELPER="$helper" PANAMA_HEALTH_COPY_FILE="$copy_file" \ qs -p "$harness" --daemonize >/dev/null for _ in $(seq 1 40); do run ipc show 2>/dev/null | rg -q '^target health-test$' && break sleep 0.1 done run ipc show 2>/dev/null | rg -q '^target health-test$' || fail 'test IPC target did not start' harness_pid="$(run list | awk '/Process ID:/ { print $3; exit }')" [[ "$(run ipc call health-test accept "$warning_snapshot" 0)" == "true" ]] \ || fail 'valid warning snapshot was rejected' state="$(run ipc call health-test status)" jq -e '.status == "warning" and .acceptedGeneration == 0 and .checks == ["integration.calendar", "panama.caffeine"] and .diagnosticUnavailable == false' \ >/dev/null <<<"$state" || fail "valid warning snapshot was not accepted intact: $state" [[ "$(run ipc call health-test accept "$projection_snapshot" 0)" == "true" ]] \ || fail 'snapshot with unknown non-action fields was rejected instead of safely projected' stored_report="$(run ipc call health-test report)" ! grep -Fq 'fixture-secret' <<<"$stored_report" \ || fail "accepted snapshot retained an unknown secret field: $stored_report" [[ "$(run ipc call health-test copy)" == "true" ]] \ || fail 'copy report was refused' for _ in $(seq 1 40); do [[ -f "$copy_file" ]] && break sleep 0.1 done [[ -f "$copy_file" ]] || fail 'copy report did not reach wl-copy' ! grep -Fq 'fixture-secret' "$copy_file" \ || fail 'copied report retained an unknown secret field' adversarial_result="$(run ipc call health-test accept "$adversarial_snapshot" 1)" [[ "$adversarial_result" == "true" || "$adversarial_result" == "false" ]] \ || fail "adversarial action fixture did not return a Boolean: $adversarial_result" stored_report="$(run ipc call health-test report)" ! grep -Fq 'fixture-secret' <<<"$stored_report" \ || fail "adversarial snapshot leaked an unknown secret field: $stored_report" [[ "$(run ipc call health-test accept "$warning_snapshot" -1)" == "false" ]] \ || fail 'older generation replaced the current snapshot' state="$(run ipc call health-test status)" jq -e '.acceptedGeneration == 0 and .checks == ["integration.calendar", "panama.caffeine"]' \ >/dev/null <<<"$state" || fail "older generation altered accepted state: $state" [[ "$(run ipc call health-test accept '{not json' 1)" == "false" ]] \ || fail 'malformed snapshot was accepted' state="$(run ipc call health-test status)" jq -e '.diagnosticUnavailable == true and .checks == ["integration.calendar", "panama.caffeine"]' \ >/dev/null <<<"$state" || fail "malformed snapshot discarded the last valid checks: $state" before_generation="$(jq -r .generation <<<"$state")" run ipc call health-test queue >/dev/null state="$(run ipc call health-test status)" jq -e '.queuedRefresh == true and .generation == ($before + 1)' --argjson before "$before_generation" \ >/dev/null <<<"$state" || fail "two refreshes did not retain exactly one follow-up: $state" for _ in $(seq 1 120); do state="$(run ipc call health-test status)" jq -e '.busy == false and .generation == ($before + 2) and .queuedRefresh == false' --argjson before "$before_generation" \ >/dev/null <<<"$state" && break sleep 0.1 done jq -e '.busy == false and .generation == ($before + 2) and .queuedRefresh == false' --argjson before "$before_generation" \ >/dev/null <<<"$state" || fail "queued refresh did not run exactly once: $state" [[ "$(run ipc call health-test repair panama.caffeine)" == "true" ]] \ || fail 'repairable check was refused' for _ in $(seq 1 120); do state="$(run ipc call health-test status)" jq -e '.busy == false and .generation == ($before + 3)' --argjson before "$before_generation" \ >/dev/null <<<"$state" && break sleep 0.1 done jq -e '.busy == false and .generation == ($before + 3)' --argjson before "$before_generation" \ >/dev/null <<<"$state" || fail "accepted repair did not trigger one rescan: $state" [[ "$(run ipc call health-test repair unknown.check)" == "false" ]] \ || fail 'unknown check started a repair' [[ "$(run ipc call health-test repair integration.calendar)" == "false" ]] \ || fail 'non-repairable check started a repair' state="$(run ipc call health-test status)" jq -e '.repairingId == "" and .generation == ($before + 3)' --argjson before "$before_generation" \ >/dev/null <<<"$state" || fail "rejected repair altered process state: $state" trap - EXIT cleanup printf 'health service contract: PASS\n'