a3d9630336
Doing some cleanup in "scripts" folder. All integration like tests are moved under "test" directory (integration, bc, redis) and bash scripts are adjusted to reflect new location. As an addition "scripts/install-awscli.sh" was deleted as it was not used. Change-Id: I152905c4258f471a71f2d0e8731d91bb075e99c1
55 lines
2.1 KiB
Bash
Executable File
55 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ueo pipefail
|
|
set +x
|
|
|
|
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
# setup tmpdir for testfiles and cleanup
|
|
TMP=$(mktemp -d -t tmp.XXXXXXXXXX)
|
|
cleanup(){
|
|
rm -rf "$TMP"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
echo "Running test-sim"
|
|
make -C "$SCRIPTDIR"/../../.. install-sim
|
|
|
|
echo "Overriding default max segment size to 6MiB"
|
|
GOBIN=$TMP go install -v -ldflags "-X 'storj.io/uplink.maxSegmentSize=6MiB'" storj.io/storj/cmd/uplink
|
|
|
|
# use modified version of uplink
|
|
export PATH=$TMP:$PATH
|
|
|
|
export STORJ_NETWORK_DIR=$TMP
|
|
|
|
STORJ_NETWORK_HOST4=${STORJ_NETWORK_HOST4:-127.0.0.1}
|
|
STORJ_SIM_POSTGRES=${STORJ_SIM_POSTGRES:-""}
|
|
|
|
# setup the network
|
|
# if postgres connection string is set as STORJ_SIM_POSTGRES then use that for testing
|
|
if [ -z ${STORJ_SIM_POSTGRES} ]; then
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network setup
|
|
else
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network --postgres=$STORJ_SIM_POSTGRES setup
|
|
fi
|
|
|
|
# run tests
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network test bash "$SCRIPTDIR"/test-uplink.sh
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network test bash "$SCRIPTDIR"/test-uplink-share.sh
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network test bash "$SCRIPTDIR"/test-billing.sh
|
|
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network test bash "$SCRIPTDIR"/test-uplink-rs-upload.sh
|
|
# change RS values and try download
|
|
sed -i 's@# metainfo.rs: 4/6/8/10-256 B@metainfo.rs: 2/3/6/8-256 B@g' $(storj-sim network env SATELLITE_0_DIR)/config.yaml
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 network test bash "$SCRIPTDIR"/test-uplink-rs-download.sh
|
|
|
|
storj-sim -x --satellites 1 --host $STORJ_NETWORK_HOST4 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
|