git-secret/tests/test_usage.bats
Josh Rabinowitz 9e8438236c
Issue 554 show gpg commands (#556)
* show most gpg commands used for 'hide', 'reveal', 'tell' and 'killperson (#554)
* fix hang when using ctrl-c during tests (#558)
2019-10-09 13:39:59 -04:00

46 lines
910 B
Bash

#!/usr/bin/env bats
load _test_base
function setup {
set_state_initial
set_state_git
}
function teardown {
unset_current_state
}
@test "run 'usage'" {
run_wrapper git secret usage
[ "$status" -eq 0 ]
}
@test "run 'usage' without '.git'" {
remove_git_repository
# It's ok for 'usage' to succeed when there's no .git directory, but it doesn't
run_wrapper git secret usage
[ "$status" -eq 1 ]
}
#_SECRETS_DIR=${SECRETS_DIR:-".gitsecret"}
@test "run 'usage' with ignored '${_SECRETS_DIR}'" {
echo "${_SECRETS_DIR}" >> ".gitignore"
# below shows how to send 'diagnostic' messages to bats-core.
#echo "# clear-line-output" >&3
#echo "# SECRETS_DIR is ${_SECRETS_DIR}" >&3
# It's ok for 'usage' to succeed when the .gitsecret directory is ignored, but it doesn't
run_wrapper git secret usage
#echo "# git secret usage -> status $status" >&3
[ "$status" -eq 1 ]
}