You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
3.0 KiB
87 lines
3.0 KiB
#!/usr/bin/env bash
|
|
|
|
# Exit script as soon as a command fails.
|
|
set -o errexit
|
|
|
|
# Executes cleanup function at script exit.
|
|
trap cleanup EXIT
|
|
|
|
cleanup() {
|
|
# Kill the ganache instance that we started (if we started one and if it's still running).
|
|
if [ -n "$ganache_pid" ] && ps -p $ganache_pid > /dev/null; then
|
|
kill -9 $ganache_pid
|
|
fi
|
|
}
|
|
|
|
if [ "$SOLIDITY_COVERAGE" = true ]; then
|
|
ganache_port=8555
|
|
else
|
|
ganache_port=8545
|
|
fi
|
|
|
|
ganache_running() {
|
|
nc -z localhost "$ganache_port"
|
|
}
|
|
|
|
relayer_running() {
|
|
nc -z localhost "$relayer_port"
|
|
}
|
|
|
|
start_ganache() {
|
|
local accounts=(
|
|
# 10 accounts with balance 1M ether, needed for high-value tests.
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501200,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501201,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501202,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501203,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501204,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501205,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501206,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501207,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501208,1000000000000000000000000"
|
|
--account="0x2bdd21761a483f71054e14f5b827213567971c676928d9a1808cbfa4b7501209,1000000000000000000000000"
|
|
# 3 accounts to be used for GSN matters.
|
|
--account="0x956b91cb2344d7863ea89e6945b753ca32f6d74bb97a59e59e04903ded14ad00,1000000000000000000000000"
|
|
--account="0x956b91cb2344d7863ea89e6945b753ca32f6d74bb97a59e59e04903ded14ad01,1000000000000000000000000"
|
|
--account="0x956b91cb2344d7863ea89e6945b753ca32f6d74bb97a59e59e04903ded14ad02,1000000000000000000000000"
|
|
)
|
|
|
|
if [ "$SOLIDITY_COVERAGE" = true ]; then
|
|
npx ganache-cli-coverage --emitFreeLogs true --allowUnlimitedContractSize true --gasLimit 0xfffffffffffff --port "$ganache_port" "${accounts[@]}" > /dev/null &
|
|
else
|
|
npx ganache-cli --gasLimit 0xfffffffffff --port "$ganache_port" "${accounts[@]}" > /dev/null &
|
|
fi
|
|
|
|
ganache_pid=$!
|
|
|
|
echo "Waiting for ganache to launch on port "$ganache_port"..."
|
|
|
|
while ! ganache_running; do
|
|
sleep 0.1 # wait for 1/10 of the second before check again
|
|
done
|
|
|
|
echo "Ganache launched!"
|
|
}
|
|
|
|
setup_relayhub() {
|
|
npx oz-gsn deploy-relay-hub \
|
|
--ethereumNodeURL "http://localhost:$ganache_port" \
|
|
--from "0xbb49ad04422f9fa6a217f3ed82261b942f6981f7"
|
|
}
|
|
|
|
if ganache_running; then
|
|
echo "Using existing ganache instance"
|
|
else
|
|
echo "Starting our own ganache instance"
|
|
start_ganache
|
|
fi
|
|
|
|
npx truffle version
|
|
|
|
setup_relayhub
|
|
|
|
if [ "$SOLIDITY_COVERAGE" = true ]; then
|
|
npx solidity-coverage
|
|
else
|
|
npx truffle test "$@"
|
|
fi
|
|
|