You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotbare/tests/fcheckout.bats

69 lines
1.6 KiB
Plaintext

4 years ago
#!/usr/bin/env bats
setup() {
export PATH="${BATS_TEST_DIRNAME}:$PATH"
}
4 years ago
help() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fcheckout -h
}
invalid_option() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fcheckout -p
}
checkout_branch() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fcheckout --branch
}
checkout_commit() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fcheckout -c
}
checkout_modified_file() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fcheckout -y
}
checkout_selected_file() {
bash "${BATS_TEST_DIRNAME}"/../dotbare fcheckout --yes -s
}
4 years ago
@test "fcheckout help" {
run help
[ "${status}" -eq 0 ]
[ "${lines[0]}" = "Usage: dotbare fcheckout [-h] [-s] [-b] [-c] [-y] ..." ]
4 years ago
}
@test "fchekcout invalid option" {
run invalid_option
[ "${status}" -eq 1 ]
[ "${lines[0]}" = "Invalid option: -p" ]
}
@test "fchekcout branch" {
run checkout_branch
result=$(echo "${lines[0]}" | tr '`' "'")
[ "${status}" -eq 129 ]
[ "${result}" = "error: unknown option 'branch'" ]
}
@test "fchekcout commit" {
run checkout_commit
result=$(echo "${lines[0]}" | tr '`' "'")
[ "${status}" -eq 129 ]
[ "${result}" = "error: unknown option 'commitshow'" ]
}
@test "fcheckout modified" {
run checkout_modified_file
[ "${status}" -eq 1 ]
[ "${lines[0]}" = "error: pathspec '$HOME/modifiedfile' did not match any file(s) known to git" ]
}
@test "fcheckout select" {
run checkout_selected_file
[ "${status}" -eq 1 ]
[ "${lines[0]}" = "error: pathspec 'commitdiff' did not match any file(s) known to git" ]
[ "${lines[1]}" = "error: pathspec '$HOME/selectgitfile' did not match any file(s) known to git" ]
4 years ago
}