1d78ddc3df
* test-network-stalls tests... network stalls! in particular, right now, it just tests whether an uplink correctly times out after some amount of time when one of the nodes it's talking to suddenly goes offline. This tool is meant to be run under `storj-sim network test`. Also included here: * fix storj-sim-related test scripts on Mac the default storj config dir on Mac has a space in it ('~/Library/Application Support/Storj'), which breaks everywhere it shows up in an unquoted variable in a sh/bash script. easy enough to fix as a one-off, but quoting bash vars avoids a dozen other potential problems too. change a few things using `head -c` to use `dd`. `head -c` works, but is not as widely understood (as evidenced by each of these scripts getting through code review, one at a time, with the comments not matching the numbers actually used). * storj-sim reports PIDs of worker processes to test so that the tests can cause unfortunate "accidents" to befall the worker processes in the course of the test, and find out whether everything reacts correctly.
33 lines
948 B
Bash
Executable File
33 lines
948 B
Bash
Executable File
#!/bin/bash
|
|
set -ueo pipefail
|
|
set +x
|
|
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
make -C "$SCRIPTDIR"/.. install-sim
|
|
|
|
# setup tmpdir for testfiles and cleanup
|
|
TMP=$(mktemp -d -t tmp.XXXXXXXXXX)
|
|
cleanup(){
|
|
rm -rf "$TMP"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
export STORJ_NETWORK_DIR=$TMP
|
|
|
|
# setup the network
|
|
storj-sim -x network setup
|
|
|
|
# run aws-cli tests
|
|
storj-sim -x network test bash "$SCRIPTDIR"/test-sim-aws.sh
|
|
storj-sim -x network test bash "$SCRIPTDIR"/test-uplink.sh
|
|
storj-sim -x network destroy
|
|
|
|
# setup the network with ipv6
|
|
storj-sim -x --host "::1" network setup
|
|
# aws-cli doesn't support gateway with ipv6 address, so change it to use localhost
|
|
find "$STORJ_NETWORK_DIR"/gateway -type f -name config.yaml -exec sed -i 's/server.address: "\[::1\]/server.address: "127.0.0.1/' '{}' +
|
|
# run aws-cli tests using ipv6
|
|
storj-sim -x --host "::1" network test bash "$SCRIPTDIR"/test-sim-aws.sh
|
|
storj-sim -x network destroy
|