35 lines
910 B
Bash
Executable File
35 lines
910 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
source "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)/base-test.sh"
|
|
|
|
tmpdir=$(mktemp -d)
|
|
trap 'rm -rf "$tmpdir"' EXIT
|
|
|
|
mock_bin="$tmpdir/bin"
|
|
call_log="$tmpdir/calls"
|
|
mkdir -p "$mock_bin"
|
|
|
|
for command in omarchy-shell hyprctl pkill; do
|
|
cat >"$mock_bin/$command" <<'SH'
|
|
#!/bin/bash
|
|
printf '%s %s\n' "$(basename "$0")" "$*" >>"$CALL_LOG"
|
|
SH
|
|
done
|
|
|
|
cat >"$mock_bin/pgrep" <<'SH'
|
|
#!/bin/bash
|
|
exit 1
|
|
SH
|
|
chmod +x "$mock_bin"/*
|
|
|
|
PATH="$mock_bin:$PATH" CALL_LOG="$call_log" "$ROOT/bin/omarchy-system-lock"
|
|
mapfile -t kills < <(rg '^pkill ' "$call_log")
|
|
|
|
[[ ${kills[0]} == "pkill -x ttfx" ]] ||
|
|
fail "system lock stops ttfx before closing its terminal" "calls: ${kills[*]}"
|
|
[[ ${kills[1]} == "pkill -f [o]rg.omarchy.screensaver" ]] ||
|
|
fail "system lock closes the screensaver terminal after ttfx" "calls: ${kills[*]}"
|
|
pass "system lock stops ttfx before closing its terminal"
|