unset BASH_IT_THEME unset GIT_HOSTING unset NGINX_PATH unset IRC_CLIENT unset TODO unset SCM_CHECK unset BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE export TEST_MAIN_DIR="${BATS_TEST_DIRNAME}/.." export TEST_DEPS_DIR="${TEST_DEPS_DIR-${TEST_MAIN_DIR}/../test_lib}" # be independent of git's system configuration export GIT_CONFIG_NOSYSTEM load "${TEST_DEPS_DIR}/bats-support/load.bash" load "${TEST_DEPS_DIR}/bats-assert/load.bash" load "${TEST_DEPS_DIR}/bats-file/load.bash" local_setup() { true } local_teardown() { true } # This function sets up a local test fixture, i.e. a completely # fresh and isolated Bash-it directory. This is done to avoid # messing with your own Bash-it source directory. # If you need this, call it in your .bats file's `local_setup` function. setup_test_fixture() { mkdir -p "$BASH_IT" lib_directory="$(cd "$(dirname "$0")" && pwd)" # Use rsync to copy Bash-it to the temp folder # rsync is faster than cp, since we can exclude the large ".git" folder rsync -qavrKL -d --delete-excluded --exclude=.git --exclude=enabled $lib_directory/../../../.. "$BASH_IT" rm -rf "$BASH_IT"/enabled rm -rf "$BASH_IT"/aliases/enabled rm -rf "$BASH_IT"/completion/enabled rm -rf "$BASH_IT"/plugins/enabled mkdir -p "$BASH_IT"/enabled mkdir -p "$BASH_IT"/aliases/enabled mkdir -p "$BASH_IT"/completion/enabled mkdir -p "$BASH_IT"/plugins/enabled # Some tests use the BASH_IT_TEST_HOME variable, e.g. install/uninstall export BASH_IT_TEST_HOME="$TEST_TEMP_DIR" } setup() { # Temporarily using `mktemp` directly, since the bats-file function # `temp_make` does not run on macOS TEST_TEMP_DIR="$(mktemp -d -t 'bash-it-test.XXXX')" export TEST_TEMP_DIR export BASH_IT_TEST_DIR="${TEST_TEMP_DIR}/.bash_it" export BASH_IT_ROOT="${BASH_IT_TEST_DIR}/root" export BASH_IT=$BASH_IT_TEST_DIR mkdir -p -- "${BASH_IT_ROOT}" # Some tools, e.g. `git` use configuration files from the $HOME directory, # which interferes with our tests. The only way to keep `git` from doing this # seems to set HOME explicitly to a separate location. # Refer to https://git-scm.com/docs/git-config#FILES. unset XDG_CONFIG_HOME export HOME="${TEST_TEMP_DIR}" mkdir -p "${HOME}" # For `git` tests to run well, user name and email need to be set. # Refer to https://git-scm.com/docs/git-commit#_commit_information. # This goes to the test-specific config, due to the $HOME overridden above. git config --global user.name "John Doe" git config --global user.email "johndoe@example.com" local_setup } teardown() { local_teardown rm -rf "${BASH_IT_TEST_DIR}" temp_del "${TEST_TEMP_DIR}" } # Fail and display path of the link if it does not exist. Also fails # if the path exists, but is not a link. # This function is the logical complement of `assert_file_not_exist'. # There is no dedicated function for checking that a link does not exist. # # Globals: # BATSLIB_FILE_PATH_REM # BATSLIB_FILE_PATH_ADD # Arguments: # $1 - path # Returns: # 0 - link exists and is a link # 1 - otherwise # Outputs: # STDERR - details, on failure assert_link_exist() { local -r file="$1" local -r target="$2" if [[ ! -L "$file" ]]; then local -r rem="$BATSLIB_FILE_PATH_REM" local -r add="$BATSLIB_FILE_PATH_ADD" if [[ -e "$file" ]]; then batslib_print_kv_single 4 'path' "${file/$rem/$add}" \ | batslib_decorate 'exists, but is not a link' \ | fail else batslib_print_kv_single 4 'path' "${file/$rem/$add}" \ | batslib_decorate 'link does not exist' \ | fail fi else if [ -n "$target" ]; then local link_target='' link_target=$(readlink "$file") if [[ "$link_target" != "$target" ]]; then batslib_print_kv_single_or_multi 8 'path' "${file/$rem/$add}" \ 'expected' "$target" \ 'actual' "$link_target" \ | batslib_decorate 'link exists, but does not point to target file' \ | fail fi fi fi }