externalTests: Refactor to be more explicit and easier to adjust for special cases

This commit is contained in:
Kamil Śliwak
2021-11-08 16:37:23 +01:00
parent 7ccdbd5b08
commit b57c0a0b81
7 changed files with 125 additions and 83 deletions
+37 -53
View File
@@ -22,6 +22,8 @@ set -e
# Requires "${REPO_ROOT}/scripts/common.sh" to be included before.
CURRENT_EVM_VERSION=london
function verify_input
{
if [ ! -f "$1" ]; then
@@ -51,8 +53,8 @@ function setup_solcjs
{
local dir="$1"
local soljson="$2"
local branch="$3"
local path="$4"
local branch="${3:-master}"
local path="${4:-solc/}"
cd "$dir"
printLog "Setting up solc-js..."
@@ -86,16 +88,6 @@ function force_truffle_version
sed -i 's/"truffle":\s*".*"/"truffle": "'"$version"'"/g' package.json
}
function truffle_setup
{
local soljson="$1"
local repo="$2"
local branch="$3"
setup_solcjs "$DIR" "$soljson" "master" "solc"
download_project "$repo" "$branch" "$DIR"
}
function replace_version_pragmas
{
# Replace fixed-version pragmas (part of Consensys best practice).
@@ -131,7 +123,7 @@ function force_truffle_compiler_settings
local config_file="$1"
local solc_path="$2"
local level="$3"
local evm_version="$4"
local evm_version="${4:-"$CURRENT_EVM_VERSION"}"
printLog "Forcing Truffle compiler settings..."
echo "-------------------------------------"
@@ -147,30 +139,18 @@ function force_truffle_compiler_settings
echo "module.exports['compilers'] = $(truffle_compiler_settings "$solc_path" "$level" "$evm_version");" >> "$config_file"
}
function verify_compiler_version
function truffle_verify_compiler_version
{
local solc_version="$1"
local full_solc_version="$2"
printLog "Verify that the correct version ($solc_version) of the compiler was used to compile the contracts..."
grep -e "$solc_version" -r build/contracts > /dev/null
printLog "Verify that the correct version (${solc_version}/${full_solc_version}) of the compiler was used to compile the contracts..."
grep "$full_solc_version" --with-filename --recursive build/contracts || fail "Wrong compiler version detected."
}
function clean
function truffle_clean
{
rm -rf build || true
}
function run_install
{
local soljson="$1"
local init_fn="$2"
printLog "Running install function..."
replace_version_pragmas
force_truffle_solc_modules "$soljson"
force_truffle_compiler_settings "$CONFIG" "${DIR}/solc" "$OPTIMIZER_LEVEL" london
$init_fn
rm -rf build/
}
function run_test
@@ -219,31 +199,35 @@ function truffle_compiler_settings
echo "}"
}
function compile_and_run_test
{
local compile_fn="$1"
local test_fn="$2"
local verify_fn="$3"
printLog "Running compile function..."
$compile_fn
$verify_fn "$SOLCVERSION_SHORT" "$SOLCVERSION"
if [[ "$COMPILE_ONLY" == 1 ]]; then
printLog "Skipping test function..."
else
printLog "Running test function..."
$test_fn
fi
}
function truffle_run_test
{
local soljson="$1"
local compile_fn="$2"
local test_fn="$3"
local config_file="$1"
local solc_path="$2"
local optimizer_level="$3"
local compile_fn="$4"
local test_fn="$5"
replace_version_pragmas
force_truffle_solc_modules "$soljson"
for level in $(seq "$OPTIMIZER_LEVEL" 3)
do
clean
force_truffle_compiler_settings "$CONFIG" "${DIR}/solc" "$level" london
printLog "Running compile function..."
$compile_fn
verify_compiler_version "$SOLCVERSION"
if [[ "$COMPILE_ONLY" == 1 ]]; then
printLog "Skipping test function..."
else
printLog "Running test function..."
$test_fn
fi
done
truffle_clean
force_truffle_compiler_settings "$config_file" "$solc_path" "$optimizer_level"
compile_and_run_test compile_fn test_fn truffle_verify_compiler_version
}
function external_test