Skip to content
Snippets Groups Projects
Commit ccb780b8 authored by Cedric Caffy's avatar Cedric Caffy
Browse files

Added a timeout for the drives to be set down for the Retrieve

cancellation tests + modified client_helper.sh so that multiple word
arguments work as expected for admin_cta
parent b2a88fee
No related branches found
No related tags found
No related merge requests found
......@@ -406,9 +406,33 @@ INITIAL_DRIVES_STATE=`admin_cta --json dr ls`
echo INITIAL_DRIVES_STATE:
echo ${INITIAL_DRIVES_STATE} | jq -r '.[] | [ .driveName, .driveStatus] | @tsv' | column -t
echo -n "Will put down those drives : "
echo ${INITIAL_DRIVES_STATE} | jq -r '.[] | select (.driveStatus == "UP") | .driveName'
for d in `echo ${INITIAL_DRIVES_STATE} | jq -r '.[] | select (.driveStatus == "UP") | .driveName'`; do
admin_cta drive down $d --reason "putting drive down for test"
drivesToSetDown=`echo ${INITIAL_DRIVES_STATE} | jq -r '.[] | select (.driveStatus == "UP") | .driveName'`
echo $drivesToSetDown
for d in `echo $drivesToSetDown`; do
admin_cta drive down $d --reason "PUTTING DRIVE DOWN FOR TESTS"
done
echo "$(date +%s): Waiting for the drives to be down"
SECONDS_PASSED=0
WAIT_FOR_DRIVES_DOWN_TIMEOUT=$((10))
while [[ $SECONDS_PASSED < WAIT_FOR_DRIVES_DOWN_TIMEOUT ]]; do
sleep 1
oneStatusUpRemaining=0
for d in `echo $drivesToSetDown`; do
status=`admin_cta --json drive ls | jq -r ". [] | select(.driveName == \"$d\") | .driveStatus"`
if [[ $status == "UP" ]]; then
oneStatusUpRemaining=1
fi;
done
if [[ $oneStatusUpRemaining -eq 0 ]]; then
echo "Drives : $drivesToSetDown are down"
break;
fi
echo -n "."
SECONDS_PASSED=$SECONDS_PASSED+1
if [[ $SECONDS_PASSED -gt $WAIT_FOR_DRIVES_DOWN_TIMEOUT ]]; then
die "ERROR: Timeout reach for trying to put all drives down"
fi
done
# Prepare-stage the files
......
......@@ -26,7 +26,7 @@ user_kinit() {
}
admin_cta() {
KRB5CCNAME=/tmp/${CTAADMIN_USER}/krb5cc_0 cta-admin $@ 2>/dev/null
KRB5CCNAME=/tmp/${CTAADMIN_USER}/krb5cc_0 cta-admin "$@" 2>/dev/null
}
admin_klist() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment