2
0
mirror of https://github.com/kazhala/dotbare synced 2024-11-02 09:40:27 +00:00
dotbare/tests/finit.bats

50 lines
1.0 KiB
Plaintext
Raw Normal View History

2020-05-13 02:02:58 +00:00
#!/usr/bin/env bats
setup() {
export confirm='y'
export DOTBARE_DIR="$HOME/.local/share/dotbare_test/.cfg"
export DOTBARE_TREE="$HOME/.local/share/dotbare_test"
}
teardown() {
unset confirm
2020-05-13 02:19:38 +00:00
if [[ "${DOTBARE_DIR}" == "$HOME/.local/share/dotbare_test/.cfg" ]] \
&& [[ "${DOTBARE_TREE}" == "$HOME/.local/share/dotbare_test" ]]; then
rm -rf "${DOTBARE_TREE}"
fi
2020-05-13 03:23:36 +00:00
unset DOTBARE_DIR
unset DOTBARE_TREE
2020-05-13 02:02:58 +00:00
}
help() {
bash "${BATS_TEST_DIRNAME}"/../dotbare finit -h
}
init() {
bash "${BATS_TEST_DIRNAME}"/../dotbare finit
}
migration() {
bash "${BATS_TEST_DIRNAME}"/../dotbare finit -u https://github.com/kazhala/dotfiles.git
}
@test "finit help" {
run help
2020-05-13 04:55:44 +00:00
[ "${status}" -eq 1 ]
2020-05-13 03:52:28 +00:00
[ "${lines[0]}" = "Usage: dotbare finit [-h] [-u URL] ..." ]
2020-05-13 02:02:58 +00:00
}
2020-05-13 03:41:58 +00:00
@test "finit init dotbare" {
2020-05-13 02:02:58 +00:00
run init
[ "${status}" -eq 0 ]
run init
[ "${status}" -eq 1 ]
[ "${lines[3]}" = "${DOTBARE_DIR} already exist" ]
}
2020-05-13 03:41:58 +00:00
@test "finit migration" {
2020-05-13 02:19:38 +00:00
[[ -d "${DOTBARE_DIR}" ]] && rm -rf "${DOTBARE_DIR}"
2020-05-13 02:02:58 +00:00
run migration
[ "${status}" -eq 0 ]
}