mirror of
https://github.com/kazhala/dotbare
synced 2024-11-02 09:40:27 +00:00
542bc0838c
fix: test .. test: improve wording and variable names in test .. ..
81 lines
1.6 KiB
Bash
Executable File
81 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bats
|
|
|
|
setup() {
|
|
export DOTBARE_BACKUP="$HOME/.local/share/dotbare_test"
|
|
export DOTBARE_DIR="${HOME}/.cfg/"
|
|
}
|
|
|
|
teardown() {
|
|
[ -d "${DOTBARE_BACKUP}" ] && rm -r "${DOTBARE_BACKUP}"
|
|
unset DOTBARE_BACKUP
|
|
}
|
|
|
|
help() {
|
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fbackup -h
|
|
}
|
|
|
|
invalid_option() {
|
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fbackup -f
|
|
}
|
|
|
|
backup() {
|
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fbackup
|
|
}
|
|
|
|
individual_backup() {
|
|
cd "${BATS_TEST_DIRNAME}"
|
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fbackup -p fadd.bats
|
|
}
|
|
|
|
move_file() {
|
|
touch bats_test.txt
|
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fbackup --path bats_test.txt -m
|
|
}
|
|
|
|
select_file() {
|
|
export PATH="${BATS_TEST_DIRNAME}:$PATH"
|
|
bash "${BATS_TEST_DIRNAME}"/../dotbare fbackup --select
|
|
}
|
|
|
|
@test "fbackup help" {
|
|
run help
|
|
[ "${status}" -eq 0 ]
|
|
}
|
|
|
|
@test "fbackup invalid option" {
|
|
run invalid_option
|
|
[ "${status}" -eq 1 ]
|
|
[ "${lines[0]}" = 'Invalid option: -f' ]
|
|
}
|
|
|
|
@test "fbackup backup all files" {
|
|
if ! "${BATS_TEST_DIRNAME}"/../dotbare log &>/dev/null; then
|
|
run backup
|
|
[ "${status}" -eq 1 ]
|
|
else
|
|
run backup
|
|
[ "${status}" -eq 0 ]
|
|
[ -f "${DOTBARE_BACKUP}"/.bashrc ]
|
|
fi
|
|
}
|
|
|
|
@test "fbackup backup individual file" {
|
|
run individual_backup
|
|
[ "${status}" -eq 0 ]
|
|
[ -f "${DOTBARE_BACKUP}"/fadd.bats ]
|
|
}
|
|
|
|
@test "fbackup move file" {
|
|
run move_file
|
|
[ "${status}" -eq 0 ]
|
|
[ -f "${DOTBARE_BACKUP}"/bats_test.txt ]
|
|
[ ! -f "${BATS_TEST_DIRNAME}"/bats_test.txt ]
|
|
}
|
|
|
|
@test "fbackup select file" {
|
|
run select_file
|
|
[ "${status}" -eq 1 ]
|
|
[[ "${output}" =~ 'No such file or directory' ]]
|
|
[[ "${output}" =~ 'fbackup_select_file' ]]
|
|
}
|