2017-01-24 22:36:35 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
# Bash script to run commandline Solidity tests.
|
|
|
|
#
|
|
|
|
# The documentation for solidity is hosted at:
|
|
|
|
#
|
|
|
|
# https://solidity.readthedocs.org
|
|
|
|
#
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# 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
|
|
|
|
|
2017-07-12 17:06:36 +00:00
|
|
|
REPO_ROOT=$(cd $(dirname "$0")/.. && pwd)
|
|
|
|
echo $REPO_ROOT
|
2017-01-24 22:36:35 +00:00
|
|
|
SOLC="$REPO_ROOT/build/solc/solc"
|
|
|
|
|
2017-07-19 19:12:49 +00:00
|
|
|
FULLARGS="--optimize --combined-json abi,asm,ast,bin,bin-runtime,clone-bin,compact-format,devdoc,hashes,interface,metadata,opcodes,srcmap,srcmap-runtime,userdoc"
|
|
|
|
|
2017-04-12 13:20:07 +00:00
|
|
|
echo "Checking that the bug list is up to date..."
|
|
|
|
"$REPO_ROOT"/scripts/update_bugs_by_version.py
|
|
|
|
|
2017-07-12 17:06:36 +00:00
|
|
|
echo "Checking that StandardToken.sol, owned.sol and mortal.sol produce bytecode..."
|
|
|
|
output=$("$REPO_ROOT"/build/solc/solc --bin "$REPO_ROOT"/std/*.sol 2>/dev/null | grep "ffff" | wc -l)
|
|
|
|
test "${output//[[:blank:]]/}" = "3"
|
2017-01-24 22:36:35 +00:00
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; }
|
|
|
|
|
|
|
|
function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; }
|
|
|
|
|
2017-07-12 17:06:36 +00:00
|
|
|
function compileFull()
|
|
|
|
{
|
2017-07-19 19:27:05 +00:00
|
|
|
local files="$*"
|
2017-10-05 18:46:38 +00:00
|
|
|
local output failed
|
2017-07-19 19:27:05 +00:00
|
|
|
|
2017-01-24 22:36:35 +00:00
|
|
|
set +e
|
2017-10-05 18:46:38 +00:00
|
|
|
output=$( ("$SOLC" $FULLARGS $files) 2>&1 )
|
|
|
|
failed=$?
|
2017-07-12 17:06:36 +00:00
|
|
|
set -e
|
2017-07-19 19:27:05 +00:00
|
|
|
|
2017-07-12 17:06:36 +00:00
|
|
|
if [ $failed -ne 0 ]
|
|
|
|
then
|
2017-10-05 18:46:38 +00:00
|
|
|
printError "Compilation failed on:"
|
2017-07-19 19:12:49 +00:00
|
|
|
echo "$output"
|
2017-10-05 18:46:38 +00:00
|
|
|
printError "While calling:"
|
|
|
|
echo "\"$SOLC\" $FULLARGS $files"
|
|
|
|
printError "Inside directory:"
|
|
|
|
pwd
|
2017-07-12 17:06:36 +00:00
|
|
|
false
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function compileWithoutWarning()
|
|
|
|
{
|
2017-07-19 19:27:05 +00:00
|
|
|
local files="$*"
|
2017-10-05 18:46:38 +00:00
|
|
|
local output failed
|
2017-07-19 19:27:05 +00:00
|
|
|
|
2017-07-12 17:06:36 +00:00
|
|
|
set +e
|
2017-10-05 18:46:38 +00:00
|
|
|
output=$("$SOLC" $files 2>&1)
|
|
|
|
failed=$?
|
2017-01-24 22:36:35 +00:00
|
|
|
# Remove the pre-release warning from the compiler output
|
|
|
|
output=$(echo "$output" | grep -v 'pre-release')
|
|
|
|
echo "$output"
|
|
|
|
set -e
|
2017-07-19 19:27:05 +00:00
|
|
|
|
2017-01-24 22:36:35 +00:00
|
|
|
test -z "$output" -a "$failed" -eq 0
|
2017-07-12 17:06:36 +00:00
|
|
|
}
|
|
|
|
|
2018-02-27 04:31:09 +00:00
|
|
|
printTask "Testing unknown options..."
|
|
|
|
(
|
|
|
|
set +e
|
|
|
|
output=$("$SOLC" --allow=test 2>&1)
|
|
|
|
failed=$?
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ "$output" == "unrecognised option '--allow=test'" ] && [ $failed -ne 0 ] ; then
|
|
|
|
echo "Passed"
|
|
|
|
else
|
|
|
|
printError "Incorrect response to unknown options: $STDERR"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
)
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Compiling various other contracts and libraries..."
|
2017-07-12 17:06:36 +00:00
|
|
|
(
|
|
|
|
cd "$REPO_ROOT"/test/compilationTests/
|
|
|
|
for dir in *
|
|
|
|
do
|
|
|
|
if [ "$dir" != "README.md" ]
|
|
|
|
then
|
|
|
|
echo " - $dir"
|
|
|
|
cd "$dir"
|
|
|
|
compileFull *.sol */*.sol
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
)
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Compiling all files in std and examples..."
|
2017-07-12 17:06:36 +00:00
|
|
|
|
|
|
|
for f in "$REPO_ROOT"/std/*.sol
|
|
|
|
do
|
|
|
|
echo "$f"
|
|
|
|
compileWithoutWarning "$f"
|
2017-01-24 22:36:35 +00:00
|
|
|
done
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Compiling all examples from the documentation..."
|
2017-07-10 21:53:31 +00:00
|
|
|
TMPDIR=$(mktemp -d)
|
|
|
|
(
|
|
|
|
set -e
|
|
|
|
cd "$REPO_ROOT"
|
|
|
|
REPO_ROOT=$(pwd) # make it absolute
|
|
|
|
cd "$TMPDIR"
|
|
|
|
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/docs/ docs
|
|
|
|
for f in *.sol
|
|
|
|
do
|
2017-07-12 17:06:36 +00:00
|
|
|
echo "$f"
|
|
|
|
compileFull "$TMPDIR/$f"
|
2017-07-10 21:53:31 +00:00
|
|
|
done
|
|
|
|
)
|
|
|
|
rm -rf "$TMPDIR"
|
|
|
|
echo "Done."
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Testing library checksum..."
|
2017-02-16 16:13:55 +00:00
|
|
|
echo '' | "$SOLC" --link --libraries a:0x90f20564390eAe531E810af625A22f51385Cd222
|
|
|
|
! echo '' | "$SOLC" --link --libraries a:0x80f20564390eAe531E810af625A22f51385Cd222 2>/dev/null
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Testing long library names..."
|
2017-03-14 10:58:43 +00:00
|
|
|
echo '' | "$SOLC" --link --libraries aveeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeerylonglibraryname:0x90f20564390eAe531E810af625A22f51385Cd222
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Testing overwriting files"
|
2017-03-10 18:10:47 +00:00
|
|
|
TMPDIR=$(mktemp -d)
|
|
|
|
(
|
|
|
|
set -e
|
|
|
|
# First time it works
|
|
|
|
echo 'contract C {} ' | "$SOLC" --bin -o "$TMPDIR/non-existing-stuff-to-create" 2>/dev/null
|
|
|
|
# Second time it fails
|
|
|
|
! echo 'contract C {} ' | "$SOLC" --bin -o "$TMPDIR/non-existing-stuff-to-create" 2>/dev/null
|
|
|
|
# Unless we force
|
|
|
|
echo 'contract C {} ' | "$SOLC" --overwrite --bin -o "$TMPDIR/non-existing-stuff-to-create" 2>/dev/null
|
|
|
|
)
|
|
|
|
rm -rf "$TMPDIR"
|
|
|
|
|
2017-10-05 18:46:38 +00:00
|
|
|
printTask "Testing soljson via the fuzzer..."
|
2017-02-16 16:13:55 +00:00
|
|
|
TMPDIR=$(mktemp -d)
|
|
|
|
(
|
2017-03-10 18:10:47 +00:00
|
|
|
set -e
|
2017-02-16 16:13:55 +00:00
|
|
|
cd "$REPO_ROOT"
|
|
|
|
REPO_ROOT=$(pwd) # make it absolute
|
|
|
|
cd "$TMPDIR"
|
2017-03-22 19:19:20 +00:00
|
|
|
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/test/
|
2017-07-10 21:53:31 +00:00
|
|
|
"$REPO_ROOT"/scripts/isolate_tests.py "$REPO_ROOT"/docs/ docs
|
2017-02-16 16:13:55 +00:00
|
|
|
for f in *.sol
|
|
|
|
do
|
2017-05-19 11:50:49 +00:00
|
|
|
set +e
|
2017-04-27 09:35:29 +00:00
|
|
|
"$REPO_ROOT"/build/test/solfuzzer --quiet < "$f"
|
2017-05-19 08:50:34 +00:00
|
|
|
if [ $? -ne 0 ]; then
|
2017-10-05 18:46:38 +00:00
|
|
|
printError "Fuzzer failed on:"
|
2017-05-19 15:58:07 +00:00
|
|
|
cat "$f"
|
2017-05-19 11:50:49 +00:00
|
|
|
exit 1
|
2017-05-19 08:50:34 +00:00
|
|
|
fi
|
2017-08-30 23:24:25 +00:00
|
|
|
|
|
|
|
"$REPO_ROOT"/build/test/solfuzzer --without-optimizer --quiet < "$f"
|
|
|
|
if [ $? -ne 0 ]; then
|
2017-10-05 18:46:38 +00:00
|
|
|
printError "Fuzzer (without optimizer) failed on:"
|
2017-08-30 23:24:25 +00:00
|
|
|
cat "$f"
|
|
|
|
exit 1
|
|
|
|
fi
|
2017-05-19 11:50:49 +00:00
|
|
|
set -e
|
2017-02-16 16:13:55 +00:00
|
|
|
done
|
|
|
|
)
|
|
|
|
rm -rf "$TMPDIR"
|
2018-02-26 19:41:18 +00:00
|
|
|
echo "Commandline tests successful."
|