2019-04-01 12:32:53 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# This file is part of solidity.
|
|
|
|
#
|
|
|
|
# solidity is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# solidity is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with solidity. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
#
|
|
|
|
# (c) 2019 solidity contributors.
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
set -e
|
|
|
|
|
2019-04-26 09:57:49 +00:00
|
|
|
# Requires "${REPO_ROOT}/scripts/common.sh" to be included before.
|
2019-04-01 12:32:53 +00:00
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
CURRENT_EVM_VERSION=london
|
|
|
|
|
2019-04-01 12:32:53 +00:00
|
|
|
function verify_input
|
|
|
|
{
|
|
|
|
if [ ! -f "$1" ]; then
|
|
|
|
printError "Usage: $0 <path to soljson.js>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2019-09-25 13:59:52 +00:00
|
|
|
function verify_version_input
|
|
|
|
{
|
|
|
|
if [ -z "$1" ] || [ ! -f "$1" ] || [ -z "$2" ]; then
|
|
|
|
printError "Usage: $0 <path to soljson.js> <version>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function setup
|
|
|
|
{
|
2020-12-01 19:44:21 +00:00
|
|
|
local soljson="$1"
|
|
|
|
local branch="$2"
|
2019-09-25 13:59:52 +00:00
|
|
|
|
2020-12-01 19:44:21 +00:00
|
|
|
setup_solcjs "$DIR" "$soljson" "$branch" "solc"
|
2019-09-25 13:59:52 +00:00
|
|
|
cd solc
|
|
|
|
}
|
|
|
|
|
2019-04-01 12:32:53 +00:00
|
|
|
function setup_solcjs
|
|
|
|
{
|
|
|
|
local dir="$1"
|
|
|
|
local soljson="$2"
|
2021-10-25 12:29:43 +00:00
|
|
|
local branch="${3:-master}"
|
|
|
|
local path="${4:-solc/}"
|
2019-04-01 12:32:53 +00:00
|
|
|
|
|
|
|
cd "$dir"
|
|
|
|
printLog "Setting up solc-js..."
|
2019-09-25 13:59:52 +00:00
|
|
|
git clone --depth 1 -b "$branch" https://github.com/ethereum/solc-js.git "$path"
|
|
|
|
|
|
|
|
cd "$path"
|
|
|
|
|
2019-04-01 12:32:53 +00:00
|
|
|
npm install
|
|
|
|
cp "$soljson" soljson.js
|
|
|
|
SOLCVERSION=$(./solcjs --version)
|
|
|
|
printLog "Using solcjs version $SOLCVERSION"
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
|
|
|
function download_project
|
|
|
|
{
|
|
|
|
local repo="$1"
|
|
|
|
local branch="$2"
|
|
|
|
local dir="$3"
|
|
|
|
|
|
|
|
printLog "Cloning $branch of $repo..."
|
|
|
|
git clone --depth 1 "$repo" -b "$branch" "$dir/ext"
|
|
|
|
cd ext
|
2020-12-01 19:32:12 +00:00
|
|
|
echo "Current commit hash: $(git rev-parse HEAD)"
|
2019-04-01 12:32:53 +00:00
|
|
|
}
|
|
|
|
|
2019-11-29 09:19:17 +00:00
|
|
|
function force_truffle_version
|
|
|
|
{
|
2020-12-01 23:55:12 +00:00
|
|
|
local version="$1"
|
2019-11-29 09:19:17 +00:00
|
|
|
|
2020-12-01 23:55:12 +00:00
|
|
|
sed -i 's/"truffle":\s*".*"/"truffle": "'"$version"'"/g' package.json
|
2019-11-29 09:19:17 +00:00
|
|
|
}
|
|
|
|
|
2019-04-01 12:32:53 +00:00
|
|
|
function replace_version_pragmas
|
|
|
|
{
|
2019-10-25 15:38:29 +00:00
|
|
|
# Replace fixed-version pragmas (part of Consensys best practice).
|
|
|
|
# Include all directories to also cover node dependencies.
|
2019-04-01 12:32:53 +00:00
|
|
|
printLog "Replacing fixed-version pragmas..."
|
2020-11-30 13:01:16 +00:00
|
|
|
find . test -name '*.sol' -type f -print0 | xargs -0 sed -i -E -e 's/pragma solidity [^;]+;/pragma solidity >=0.0;/'
|
2019-04-01 12:32:53 +00:00
|
|
|
}
|
|
|
|
|
2021-10-26 13:00:34 +00:00
|
|
|
function neutralize_package_lock
|
|
|
|
{
|
|
|
|
# Remove lock files (if they exist) to prevent them from overriding our changes in package.json
|
|
|
|
printLog "Removing package lock files..."
|
|
|
|
rm --force --verbose yarn.lock
|
|
|
|
rm --force --verbose package-lock.json
|
|
|
|
}
|
|
|
|
|
2021-10-26 13:39:19 +00:00
|
|
|
function neutralize_package_json_hooks
|
|
|
|
{
|
|
|
|
printLog "Disabling package.json hooks..."
|
|
|
|
[[ -f package.json ]] || fail "package.json not found"
|
|
|
|
sed -i 's|"prepublish": *".*"|"prepublish": ""|g' package.json
|
|
|
|
sed -i 's|"prepare": *".*"|"prepare": ""|g' package.json
|
|
|
|
}
|
|
|
|
|
2021-10-27 14:26:52 +00:00
|
|
|
function force_solc_modules
|
2019-04-01 12:32:53 +00:00
|
|
|
{
|
2021-10-27 14:26:52 +00:00
|
|
|
local custom_solcjs_path="${1:-solc/}"
|
|
|
|
|
|
|
|
[[ -d node_modules/ ]] || assertFail
|
2020-12-08 15:23:37 +00:00
|
|
|
|
2021-10-27 14:26:52 +00:00
|
|
|
printLog "Replacing all installed solc-js with a link to the latest version..."
|
|
|
|
soljson_binaries=$(find node_modules -type f -path "*/solc/soljson.js")
|
|
|
|
for soljson_binary in $soljson_binaries
|
2019-04-01 12:32:53 +00:00
|
|
|
do
|
2021-10-27 14:26:52 +00:00
|
|
|
local solc_module_path
|
|
|
|
solc_module_path=$(dirname "$soljson_binary")
|
|
|
|
|
|
|
|
printLog "Found and replaced solc-js in $solc_module_path"
|
|
|
|
rm -r "$solc_module_path"
|
|
|
|
ln -s "$custom_solcjs_path" "$solc_module_path"
|
2019-04-01 12:32:53 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-12-08 15:23:37 +00:00
|
|
|
function force_truffle_compiler_settings
|
2019-04-01 12:32:53 +00:00
|
|
|
{
|
|
|
|
local config_file="$1"
|
2020-12-08 15:23:37 +00:00
|
|
|
local solc_path="$2"
|
|
|
|
local level="$3"
|
2021-10-25 12:29:43 +00:00
|
|
|
local evm_version="${4:-"$CURRENT_EVM_VERSION"}"
|
2019-04-01 12:32:53 +00:00
|
|
|
|
2020-12-08 15:23:37 +00:00
|
|
|
printLog "Forcing Truffle compiler settings..."
|
2019-04-01 12:32:53 +00:00
|
|
|
echo "-------------------------------------"
|
|
|
|
echo "Config file: $config_file"
|
2020-12-08 15:23:37 +00:00
|
|
|
echo "Compiler path: $solc_path"
|
2020-12-07 19:00:53 +00:00
|
|
|
echo "Optimization level: $level"
|
|
|
|
echo "Optimizer settings: $(optimizer_settings_for_level "$level")"
|
|
|
|
echo "EVM version: $evm_version"
|
2019-04-01 12:32:53 +00:00
|
|
|
echo "-------------------------------------"
|
|
|
|
|
|
|
|
# Forcing the settings should always work by just overwriting the solc object. Forcing them by using a
|
|
|
|
# dedicated settings objects should only be the fallback.
|
2020-12-08 15:23:37 +00:00
|
|
|
echo "module.exports['compilers'] = $(truffle_compiler_settings "$solc_path" "$level" "$evm_version");" >> "$config_file"
|
2019-04-01 12:32:53 +00:00
|
|
|
}
|
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
function truffle_verify_compiler_version
|
2019-04-01 12:32:53 +00:00
|
|
|
{
|
|
|
|
local solc_version="$1"
|
2021-10-25 12:29:43 +00:00
|
|
|
local full_solc_version="$2"
|
2019-04-01 12:32:53 +00:00
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
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."
|
2019-04-01 12:32:53 +00:00
|
|
|
}
|
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
function truffle_clean
|
2019-04-01 12:32:53 +00:00
|
|
|
{
|
2021-10-25 12:29:43 +00:00
|
|
|
rm -rf build/
|
2019-04-01 12:32:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function run_test
|
|
|
|
{
|
|
|
|
local compile_fn="$1"
|
|
|
|
local test_fn="$2"
|
|
|
|
|
2019-10-25 15:38:29 +00:00
|
|
|
replace_version_pragmas
|
2019-10-28 11:12:52 +00:00
|
|
|
|
2019-09-25 13:59:52 +00:00
|
|
|
printLog "Running compile function..."
|
|
|
|
$compile_fn
|
|
|
|
|
|
|
|
printLog "Running test function..."
|
|
|
|
$test_fn
|
|
|
|
}
|
|
|
|
|
2021-10-28 09:58:47 +00:00
|
|
|
function optimizer_settings_for_level
|
|
|
|
{
|
2020-12-07 19:00:53 +00:00
|
|
|
local level="$1"
|
|
|
|
|
|
|
|
case "$level" in
|
|
|
|
1) echo "{enabled: false}" ;;
|
|
|
|
2) echo "{enabled: true}" ;;
|
|
|
|
3) echo "{enabled: true, details: {yul: true}}" ;;
|
|
|
|
*)
|
|
|
|
printError "Optimizer level not found. Please define OPTIMIZER_LEVEL=[1, 2, 3]"
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
2021-10-28 09:58:47 +00:00
|
|
|
function truffle_compiler_settings
|
|
|
|
{
|
2020-12-08 15:21:46 +00:00
|
|
|
local solc_path="$1"
|
|
|
|
local level="$2"
|
|
|
|
local evm_version="$3"
|
|
|
|
|
|
|
|
echo "{"
|
|
|
|
echo " solc: {"
|
|
|
|
echo " version: \"${solc_path}\","
|
|
|
|
echo " settings: {"
|
|
|
|
echo " optimizer: $(optimizer_settings_for_level "$level"),"
|
|
|
|
echo " evmVersion: \"${evm_version}\""
|
|
|
|
echo " }"
|
|
|
|
echo " }"
|
|
|
|
echo "}"
|
|
|
|
}
|
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
function compile_and_run_test
|
2019-09-25 13:59:52 +00:00
|
|
|
{
|
2021-10-25 12:29:43 +00:00
|
|
|
local compile_fn="$1"
|
|
|
|
local test_fn="$2"
|
|
|
|
local verify_fn="$3"
|
2019-09-25 13:59:52 +00:00
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
printLog "Running compile function..."
|
|
|
|
$compile_fn
|
|
|
|
$verify_fn "$SOLCVERSION_SHORT" "$SOLCVERSION"
|
2019-04-01 12:32:53 +00:00
|
|
|
|
2021-10-25 12:29:43 +00:00
|
|
|
if [[ "$COMPILE_ONLY" == 1 ]]; then
|
|
|
|
printLog "Skipping test function..."
|
|
|
|
else
|
|
|
|
printLog "Running test function..."
|
|
|
|
$test_fn
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function truffle_run_test
|
|
|
|
{
|
|
|
|
local config_file="$1"
|
|
|
|
local solc_path="$2"
|
|
|
|
local optimizer_level="$3"
|
|
|
|
local compile_fn="$4"
|
|
|
|
local test_fn="$5"
|
|
|
|
|
|
|
|
truffle_clean
|
|
|
|
force_truffle_compiler_settings "$config_file" "$solc_path" "$optimizer_level"
|
|
|
|
compile_and_run_test compile_fn test_fn truffle_verify_compiler_version
|
2019-04-01 12:32:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function external_test
|
|
|
|
{
|
|
|
|
local name="$1"
|
|
|
|
local main_fn="$2"
|
|
|
|
|
|
|
|
printTask "Testing $name..."
|
|
|
|
echo "==========================="
|
2021-10-26 10:50:30 +00:00
|
|
|
DIR=$(mktemp -d -t "ext-test-${name}-XXXXXX")
|
2019-04-01 12:32:53 +00:00
|
|
|
(
|
|
|
|
if [ -z "$main_fn" ]; then
|
|
|
|
printError "Test main function not defined."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
$main_fn
|
|
|
|
)
|
|
|
|
rm -rf "$DIR"
|
|
|
|
echo "Done."
|
|
|
|
}
|