diff options
author | Quentin <quentin@deuxfleurs.fr> | 2020-11-29 17:03:08 +0100 |
---|---|---|
committer | Quentin <quentin@deuxfleurs.fr> | 2020-11-29 17:03:19 +0100 |
commit | 3f18aa6f1def52d61a4fc3bbb667d1f0911665ed (patch) | |
tree | a82b16af13c0cac8bc558e66894b70cfee6dd35b /script/test-smoke.sh | |
parent | 07e87595f8c12a6e60c90b3eb11ab89d7f719420 (diff) | |
download | garage-3f18aa6f1def52d61a4fc3bbb667d1f0911665ed.tar.gz garage-3f18aa6f1def52d61a4fc3bbb667d1f0911665ed.zip |
Add a smoke test script
Diffstat (limited to 'script/test-smoke.sh')
-rwxr-xr-x | script/test-smoke.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/script/test-smoke.sh b/script/test-smoke.sh new file mode 100755 index 00000000..7b462b00 --- /dev/null +++ b/script/test-smoke.sh @@ -0,0 +1,22 @@ +#!/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 + +dd if=/dev/urandom of=/tmp/garage.rnd bs=1M count=10 + +s3grg put /tmp/garage.rnd s3://eprouvette/ +s3grg ls s3://eprouvette +s3grg get s3://eprouvette/garage.rnd /tmp/garage.dl + +diff /tmp/garage.rnd /tmp/garage.dl |