mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
78 lines
3.1 KiB
Bash
78 lines
3.1 KiB
Bash
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
source "$(dirname "$0")/base-test.sh"
|
|
|
|
test_tmp=$(mktemp -d)
|
|
trap 'rm -rf "$test_tmp"' EXIT
|
|
|
|
test_root="$test_tmp/omarchy"
|
|
test_home="$test_tmp/home"
|
|
mkdir -p "$test_root/migrations" "$test_home"
|
|
|
|
cat >"$test_root/migrations/100-first.sh" <<'SH'
|
|
[[ $OMARCHY_PATH == "$TEST_EXPECTED_OMARCHY_PATH" ]]
|
|
echo first >>"$TEST_CALLS"
|
|
SH
|
|
cat >"$test_root/migrations/200-second.sh" <<'SH'
|
|
[[ $OMARCHY_PATH == "$TEST_EXPECTED_OMARCHY_PATH" ]]
|
|
echo second >>"$TEST_CALLS"
|
|
SH
|
|
|
|
calls="$test_tmp/calls"
|
|
|
|
if ! HOME="$test_home" OMARCHY_PATH="$test_root" "$ROOT/bin/omarchy-migrate" --pending >"$test_tmp/pending.out"; then
|
|
fail "migration runner reports pending migrations before state exists"
|
|
fi
|
|
grep -q '^100-first\.sh$' "$test_tmp/pending.out" || fail "migration runner lists first pending migration filename"
|
|
grep -q '^200-second\.sh$' "$test_tmp/pending.out" || fail "migration runner lists second pending migration filename"
|
|
pass "migration runner detects pending migrations"
|
|
|
|
HOME="$test_home" \
|
|
OMARCHY_PATH="$test_root" \
|
|
TEST_EXPECTED_OMARCHY_PATH="$test_root" \
|
|
TEST_CALLS="$calls" \
|
|
"$ROOT/bin/omarchy-migrate" >"$test_tmp/first-run.out"
|
|
[[ $(sed -n '1p' "$calls") == "first" ]] || fail "migration runner runs first migration"
|
|
[[ $(sed -n '2p' "$calls") == "second" ]] || fail "migration runner runs second migration"
|
|
[[ -f $test_home/.local/state/omarchy/migrations/100-first.sh ]] || fail "migration runner records first migration marker"
|
|
[[ -f $test_home/.local/state/omarchy/migrations/200-second.sh ]] || fail "migration runner records second migration marker"
|
|
pass "migration runner runs all migrations"
|
|
|
|
HOME="$test_home" \
|
|
OMARCHY_PATH="$test_root" \
|
|
TEST_EXPECTED_OMARCHY_PATH="$test_root" \
|
|
TEST_CALLS="$calls" \
|
|
"$ROOT/bin/omarchy-migrate" >"$test_tmp/second-run.out"
|
|
[[ $(wc -l <"$calls") -eq 2 ]] || fail "migration runner skips completed migrations"
|
|
pass "migration runner skips completed migrations"
|
|
|
|
if HOME="$test_home" OMARCHY_PATH="$test_root" "$ROOT/bin/omarchy-migrate" --pending >"$test_tmp/not-pending.out"; then
|
|
fail "migration runner reports no pending migrations after state exists"
|
|
fi
|
|
pass "migration runner detects no pending migrations"
|
|
|
|
failure_root="$test_tmp/failure-omarchy"
|
|
failure_home="$test_tmp/failure-home"
|
|
mkdir -p "$failure_root/migrations" "$failure_home"
|
|
|
|
cat >"$failure_root/migrations/500-fail.sh" <<'SH'
|
|
echo before-fail >>"$TEST_CALLS"
|
|
false
|
|
echo after-fail >>"$TEST_CALLS"
|
|
SH
|
|
|
|
set +e
|
|
HOME="$failure_home" \
|
|
OMARCHY_PATH="$failure_root" \
|
|
TEST_CALLS="$calls" \
|
|
"$ROOT/bin/omarchy-migrate" >"$test_tmp/failure.out" 2>"$test_tmp/failure.err"
|
|
failure_status=$?
|
|
set -e
|
|
[[ $failure_status -ne 0 ]] || fail "migration runner exits non-zero when a migration fails"
|
|
[[ ! -f $failure_home/.local/state/omarchy/migrations/500-fail.sh ]] || fail "migration runner does not mark failed migration complete"
|
|
grep -q '^before-fail$' "$calls" || fail "migration runner started failing migration"
|
|
! grep -q '^after-fail$' "$calls" || fail "migration runner stops failing migration under strict mode"
|
|
pass "migration runner does not mark failed migrations complete"
|