2017-08-23 12:21:15 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Bash script to run external Solidity tests.
|
|
|
|
#
|
|
|
|
# Argument: Path to soljson.js to test.
|
|
|
|
#
|
|
|
|
# Requires npm, networking access and git to download the tests.
|
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# 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) 2016 solidity contributors.
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ ! -f "$1" ]
|
|
|
|
then
|
|
|
|
echo "Usage: $0 <path to soljson.js>"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
SOLJSON="$1"
|
|
|
|
|
2017-08-25 13:41:41 +00:00
|
|
|
function test_truffle
|
|
|
|
{
|
|
|
|
name="$1"
|
|
|
|
repo="$2"
|
2018-06-12 20:49:46 +00:00
|
|
|
branch="$3"
|
2017-08-25 13:41:41 +00:00
|
|
|
echo "Running $name tests..."
|
|
|
|
DIR=$(mktemp -d)
|
|
|
|
(
|
2019-02-26 11:21:57 +00:00
|
|
|
cd "$DIR"
|
|
|
|
git clone --depth 1 -b v0.5.0 https://github.com/ethereum/solc-js.git solc
|
|
|
|
SOLCVERSION="UNDEFINED"
|
|
|
|
|
|
|
|
cd solc
|
|
|
|
npm install
|
|
|
|
cp "$SOLJSON" soljson.js
|
|
|
|
SOLCVERSION=$(./solcjs --version)
|
|
|
|
cd ..
|
|
|
|
echo "Using solcjs version $SOLCVERSION"
|
|
|
|
|
2018-06-12 20:49:46 +00:00
|
|
|
if [ -n "$branch" ]
|
|
|
|
then
|
|
|
|
echo "Cloning $branch of $repo..."
|
2019-02-26 11:21:57 +00:00
|
|
|
git clone --depth 1 "$repo" -b "$branch" "$DIR/ext"
|
2018-06-12 20:49:46 +00:00
|
|
|
else
|
|
|
|
echo "Cloning $repo..."
|
2019-02-26 11:21:57 +00:00
|
|
|
git clone --depth 1 "$repo" "$DIR/ext"
|
2018-06-12 20:49:46 +00:00
|
|
|
fi
|
2019-02-26 11:21:57 +00:00
|
|
|
cd ext
|
2018-06-12 20:49:46 +00:00
|
|
|
echo "Current commit hash: `git rev-parse HEAD`"
|
2019-02-27 11:37:53 +00:00
|
|
|
npm ci
|
2019-01-21 22:33:41 +00:00
|
|
|
# Replace solc package by v0.5.0
|
2018-10-31 12:39:32 +00:00
|
|
|
for d in node_modules node_modules/truffle/node_modules
|
|
|
|
do
|
|
|
|
(
|
2019-01-22 16:45:49 +00:00
|
|
|
if [ -d "$d" ]
|
|
|
|
then
|
|
|
|
cd $d
|
|
|
|
rm -rf solc
|
|
|
|
git clone --depth 1 -b v0.5.0 https://github.com/ethereum/solc-js.git solc
|
2019-02-26 11:21:57 +00:00
|
|
|
cp "$SOLJSON" solc/soljson.js
|
2019-01-22 16:45:49 +00:00
|
|
|
fi
|
2018-10-31 12:39:32 +00:00
|
|
|
)
|
|
|
|
done
|
2018-07-28 10:55:31 +00:00
|
|
|
if [ "$name" == "Zeppelin" -o "$name" == "Gnosis" ]; then
|
2018-06-12 20:49:46 +00:00
|
|
|
echo "Replaced fixed-version pragmas..."
|
2017-09-19 12:39:59 +00:00
|
|
|
# Replace fixed-version pragmas in Gnosis (part of Consensys best practice)
|
2018-09-17 16:38:01 +00:00
|
|
|
find contracts test -name '*.sol' -type f -print0 | xargs -0 sed -i -e 's/pragma solidity [\^0-9\.]*/pragma solidity >=0.0/'
|
2017-09-19 12:39:59 +00:00
|
|
|
fi
|
2019-02-26 11:21:57 +00:00
|
|
|
# Change "compileStandard" to "compile" (needed for pre-5.x Truffle)
|
2018-10-31 12:39:32 +00:00
|
|
|
sed -i s/solc.compileStandard/solc.compile/ "node_modules/truffle/build/cli.bundled.js"
|
2019-02-26 11:21:57 +00:00
|
|
|
# Force usage of correct solidity binary (only works with Truffle 5.x)
|
|
|
|
cat >> truffle*.js <<EOF
|
|
|
|
module.exports['compilers'] = {solc: {version: "$DIR/solc"} };
|
|
|
|
EOF
|
|
|
|
|
2018-12-14 21:16:53 +00:00
|
|
|
npx truffle compile
|
2019-02-26 11:21:57 +00:00
|
|
|
echo "Verify that the correct version ($SOLCVERSION) of the compiler was used to compile the contracts..."
|
|
|
|
grep -e "$SOLCVERSION" -r build/contracts > /dev/null
|
2017-08-25 13:41:41 +00:00
|
|
|
npm run test
|
|
|
|
)
|
|
|
|
rm -rf "$DIR"
|
|
|
|
}
|
|
|
|
|
2018-09-27 01:00:36 +00:00
|
|
|
# Since Zeppelin 2.1.1 it supports Solidity 0.5.0.
|
|
|
|
test_truffle Zeppelin https://github.com/OpenZeppelin/openzeppelin-solidity.git master
|
2018-06-21 19:51:28 +00:00
|
|
|
|
|
|
|
# Disabled temporarily as it needs to be updated to latest Truffle first.
|
|
|
|
#test_truffle Gnosis https://github.com/axic/pm-contracts.git solidity-050
|
2018-12-14 21:16:53 +00:00
|
|
|
|
2019-03-04 13:21:59 +00:00
|
|
|
# Disabled temporarily because it is incompatible with petersburg EVM and
|
|
|
|
# there is no easy way to set the EVM version in truffle pre 5.0.
|
|
|
|
#test_truffle GnosisSafe https://github.com/gnosis/safe-contracts.git development
|