mirror of
https://github.com/tw93/Mole.git
synced 2026-02-04 15:04:42 +00:00
74 lines
2.1 KiB
Bash
74 lines
2.1 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
setup_file() {
|
|
PROJECT_ROOT="$(cd "${BATS_TEST_DIRNAME}/.." && pwd)"
|
|
export PROJECT_ROOT
|
|
|
|
ORIGINAL_HOME="${HOME:-}"
|
|
export ORIGINAL_HOME
|
|
|
|
HOME="$(mktemp -d "${BATS_TEST_DIRNAME}/tmp-cli-home.XXXXXX")"
|
|
export HOME
|
|
|
|
mkdir -p "$HOME"
|
|
}
|
|
|
|
teardown_file() {
|
|
rm -rf "$HOME"
|
|
if [[ -n "${ORIGINAL_HOME:-}" ]]; then
|
|
export HOME="$ORIGINAL_HOME"
|
|
fi
|
|
}
|
|
|
|
setup() {
|
|
rm -rf "$HOME/.config"
|
|
mkdir -p "$HOME"
|
|
}
|
|
|
|
@test "mole --help prints command overview" {
|
|
run env HOME="$HOME" "$PROJECT_ROOT/mole" --help
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" == *"mo clean"* ]]
|
|
[[ "$output" == *"mo analyze"* ]]
|
|
}
|
|
|
|
@test "mole --version reports script version" {
|
|
expected_version="$(grep '^VERSION=' "$PROJECT_ROOT/mole" | head -1 | sed 's/VERSION=\"\(.*\)\"/\1/')"
|
|
run env HOME="$HOME" "$PROJECT_ROOT/mole" --version
|
|
[ "$status" -eq 0 ]
|
|
[[ "$output" == *"$expected_version"* ]]
|
|
}
|
|
|
|
@test "mole unknown command returns error" {
|
|
run env HOME="$HOME" "$PROJECT_ROOT/mole" unknown-command
|
|
[ "$status" -ne 0 ]
|
|
[[ "$output" == *"Unknown command: unknown-command"* ]]
|
|
}
|
|
|
|
@test "touchid status reports current configuration" {
|
|
# Don't test actual Touch ID config (system-dependent, may trigger prompts)
|
|
# Just verify the command exists and can run
|
|
run env HOME="$HOME" "$PROJECT_ROOT/mole" touchid status
|
|
[ "$status" -eq 0 ]
|
|
# Should output either "enabled" or "not configured" message
|
|
[[ "$output" == *"Touch ID"* ]]
|
|
}
|
|
|
|
@test "mo optimize command is recognized" {
|
|
# Test that optimize command exists without actually running it
|
|
# Running full optimize in tests is too slow (waits for sudo, runs health checks)
|
|
run bash -c "grep -q '\"optimize\")' '$PROJECT_ROOT/mole'"
|
|
[ "$status" -eq 0 ]
|
|
}
|
|
|
|
@test "mo analyze binary is valid" {
|
|
if [[ -f "$PROJECT_ROOT/bin/analyze-go" ]]; then
|
|
# Verify binary is executable and valid Universal Binary
|
|
[ -x "$PROJECT_ROOT/bin/analyze-go" ]
|
|
run file "$PROJECT_ROOT/bin/analyze-go"
|
|
[[ "$output" == *"Mach-O"* ]] || [[ "$output" == *"executable"* ]]
|
|
else
|
|
skip "analyze-go binary not built"
|
|
fi
|
|
}
|