2021-04-27 20:46:24 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2021-06-30 08:57:07 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
# DEFAULTS
|
|
|
|
BASE_PORT="49000"
|
|
|
|
BASE_METRICS_PORT="48008"
|
|
|
|
BASE_REST_PORT="47000"
|
2022-01-27 12:03:38 +00:00
|
|
|
RESTTEST_DELAY="30"
|
2021-07-06 08:40:18 +00:00
|
|
|
TEST_DIRNAME="resttest0_data"
|
2021-07-29 16:34:01 +00:00
|
|
|
KILL_OLD_PROCESSES="0"
|
2021-06-30 08:57:07 +00:00
|
|
|
|
|
|
|
####################
|
|
|
|
# argument parsing #
|
|
|
|
####################
|
|
|
|
|
|
|
|
GETOPT_BINARY="getopt"
|
|
|
|
if uname | grep -qi darwin; then
|
|
|
|
# macOS
|
2021-12-22 15:59:24 +00:00
|
|
|
GETOPT_BINARY=$(find /opt/homebrew/opt/gnu-getopt/bin/getopt /usr/local/opt/gnu-getopt/bin/getopt 2> /dev/null || true)
|
2021-06-30 08:57:07 +00:00
|
|
|
[[ -f "$GETOPT_BINARY" ]] || { echo "GNU getopt not installed. Please run 'brew install gnu-getopt'. Aborting."; exit 1; }
|
|
|
|
fi
|
|
|
|
|
|
|
|
! ${GETOPT_BINARY} --test > /dev/null
|
|
|
|
if [ ${PIPESTATUS[0]} != 4 ]; then
|
|
|
|
echo '`getopt --test` failed in this environment.'
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
OPTS="h"
|
2022-01-27 12:03:38 +00:00
|
|
|
LONGOPTS="help,data-dir:,base-port:,base-rest-port:,base-metrics-port:,resttest-delay:,kill-old-processes"
|
2021-06-30 08:57:07 +00:00
|
|
|
|
|
|
|
print_help() {
|
|
|
|
cat <<EOF
|
|
|
|
Usage: $(basename "$0") [OPTIONS] -- [BEACON NODE OPTIONS]
|
|
|
|
|
|
|
|
-h, --help this help message
|
2021-07-06 08:40:18 +00:00
|
|
|
--data-dir node's data directory (default: ${TEST_DIRNAME})
|
2021-06-30 08:57:07 +00:00
|
|
|
--base-port bootstrap node's Eth2 traffic port (default: ${BASE_PORT})
|
|
|
|
--base-rest-port bootstrap node's REST port (default: ${BASE_REST_PORT})
|
|
|
|
--base-metrics-port bootstrap node's metrics server port (default: ${BASE_METRICS_PORT})
|
2022-01-27 12:03:38 +00:00
|
|
|
--resttest-delay resttest delay in seconds (default: ${RESTTEST_DELAY} seconds)
|
2021-07-29 16:34:01 +00:00
|
|
|
--kill-old-processes if any process is found listening on a port we use, kill it (default: disabled)
|
2021-06-30 08:57:07 +00:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
! PARSED=$(${GETOPT_BINARY} --options=${OPTS} --longoptions=${LONGOPTS} --name "$0" -- "$@")
|
|
|
|
if [ ${PIPESTATUS[0]} != 0 ]; then
|
|
|
|
# getopt has complained about wrong arguments to stdout
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
eval set -- "$PARSED"
|
|
|
|
|
|
|
|
while true; do
|
|
|
|
case "$1" in
|
|
|
|
-h|--help)
|
|
|
|
print_help
|
|
|
|
exit
|
|
|
|
;;
|
2021-07-06 08:40:18 +00:00
|
|
|
--data-dir)
|
2021-06-30 08:57:07 +00:00
|
|
|
TEST_DIRNAME="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
--base-port)
|
|
|
|
BASE_PORT="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
--base-rest-port)
|
|
|
|
BASE_REST_PORT="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
|
|
|
--base-metrics-port)
|
|
|
|
BASE_METRICS_PORT="$2"
|
|
|
|
shift 2
|
|
|
|
;;
|
2022-01-27 12:03:38 +00:00
|
|
|
--resttest-delay)
|
|
|
|
RESTTEST_DELAY="$2"
|
2021-06-30 08:57:07 +00:00
|
|
|
shift 2
|
|
|
|
;;
|
2021-07-29 16:34:01 +00:00
|
|
|
--kill-old-processes)
|
|
|
|
KILL_OLD_PROCESSES="1"
|
|
|
|
shift
|
|
|
|
;;
|
2021-06-30 08:57:07 +00:00
|
|
|
--)
|
|
|
|
shift
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "argument parsing error"
|
|
|
|
print_help
|
|
|
|
exit 1
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2021-04-27 20:46:24 +00:00
|
|
|
NUM_VALIDATORS=${VALIDATORS:-32}
|
|
|
|
GIT_ROOT="$(git rev-parse --show-toplevel)"
|
2021-07-06 08:40:18 +00:00
|
|
|
TEST_DIR="${TEST_DIRNAME}"
|
|
|
|
LOG_NODE_FILE="${TEST_DIR}/node_log.txt"
|
|
|
|
LOG_TEST_FILE="${TEST_DIR}/client_log.txt"
|
2021-04-27 20:46:24 +00:00
|
|
|
VALIDATORS_DIR="${TEST_DIR}/validators"
|
|
|
|
SECRETS_DIR="${TEST_DIR}/secrets"
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
SNAPSHOT_FILE="${TEST_DIR}/genesis.ssz"
|
|
|
|
NETWORK_BOOTSTRAP_FILE="${TEST_DIR}/bootstrap_nodes.txt"
|
2021-04-27 20:46:24 +00:00
|
|
|
RESTTEST_RULES="${GIT_ROOT}/ncli/resttest-rules.json"
|
|
|
|
DEPOSIT_CONTRACT_BIN="${GIT_ROOT}/build/deposit_contract"
|
2021-07-06 08:40:18 +00:00
|
|
|
RESTTEST_BIN="${GIT_ROOT}/build/resttest"
|
|
|
|
NIMBUS_BEACON_NODE_BIN="${GIT_ROOT}/build/nimbus_beacon_node"
|
2021-04-27 20:46:24 +00:00
|
|
|
BOOTSTRAP_ENR_FILE="${TEST_DIR}/beacon_node.enr"
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
RUNTIME_CONFIG_FILE="${TEST_DIR}/config.yaml"
|
2021-04-27 20:46:24 +00:00
|
|
|
DEPOSITS_FILE="${TEST_DIR}/deposits.json"
|
|
|
|
REST_ADDRESS="127.0.0.1"
|
2021-06-30 08:57:07 +00:00
|
|
|
METRICS_ADDRESS="127.0.0.1"
|
2021-04-27 20:46:24 +00:00
|
|
|
MKDIR_SCRIPT="${GIT_ROOT}/scripts/makedir.sh"
|
2021-12-22 12:37:31 +00:00
|
|
|
TOKEN_FILE="${TEST_DIR}/testTokenFile.txt"
|
2021-04-27 20:46:24 +00:00
|
|
|
|
|
|
|
$MKDIR_SCRIPT "${TEST_DIR}"
|
2021-12-22 12:37:31 +00:00
|
|
|
printf "testToken" > "${TOKEN_FILE}"
|
2021-04-27 20:46:24 +00:00
|
|
|
|
2021-08-05 08:49:34 +00:00
|
|
|
HAVE_LSOF=0
|
|
|
|
|
2021-04-27 20:46:24 +00:00
|
|
|
# Windows detection
|
|
|
|
if uname | grep -qiE "mingw|msys"; then
|
|
|
|
MAKE="mingw32-make"
|
|
|
|
else
|
|
|
|
MAKE="make"
|
2021-08-05 08:49:34 +00:00
|
|
|
which lsof &>/dev/null && HAVE_LSOF=1 || { echo "'lsof' not installed and we need it to check for ports already in use. Aborting."; exit 1; }
|
2021-04-27 20:46:24 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# number of CPU cores
|
|
|
|
if uname | grep -qi darwin; then
|
|
|
|
NPROC="$(sysctl -n hw.logicalcpu)"
|
|
|
|
else
|
|
|
|
NPROC="$(nproc)"
|
|
|
|
fi
|
|
|
|
|
2021-07-29 16:34:01 +00:00
|
|
|
# kill lingering processes from a previous run
|
2021-08-05 08:49:34 +00:00
|
|
|
if [[ "${HAVE_LSOF}" == "1" ]]; then
|
|
|
|
for PORT in ${BASE_PORT} ${BASE_METRICS_PORT} ${BASE_REST_PORT}; do
|
|
|
|
for PID in $(lsof -n -i tcp:${PORT} -sTCP:LISTEN -t); do
|
|
|
|
echo -n "Found old process listening on port ${PORT}, with PID ${PID}. "
|
|
|
|
if [[ "${KILL_OLD_PROCESSES}" == "1" ]]; then
|
|
|
|
echo "Killing it."
|
|
|
|
kill -9 ${PID} || true
|
|
|
|
else
|
|
|
|
echo "Aborting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
done
|
2021-07-29 16:34:01 +00:00
|
|
|
done
|
2021-08-05 08:49:34 +00:00
|
|
|
fi
|
2021-07-29 16:34:01 +00:00
|
|
|
|
2021-04-27 20:46:24 +00:00
|
|
|
build_if_missing () {
|
|
|
|
if [[ ! -e "${GIT_ROOT}/build/${1}" ]]; then
|
|
|
|
${MAKE} -C "${GIT_ROOT}" -j ${NPROC} ${1}
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
EXISTING_VALIDATORS=0
|
|
|
|
if [[ -f "${DEPOSITS_FILE}" ]]; then
|
|
|
|
# We count the number of deposits by counting the number of
|
|
|
|
# occurrences of the 'deposit_data_root' field:
|
|
|
|
EXISTING_VALIDATORS=$(grep -o -i deposit_data_root "${DEPOSITS_FILE}" | wc -l)
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ${EXISTING_VALIDATORS} -ne ${NUM_VALIDATORS} ]]; then
|
|
|
|
build_if_missing deposit_contract
|
|
|
|
rm -rf "${VALIDATORS_DIR}" "${SECRETS_DIR}"
|
2021-07-06 08:40:18 +00:00
|
|
|
${DEPOSIT_CONTRACT_BIN} generateSimulationDeposits \
|
2021-04-27 20:46:24 +00:00
|
|
|
--count="${NUM_VALIDATORS}" \
|
|
|
|
--out-validators-dir="${VALIDATORS_DIR}" \
|
|
|
|
--out-secrets-dir="${SECRETS_DIR}" \
|
|
|
|
--out-deposits-file="${DEPOSITS_FILE}"
|
|
|
|
echo "All deposits prepared"
|
|
|
|
fi
|
|
|
|
|
|
|
|
build_if_missing nimbus_beacon_node
|
|
|
|
build_if_missing resttest
|
|
|
|
|
2022-01-27 12:03:38 +00:00
|
|
|
# Kill child processes on Ctrl-C/SIGTERM/exit, passing the PID of this shell
|
|
|
|
# instance as the parent and the target process name as a pattern to the
|
|
|
|
# "pkill" command.
|
|
|
|
cleanup() {
|
|
|
|
pkill -f -P $$ nimbus_beacon_node &>/dev/null || true
|
|
|
|
pkill -f -P $$ resttest &>/dev/null || true
|
|
|
|
sleep 2
|
|
|
|
pkill -f -9 -P $$ nimbus_beacon_node &>/dev/null || true
|
|
|
|
pkill -f -9 -P $$ resttest &>/dev/null || true
|
|
|
|
}
|
|
|
|
trap 'cleanup' SIGINT SIGTERM EXIT
|
|
|
|
|
2022-03-23 11:42:16 +00:00
|
|
|
echo "Creating testnet genesis..."
|
|
|
|
${NIMBUS_BEACON_NODE_BIN} \
|
|
|
|
--data-dir="${TEST_DIR}" \
|
|
|
|
createTestnet \
|
|
|
|
--deposits-file="${DEPOSITS_FILE}" \
|
|
|
|
--total-validators="${NUM_VALIDATORS}" \
|
|
|
|
--output-genesis="${SNAPSHOT_FILE}" \
|
|
|
|
--output-bootstrap-file="${NETWORK_BOOTSTRAP_FILE}" \
|
|
|
|
--netkey-file=network_key.json \
|
|
|
|
--insecure-netkey-password=true \
|
|
|
|
--genesis-offset=-12 # Chain that has already started allows testing empty slots
|
|
|
|
|
|
|
|
# Make sure we use the newly generated genesis
|
|
|
|
echo "Removing existing database..."
|
|
|
|
rm -rf "${TEST_DIR}/db"
|
2021-04-27 20:46:24 +00:00
|
|
|
|
|
|
|
DEPOSIT_CONTRACT_ADDRESS="0x0000000000000000000000000000000000000000"
|
|
|
|
DEPOSIT_CONTRACT_BLOCK="0x0000000000000000000000000000000000000000000000000000000000000000"
|
|
|
|
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
echo Wrote $RUNTIME_CONFIG_FILE:
|
|
|
|
|
|
|
|
tee "$RUNTIME_CONFIG_FILE" <<EOF
|
|
|
|
PRESET_BASE: "mainnet"
|
|
|
|
MIN_GENESIS_ACTIVE_VALIDATOR_COUNT: ${TOTAL_VALIDATORS}
|
|
|
|
MIN_GENESIS_TIME: 0
|
|
|
|
GENESIS_DELAY: 10
|
|
|
|
GENESIS_FORK_VERSION: 0x00000000
|
|
|
|
DEPOSIT_CONTRACT_ADDRESS: ${DEPOSIT_CONTRACT_ADDRESS}
|
|
|
|
ETH1_FOLLOW_DISTANCE: 1
|
|
|
|
EOF
|
2021-04-27 20:46:24 +00:00
|
|
|
|
2021-07-06 08:40:18 +00:00
|
|
|
${NIMBUS_BEACON_NODE_BIN} \
|
2021-06-30 08:57:07 +00:00
|
|
|
--tcp-port=${BASE_PORT} \
|
|
|
|
--udp-port=${BASE_PORT} \
|
2021-04-27 20:46:24 +00:00
|
|
|
--log-level=${LOG_LEVEL:-DEBUG} \
|
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
|
|
|
--network="${TEST_DIR}" \
|
2021-04-27 20:46:24 +00:00
|
|
|
--data-dir="${TEST_DIR}" \
|
|
|
|
--secrets-dir="${SECRETS_DIR}" \
|
|
|
|
--doppelganger-detection=off \
|
|
|
|
--nat=none \
|
2021-06-30 08:57:07 +00:00
|
|
|
--metrics \
|
|
|
|
--metrics-address=${METRICS_ADDRESS} \
|
|
|
|
--metrics-port=${BASE_METRICS_PORT} \
|
|
|
|
--rest \
|
2021-04-27 20:46:24 +00:00
|
|
|
--rest-address=${REST_ADDRESS} \
|
2021-07-26 19:55:24 +00:00
|
|
|
--rest-port=${BASE_REST_PORT} \
|
2021-12-22 12:37:31 +00:00
|
|
|
--keymanager \
|
|
|
|
--keymanager-address=${REST_ADDRESS} \
|
|
|
|
--keymanager-port=${BASE_REST_PORT} \
|
|
|
|
--keymanager-token-file="${TOKEN_FILE}" \
|
2021-07-26 19:55:24 +00:00
|
|
|
--discv5=no \
|
2021-04-27 20:46:24 +00:00
|
|
|
${ADDITIONAL_BEACON_NODE_ARGS} \
|
2021-07-06 08:40:18 +00:00
|
|
|
"$@" > ${LOG_NODE_FILE} 2>&1 &
|
2021-04-27 20:46:24 +00:00
|
|
|
BEACON_NODE_STATUS=$?
|
|
|
|
|
|
|
|
if [[ ${BEACON_NODE_STATUS} -eq 0 ]]; then
|
|
|
|
echo "nimbus_beacon_node has been successfully started"
|
|
|
|
|
|
|
|
BEACON_NODE_PID="$(jobs -p)"
|
|
|
|
|
2021-07-06 08:40:18 +00:00
|
|
|
${RESTTEST_BIN} \
|
2022-01-27 12:03:38 +00:00
|
|
|
--delay=${RESTTEST_DELAY} \
|
2021-04-27 20:46:24 +00:00
|
|
|
--timeout=60 \
|
|
|
|
--skip-topic=slow \
|
|
|
|
--connections=4 \
|
|
|
|
--rules-file="${RESTTEST_RULES}" \
|
2022-09-13 11:52:26 +00:00
|
|
|
http://${REST_ADDRESS}:${BASE_REST_PORT} \
|
2021-07-06 08:40:18 +00:00
|
|
|
> ${LOG_TEST_FILE} 2>&1
|
2021-04-27 20:46:24 +00:00
|
|
|
RESTTEST_STATUS=$?
|
|
|
|
|
|
|
|
kill -SIGINT ${BEACON_NODE_PID}
|
|
|
|
|
|
|
|
if [[ ${RESTTEST_STATUS} -eq 0 ]]; then
|
|
|
|
echo "All tests were completed successfully!"
|
|
|
|
else
|
|
|
|
echo "Some of the tests failed!"
|
2021-07-06 08:40:18 +00:00
|
|
|
tail -n 100 ${LOG_NODE_FILE}
|
2021-04-27 20:46:24 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "nimbus_beacon_node failed to start"
|
|
|
|
fi
|