Refactored test setup code
Removed the copy/paste code, moved it into a reusable function that can be called from the `local_setup` function as needed. Also simplified the handling of the $HOME variable since @rico-chet provided a better way of doing this.pull/1559/head
parent
34993f5da3
commit
818a95d79c
|
|
@ -4,36 +4,10 @@ load ../test_helper
|
||||||
load ../../lib/composure
|
load ../../lib/composure
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
lib_directory="$(cd "$(dirname "$0")" && pwd)"
|
|
||||||
echo "Bi : $BASH_IT"
|
|
||||||
echo "Lib: $lib_directory"
|
|
||||||
# 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
|
|
||||||
|
|
||||||
# Copy the test fixture to the Bash-it folder
|
# Copy the test fixture to the Bash-it folder
|
||||||
rsync -a "$BASH_IT/test/fixtures/bash_it/" "$BASH_IT/"
|
rsync -a "$BASH_IT/test/fixtures/bash_it/" "$BASH_IT/"
|
||||||
|
|
||||||
# Don't pollute the user's actual $HOME directory
|
|
||||||
# Use a test home directory instead
|
|
||||||
export BASH_IT_TEST_CURRENT_HOME="${HOME}"
|
|
||||||
export BASH_IT_TEST_HOME="$(cd "${BASH_IT}/.." && pwd)/BASH_IT_TEST_HOME"
|
|
||||||
mkdir -p "${BASH_IT_TEST_HOME}"
|
|
||||||
export HOME="${BASH_IT_TEST_HOME}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function local_teardown {
|
|
||||||
export HOME="${BASH_IT_TEST_CURRENT_HOME}"
|
|
||||||
|
|
||||||
rm -rf "${BASH_IT_TEST_HOME}"
|
|
||||||
|
|
||||||
assert_equal "${BASH_IT_TEST_CURRENT_HOME}" "${HOME}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "bash-it: verify that the test fixture is available" {
|
@test "bash-it: verify that the test fixture is available" {
|
||||||
|
|
|
||||||
|
|
@ -5,36 +5,7 @@ load ../../lib/composure
|
||||||
load ../../completion/available/bash-it.completion
|
load ../../completion/available/bash-it.completion
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
|
|
||||||
# Don't pollute the user's actual $HOME directory
|
|
||||||
# Use a test home directory instead
|
|
||||||
export BASH_IT_TEST_CURRENT_HOME="${HOME}"
|
|
||||||
export BASH_IT_TEST_HOME="$(cd "${BASH_IT}/.." && pwd)/BASH_IT_TEST_HOME"
|
|
||||||
mkdir -p "${BASH_IT_TEST_HOME}"
|
|
||||||
export HOME="${BASH_IT_TEST_HOME}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function local_teardown {
|
|
||||||
export HOME="${BASH_IT_TEST_CURRENT_HOME}"
|
|
||||||
|
|
||||||
rm -rf "${BASH_IT_TEST_HOME}"
|
|
||||||
|
|
||||||
assert_equal "${BASH_IT_TEST_CURRENT_HOME}" "${HOME}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "completion bash-it: ensure that the _bash-it-comp function is available" {
|
@test "completion bash-it: ensure that the _bash-it-comp function is available" {
|
||||||
|
|
|
||||||
|
|
@ -14,31 +14,7 @@ case $OSTYPE in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
|
|
||||||
# Don't pollute the user's actual $HOME directory
|
|
||||||
# Use a test home directory instead
|
|
||||||
export BASH_IT_TEST_CURRENT_HOME="${HOME}"
|
|
||||||
export BASH_IT_TEST_HOME="$(cd "${BASH_IT}/.." && pwd)/BASH_IT_TEST_HOME"
|
|
||||||
mkdir -p "${BASH_IT_TEST_HOME}"
|
|
||||||
export HOME="${BASH_IT_TEST_HOME}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function local_teardown {
|
|
||||||
export HOME="${BASH_IT_TEST_CURRENT_HOME}"
|
|
||||||
|
|
||||||
rm -rf "${BASH_IT_TEST_HOME}"
|
|
||||||
|
|
||||||
assert_equal "${BASH_IT_TEST_CURRENT_HOME}" "${HOME}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "install: verify that the install script exists" {
|
@test "install: verify that the install script exists" {
|
||||||
|
|
|
||||||
|
|
@ -14,31 +14,7 @@ case $OSTYPE in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
|
|
||||||
# Don't pollute the user's actual $HOME directory
|
|
||||||
# Use a test home directory instead
|
|
||||||
export BASH_IT_TEST_CURRENT_HOME="${HOME}"
|
|
||||||
export BASH_IT_TEST_HOME="$(cd "${BASH_IT}/.." && pwd)/BASH_IT_TEST_HOME"
|
|
||||||
mkdir -p "${BASH_IT_TEST_HOME}"
|
|
||||||
export HOME="${BASH_IT_TEST_HOME}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function local_teardown {
|
|
||||||
export HOME="${BASH_IT_TEST_CURRENT_HOME}"
|
|
||||||
|
|
||||||
rm -rf "${BASH_IT_TEST_HOME}"
|
|
||||||
|
|
||||||
assert_equal "${BASH_IT_TEST_CURRENT_HOME}" "${HOME}"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "uninstall: verify that the uninstall script exists" {
|
@test "uninstall: verify that the uninstall script exists" {
|
||||||
|
|
|
||||||
|
|
@ -11,21 +11,7 @@ cite _about _param _example _group _author _version
|
||||||
load ../../lib/helpers
|
load ../../lib/helpers
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# TODO Create global __is_enabled function
|
# TODO Create global __is_enabled function
|
||||||
|
|
|
||||||
|
|
@ -18,22 +18,7 @@ cite _about _param _example _group _author _version
|
||||||
load ../../lib/helpers
|
load ../../lib/helpers
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
rm -rf "$BASH_IT"/tmp/cache
|
|
||||||
|
|
||||||
mkdir -p "$BASH_IT"/enabled
|
|
||||||
mkdir -p "$BASH_IT"/aliases/enabled
|
|
||||||
mkdir -p "$BASH_IT"/completion/enabled
|
|
||||||
mkdir -p "$BASH_IT"/plugins/enabled
|
|
||||||
|
|
||||||
export OLD_PATH="$PATH"
|
export OLD_PATH="$PATH"
|
||||||
export PATH="/usr/bin:/bin:/usr/sbin"
|
export PATH="/usr/bin:/bin:/usr/sbin"
|
||||||
|
|
|
||||||
|
|
@ -9,22 +9,7 @@ load ../../lib/search
|
||||||
cite _about _param _example _group _author _version
|
cite _about _param _example _group _author _version
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
rm -rf "$BASH_IT"/tmp/cache
|
|
||||||
|
|
||||||
mkdir -p "$BASH_IT"/enabled
|
|
||||||
mkdir -p "$BASH_IT"/aliases/enabled
|
|
||||||
mkdir -p "$BASH_IT"/completion/enabled
|
|
||||||
mkdir -p "$BASH_IT"/plugins/enabled
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function has_match() {
|
function has_match() {
|
||||||
|
|
|
||||||
|
|
@ -6,21 +6,7 @@ load ../../lib/composure
|
||||||
load ../../plugins/available/ruby.plugin
|
load ../../plugins/available/ruby.plugin
|
||||||
|
|
||||||
function local_setup {
|
function local_setup {
|
||||||
mkdir -p "$BASH_IT"
|
setup_test_fixture
|
||||||
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
|
|
||||||
|
|
||||||
export OLD_PATH="$PATH"
|
export OLD_PATH="$PATH"
|
||||||
export PATH="/usr/bin:/bin:/usr/sbin"
|
export PATH="/usr/bin:/bin:/usr/sbin"
|
||||||
|
|
|
||||||
|
|
@ -6,34 +6,12 @@ unset TODO
|
||||||
unset SCM_CHECK
|
unset SCM_CHECK
|
||||||
unset BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE
|
unset BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE
|
||||||
|
|
||||||
BASH_IT_TEST_DIR="${BATS_TMPDIR}/.bash_it"
|
|
||||||
|
|
||||||
# guard against executing this block twice due to bats internals
|
|
||||||
if [ "$BASH_IT_ROOT" != "${BASH_IT_TEST_DIR}/root" ]; then
|
|
||||||
export BASH_IT_ROOT="${BASH_IT_TEST_DIR}/root"
|
|
||||||
export BASH_IT=$BASH_IT_TEST_DIR
|
|
||||||
fi
|
|
||||||
|
|
||||||
export TEST_MAIN_DIR="${BATS_TEST_DIRNAME}/.."
|
export TEST_MAIN_DIR="${BATS_TEST_DIRNAME}/.."
|
||||||
export TEST_DEPS_DIR="${TEST_DEPS_DIR-${TEST_MAIN_DIR}/../test_lib}"
|
export TEST_DEPS_DIR="${TEST_DEPS_DIR-${TEST_MAIN_DIR}/../test_lib}"
|
||||||
|
|
||||||
# be independent of git's system configuration
|
# be independent of git's system configuration
|
||||||
export GIT_CONFIG_NOSYSTEM
|
export GIT_CONFIG_NOSYSTEM
|
||||||
|
|
||||||
# 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="${BATS_TMPDIR}/home"
|
|
||||||
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"
|
|
||||||
|
|
||||||
load "${TEST_DEPS_DIR}/bats-support/load.bash"
|
load "${TEST_DEPS_DIR}/bats-support/load.bash"
|
||||||
load "${TEST_DEPS_DIR}/bats-assert/load.bash"
|
load "${TEST_DEPS_DIR}/bats-assert/load.bash"
|
||||||
load "${TEST_DEPS_DIR}/bats-file/load.bash"
|
load "${TEST_DEPS_DIR}/bats-file/load.bash"
|
||||||
|
|
@ -46,9 +24,56 @@ local_teardown() {
|
||||||
true
|
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() {
|
setup() {
|
||||||
|
TEST_TEMP_DIR="$(mktemp -d -t 'bash-it-test')"
|
||||||
|
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}"
|
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
|
local_setup
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -56,6 +81,7 @@ teardown() {
|
||||||
local_teardown
|
local_teardown
|
||||||
|
|
||||||
rm -rf "${BASH_IT_TEST_DIR}"
|
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
|
# Fail and display path of the link if it does not exist. Also fails
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue