-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Added back test for latestallowed.
- Loading branch information
1 parent
ec21220
commit 7664815
Showing
1 changed file
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -uo pipefail; | ||
|
||
#################################### | ||
# Ensure we can execute standalone # | ||
#################################### | ||
|
||
function early_death() { | ||
echo "[FATAL] ${0}: ${1}" >&2; | ||
exit 1; | ||
}; | ||
|
||
if [ -z "${TFENV_ROOT:-""}" ]; then | ||
# http://stackoverflow.com/questions/1055671/how-can-i-get-the-behavior-of-gnus-readlink-f-on-a-mac | ||
readlink_f() { | ||
local target_file="${1}"; | ||
local file_name; | ||
|
||
while [ "${target_file}" != "" ]; do | ||
cd "$(dirname ${target_file})" || early_death "Failed to 'cd \$(dirname ${target_file})' while trying to determine TFENV_ROOT"; | ||
file_name="$(basename "${target_file}")" || early_death "Failed to 'basename \"${target_file}\"' while trying to determine TFENV_ROOT"; | ||
target_file="$(readlink "${file_name}")"; | ||
done; | ||
|
||
echo "$(pwd -P)/${file_name}"; | ||
}; | ||
|
||
TFENV_ROOT="$(cd "$(dirname "$(readlink_f "${0}")")/.." && pwd)"; | ||
[ -n ${TFENV_ROOT} ] || early_death "Failed to 'cd \"\$(dirname \"\$(readlink_f \"${0}\")\")/..\" && pwd' while trying to determine TFENV_ROOT"; | ||
else | ||
TFENV_ROOT="${TFENV_ROOT%/}"; | ||
fi; | ||
export TFENV_ROOT; | ||
|
||
if [ -n "${TFENV_HELPERS:-""}" ]; then | ||
log 'debug' 'TFENV_HELPERS is set, not sourcing helpers again'; | ||
else | ||
[ "${TFENV_DEBUG:-0}" -gt 0 ] && echo "[DEBUG] Sourcing helpers from ${TFENV_ROOT}/lib/helpers.sh"; | ||
if source "${TFENV_ROOT}/lib/helpers.sh"; then | ||
log 'debug' 'Helpers sourced successfully'; | ||
else | ||
early_death "Failed to source helpers from ${TFENV_ROOT}/lib/helpers.sh"; | ||
fi; | ||
fi; | ||
|
||
##################### | ||
# Begin Script Body # | ||
##################### | ||
|
||
declare -a errors=(); | ||
|
||
cleanup || log 'error' 'Cleanup failed?!'; | ||
|
||
|
||
log 'info' '### Install latest-allowed normal version (#.#.#)'; | ||
|
||
echo "terraform { | ||
required_version = \"~> 1.1.0\" | ||
}" > latest_allowed.tf; | ||
|
||
( | ||
tfenv install latest-allowed; | ||
tfenv use latest-allowed; | ||
check_active_version 1.1.9; | ||
) || error_and_proceed 'Latest allowed version does not match'; | ||
|
||
cleanup || log 'error' 'Cleanup failed?!'; | ||
|
||
|
||
log 'info' '### Install latest-allowed tagged version (#.#.#-tag#)' | ||
|
||
echo "terraform { | ||
required_version = \"<=0.13.0-rc1\" | ||
}" > latest_allowed.tf; | ||
|
||
( | ||
tfenv install latest-allowed; | ||
tfenv use latest-allowed; | ||
check_active_version 0.13.0-rc1; | ||
) || error_and_proceed 'Latest allowed tagged-version does not match'; | ||
|
||
cleanup || log 'error' 'Cleanup failed?!'; | ||
|
||
|
||
log 'info' '### Install latest-allowed incomplete version (#.#.<missing>)' | ||
|
||
echo "terraform { | ||
required_version = \"~> 0.12\" | ||
}" >> latest_allowed.tf; | ||
|
||
( | ||
tfenv install latest-allowed; | ||
tfenv use latest-allowed; | ||
check_active_version 0.15.5; | ||
) || error_and_proceed 'Latest allowed incomplete-version does not match'; | ||
|
||
cleanup || log 'error' 'Cleanup failed?!'; | ||
|
||
|
||
log 'info' '### Install latest-allowed with TFENV_AUTO_INSTALL'; | ||
|
||
echo "terraform { | ||
required_version = \"~> 1.0.0\" | ||
}" >> latest_allowed.tf; | ||
echo 'latest-allowed' > .terraform-version; | ||
|
||
( | ||
TFENV_AUTO_INSTALL=true terraform version; | ||
check_active_version 1.0.11; | ||
) || error_and_proceed 'Latest allowed auto-installed version does not match'; | ||
|
||
cleanup || log 'error' 'Cleanup failed?!'; | ||
|
||
|
||
log 'info' '### Install latest-allowed with TFENV_AUTO_INSTALL & -chdir'; | ||
|
||
mkdir -p chdir-dir | ||
echo "terraform { | ||
required_version = \"~> 0.14.3\" | ||
}" >> chdir-dir/latest_allowed.tf; | ||
echo 'latest-allowed' > chdir-dir/.terraform-version | ||
|
||
( | ||
TFENV_AUTO_INSTALL=true terraform -chdir=chdir-dir version; | ||
check_active_version 0.14.11 chdir-dir; | ||
) || error_and_proceed 'Latest allowed version from -chdir does not match'; | ||
|
||
cleanup || log 'error' 'Cleanup failed?!'; | ||
|
||
if [ "${#errors[@]}" -gt 0 ]; then | ||
log 'warn' '===== The following use_latestallowed tests failed ====='; | ||
for error in "${errors[@]}"; do | ||
log 'warn' "\t${error}"; | ||
done; | ||
log 'error' 'use_latestallowed test failure(s)'; | ||
else | ||
log 'info' 'All use_latestallowed tests passed.'; | ||
fi; | ||
|
||
exit 0; |