1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-09 01:29:19 +00:00

fix: improve dry-run mode and error handling

- Export MOLE_DRY_RUN env var for subprocess visibility
- Add || true to grep commands to prevent pipeline failures
- Add dry-run test for clean_orphaned_system_services
- Simplify clean_local_snapshots tests
This commit is contained in:
Tw93
2026-01-23 18:05:09 +08:00
parent eb86a0ae37
commit d7a0d480bc
5 changed files with 59 additions and 71 deletions

View File

@@ -115,3 +115,48 @@ EOF
[[ "$output" == "ok" ]]
}
@test "clean_orphaned_system_services respects dry-run" {
run env HOME="$HOME" PROJECT_ROOT="$PROJECT_ROOT" MOLE_DRY_RUN=1 bash --noprofile --norc <<'EOF'
set -euo pipefail
source "$PROJECT_ROOT/lib/core/common.sh"
source "$PROJECT_ROOT/lib/clean/apps.sh"
start_section_spinner() { :; }
stop_section_spinner() { :; }
note_activity() { :; }
debug_log() { :; }
tmp_dir="$(mktemp -d)"
tmp_plist="$tmp_dir/com.sogou.test.plist"
touch "$tmp_plist"
sudo() {
if [[ "$1" == "-n" && "$2" == "true" ]]; then
return 0
fi
if [[ "$1" == "find" ]]; then
printf '%s\0' "$tmp_plist"
return 0
fi
if [[ "$1" == "du" ]]; then
echo "4 $tmp_plist"
return 0
fi
if [[ "$1" == "launchctl" ]]; then
echo "launchctl-called"
return 0
fi
if [[ "$1" == "rm" ]]; then
echo "rm-called"
return 0
fi
command "$@"
}
clean_orphaned_system_services
EOF
[ "$status" -eq 0 ]
[[ "$output" != *"rm-called"* ]]
[[ "$output" != *"launchctl-called"* ]]
}