garage/script/test-smoke.sh

28 lines
715 B
Bash
Raw Normal View History

2020-11-29 16:03:08 +00:00
#!/bin/bash
set -ex
shopt -s expand_aliases
SCRIPT_FOLDER="`dirname \"$0\"`"
REPO_FOLDER="${SCRIPT_FOLDER}/../"
cargo build
${SCRIPT_FOLDER}/dev-clean.sh
${SCRIPT_FOLDER}/dev-cluster.sh > /tmp/garage.log 2>&1 &
${SCRIPT_FOLDER}/dev-configure.sh
${SCRIPT_FOLDER}/dev-bucket.sh
source ${SCRIPT_FOLDER}/dev-env.sh
2020-12-06 08:13:47 +00:00
dd if=/dev/urandom of=/tmp/garage.1.rnd bs=512k count=1
dd if=/dev/urandom of=/tmp/garage.2.rnd bs=1M count=5
dd if=/dev/urandom of=/tmp/garage.3.rnd bs=1M count=10
2020-11-29 16:03:08 +00:00
2020-12-06 08:13:47 +00:00
for idx in $(seq 1 3); do
s3grg cp /tmp/garage.$idx.rnd s3://eprouvette/
s3grg ls s3://eprouvette
s3grg cp s3://eprouvette/garage.$idx.rnd /tmp/garage.$idx.dl
diff /tmp/garage.$idx.rnd /tmp/garage.$idx.dl
done
2020-11-29 16:03:08 +00:00
2020-12-05 17:27:51 +00:00
echo "success"