mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-30 22:42:15 +00:00
* fix(dfm): update traps and tests * fix(dfm): initialize defaults and secure tests * fix(tests): secure helper quoting and extend install coverage * fix(utils): avoid double extension when resolving command * fix(tests): quote paths and add strict mode * fix(utils): escape function name in regex
57 lines
1.6 KiB
Bash
57 lines
1.6 KiB
Bash
load "$BATS_TEST_DIRNAME/helpers.bash"
|
|
|
|
setup() {
|
|
set -euo pipefail
|
|
PROJECT_ROOT="$BATS_TEST_DIRNAME/../.."
|
|
TEMP_DIR="$(mktemp -d)"
|
|
export TEMP_DIR
|
|
}
|
|
|
|
teardown() {
|
|
[[ -n "${TEMP_DIR:-}" ]] && rm -rf "$TEMP_DIR"
|
|
}
|
|
|
|
@test "list_available_commands shows commands" {
|
|
run_with_dfm main::list_available_commands
|
|
[ "$status" -eq 0 ]
|
|
echo "$output" | grep -q "Available commands"
|
|
echo "$output" | grep -q "install"
|
|
}
|
|
|
|
@test "interactive confirm returns 0 on yes" {
|
|
run_with_dfm 'utils::interactive::confirm "Proceed?" <<< "y"; echo $?'
|
|
[ "$status" -eq 0 ]
|
|
[ "${lines[-1]}" = "0" ]
|
|
}
|
|
|
|
@test "interactive confirm returns 1 on no" {
|
|
run_with_dfm 'utils::interactive::confirm "Proceed?" <<< "n"; echo $?'
|
|
[ "$status" -eq 0 ]
|
|
[ "${lines[-1]}" = "1" ]
|
|
}
|
|
|
|
@test "execute_command runs function" {
|
|
run_with_dfm "main::execute_command install fonts"
|
|
[ "$status" -eq 0 ]
|
|
echo "$output" | grep -q "Installing fonts"
|
|
}
|
|
|
|
@test "execute_command fails on missing function" {
|
|
run_with_dfm "main::execute_command install nofunc >/dev/null 2>&1"
|
|
[ "$status" -eq 1 ]
|
|
}
|
|
|
|
@test "install all respects skip options" {
|
|
run_with_dfm "main::execute_command install all --no-brew --no-cargo --no-automation"
|
|
[ "$status" -eq 0 ]
|
|
echo "$output" | grep -q "Installing fonts"
|
|
[[ "$output" != *"Installing Homebrew"* ]]
|
|
[[ "$output" != *"Rust and cargo packages"* ]]
|
|
}
|
|
|
|
@test "get_function_description returns description" {
|
|
run_with_dfm "main::get_function_description \"$PROJECT_ROOT/local/dfm/cmd/install.sh\" fonts"
|
|
[ "$status" -eq 0 ]
|
|
echo "$output" | grep -q "Install all configured fonts"
|
|
}
|