31 lines
1005 B
Bash
31 lines
1005 B
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
source "$(dirname "$0")/base-test.sh"
|
|
|
|
test_home=$(mktemp -d)
|
|
trap 'rm -rf "$test_home"' EXIT
|
|
|
|
done_marker="$test_home/.local/state/omarchy/done/example"
|
|
|
|
if HOME="$test_home" "$ROOT/bin/omarchy-done" check example; then
|
|
fail "done reports an unmarked task as complete"
|
|
fi
|
|
|
|
HOME="$test_home" "$ROOT/bin/omarchy-done" mark example
|
|
[[ -f $done_marker ]] || fail "done marks a task complete"
|
|
HOME="$test_home" "$ROOT/bin/omarchy-done" check example || fail "done reports a marked task as complete"
|
|
|
|
HOME="$test_home" "$ROOT/bin/omarchy-done" ensure once || fail "done ensures an unmarked task"
|
|
[[ -f $test_home/.local/state/omarchy/done/once ]] || fail "done ensure marks a task complete"
|
|
if HOME="$test_home" "$ROOT/bin/omarchy-done" ensure once; then
|
|
fail "done ensures a completed task again"
|
|
fi
|
|
|
|
if HOME="$test_home" "$ROOT/bin/omarchy-done" check ../invalid >/dev/null 2>&1; then
|
|
fail "done accepts marker path traversal"
|
|
fi
|
|
|
|
pass "done manages completion markers"
|