Skip to content

Commit

Permalink
[tests] add a check_timeout function.
Browse files Browse the repository at this point in the history
  • Loading branch information
shizunge committed Dec 6, 2024
1 parent cc6551a commit de39cdf
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 60 deletions.
43 changes: 26 additions & 17 deletions src/lib-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,24 @@ time_elapsed_since() {
_time_elapsed_between "$(date +%s)" "${START_TIME}"
}

# Return 0 if not timeout
# Return 1 if timeout
# Return 2 if error
_check_timeout() {
local TIMEOUT_SECONDS="${1}"
local START_TIME="${2}"
local MESSAGE="${3}"
! is_number "${TIMEOUT_SECONDS}" && log ERROR "TIMEOUT_SECONDS must be a number." && return 2
! is_number "${START_TIME}" && log ERROR "START_TIME must be a number." && return 2
local SECONDS_ELAPSED=
SECONDS_ELAPSED=$(first_minus_second "$(date +%s)" "${START_TIME}")
if [ "${SECONDS_ELAPSED}" -ge "${TIMEOUT_SECONDS}" ]; then
[ -n "${MESSAGE}" ] && log ERROR "${MESSAGE} timeout after ${SECONDS_ELAPSED} seconds."
return 1
fi
return 0
}

add_unique_to_list() {
local OLD_LIST="${1}"
local NEW_ITEM="${2}"
Expand Down Expand Up @@ -617,14 +635,8 @@ wait_service_state() {
while STATES=$(_docker_service_task_states "${SERVICE_NAME}"); do
DOCKER_CMD_ERROR=0
RETURN_VALUE=$(_all_tasks_reach_state "${WANT_STATE}" "${CHECK_FAILURES}" "${STATES}") && break
local SECONDS_ELAPSED=
if is_number "${TIMEOUT_SECONDS}" \
&& SECONDS_ELAPSED=$(first_minus_second "$(date +%s)" "${START_TIME}") \
&& [ "${SECONDS_ELAPSED}" -ge "${TIMEOUT_SECONDS}" ]; then
log ERROR "wait_service_state ${SERVICE_NAME} ${WANT_STATE} timeout after ${SECONDS_ELAPSED}s."
RETURN_VALUE=2
break
fi
local TIMEOUT_MESSAGE="wait_service_state ${SERVICE_NAME} ${WANT_STATE}"
[ -n "${TIMEOUT_SECONDS}" ] && ! _check_timeout "${TIMEOUT_SECONDS}" "${START_TIME}" "${TIMEOUT_MESSAGE}" && RETURN_VALUE=2 && break;
sleep "${SLEEP_SECONDS}"
DOCKER_CMD_ERROR=1
done
Expand Down Expand Up @@ -776,18 +788,15 @@ docker_remove() {
}

docker_run() {
local RETRIES=0
local MAX_RETRIES=5
local SLEEP_SECONDS=10
local TIMEOUT_SECONDS=10
local SLEEP_SECONDS=1
local START_TIME=
START_TIME=$(date +%s)
local LOG=
while ! LOG=$(run_cmd docker container run "${@}"); do
if [ ${RETRIES} -ge ${MAX_RETRIES} ]; then
log ERROR "Failed to run docker. Reached the max retries ${MAX_RETRIES}. ${LOG}"
return 1
fi
RETRIES=$((RETRIES + 1))
_check_timeout "${TIMEOUT_SECONDS}" "${START_TIME}" "docker_run" || return 1
sleep ${SLEEP_SECONDS}
log WARN "Retry docker container run (${RETRIES}). ${LOG}"
log WARN "Retry docker container run (${SECONDS_ELAPSED}s). ${LOG}"
done
echo "${LOG}"
}
85 changes: 42 additions & 43 deletions tests/spec_gantry_test_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

# Constant strings for checks.
# START_WITHOUT_A_SQUARE_BRACKET ignores color codes. Use test_log not to trigger this check.
# START_WITHOUT_A_SQUARE_BRACKET ignores color codes. Use _test_log not to trigger this check in tests.
export START_WITHOUT_A_SQUARE_BRACKET="^(?!(?:\x1b\[[0-9;]*[mG])?\[)"
export GANTRY_AUTH_CONFIG_LABEL="gantry.auth.config"
export MUST_BE_A_NUMBER="must be a number"
Expand Down Expand Up @@ -75,14 +75,32 @@ export SLEEP_SECONDS_BEFORE_NEXT_UPDATE="Sleep [0-9]+ seconds before next update

export GANTRY_TEST_TEMP_DIR="gantry-test-tmp"

test_log() {
_test_log() {
echo "${GANTRY_LOG_LEVEL}" | grep -q -i "^NONE$" && return 0;
echo "${GANTRY_LOG_LEVEL}" | grep -q -i "^ERROR$" && return 0;
echo "${GANTRY_LOG_LEVEL}" | grep -q -i "^WARN$" && return 0;
[ -n "${GANTRY_IMAGES_TO_REMOVE}" ] && echo "${*}" >&2 && return 0;
echo "[$(date -Iseconds)] Test: ${*}" >&2
}

# Return 0 if not timeout
# Return 1 if timeout
# Return 2 if error
_test_check_timeout() {
local TIMEOUT_SECONDS="${1}"
local START_TIME="${2}"
local MESSAGE="${3:-_test_check_timeout}"
! is_number "${TIMEOUT_SECONDS}" && echo "TIMEOUT_SECONDS is not a number." 1>&2 && return 2
! is_number "${START_TIME}" && echo "START_TIME is not a number." 1>&2 && return 2
local SECONDS_ELAPSED=
SECONDS_ELAPSED=$(first_minus_second "$(date +%s)" "${START_TIME}")
if [ "${SECONDS_ELAPSED}" -ge "${TIMEOUT_SECONDS}" ]; then
echo "${MESSAGE} timeout after ${SECONDS_ELAPSED}s" 1>&2
return 1
fi
return 0
}

display_output() {
echo "${display_output:-""}"
}
Expand Down Expand Up @@ -337,8 +355,8 @@ _start_registry() {
export TEST_USERNAME="gantry"
export TEST_PASSWORD="gantry"
local REGISTRY_IMAGE="docker.io/registry"
local TRIES=0
local MAX_RETRIES=50
local START_TIME=
START_TIME=$(date +%s)
local PORT_LIMIT=500
pull_image_if_not_exist "${REGISTRY_IMAGE}"
while true; do
Expand Down Expand Up @@ -369,26 +387,19 @@ _start_registry() {
local STATUS=
while [ "${STATUS}" != "running" ]; do
STATUS=$(docker container inspect "${CID}" --format '{{.State.Status}}')
_test_check_timeout "60" "${START_TIME}" "_start_registry" || return 1
sleep 1
done
break;
fi
echo "docker container run: ${CID}";
if [ "${TRIES}" -ge "${MAX_RETRIES}" ]; then
echo "_start_registry Reach MAX_RETRIES ${MAX_RETRIES}" >&2
return 1
fi
REGISTRY_PORT=$((REGISTRY_PORT+1))
TRIES=$((TRIES+1))
_test_check_timeout "60" "${START_TIME}" "_start_registry" || return 1
sleep 1
done
_store_test_registry "${SUITE_NAME}" "${TEST_REGISTRY}" || return 1;
TRIES=0
while ! _login_test_registry "${ENFORCE_LOGIN}" "${TEST_REGISTRY}" "${TEST_USERNAME}" "${TEST_PASSWORD}"; do
if [ "${TRIES}" -ge "${MAX_RETRIES}" ]; then
echo "_login_test_registry Reach MAX_RETRIES ${MAX_RETRIES}" >&2
return 1
fi
TRIES=$((TRIES+1))
_test_check_timeout "60" "${START_TIME}" "_start_registry" || return 1
sleep 1
done
}
Expand Down Expand Up @@ -645,15 +656,10 @@ build_test_image() {
if [ -n "${EXIT_SECONDS}" ] && [ "${EXIT_SECONDS}" -gt "0" ]; then
EXIT_CMD="sleep ${EXIT_SECONDS};"
fi
local RETURN_VALUE=1
local TRIES=0
local MAX_RETRIES=60
while [ "${RETURN_VALUE}" != "0" ]; do
if [ "${TRIES}" -ge "${MAX_RETRIES}" ]; then
echo "build_test_image Reach MAX_RETRIES ${MAX_RETRIES}" >&2
return 1
fi
TRIES=$((TRIES+1))
local RETURN_VALUE=
local START_TIME=
START_TIME=$(date +%s)
while true; do
local FILE=
FILE=$(make_test_temp_file)
echo "FROM $(_get_test_service_image)" > "${FILE}"
Expand All @@ -663,7 +669,9 @@ build_test_image() {
docker build --quiet --tag "${IMAGE_WITH_TAG}" --file "${FILE}" . 2>&1
RETURN_VALUE=$?
rm "${FILE}"
[ "${RETURN_VALUE}" != "0" ] && sleep 1
[ "${RETURN_VALUE}" = "0" ] && return 0
_test_check_timeout "60" "${START_TIME}" "build_test_image" || return 1
sleep 1
done
return 0
}
Expand Down Expand Up @@ -692,17 +700,11 @@ docker_service_update() {
wait_zero_running_tasks() {
local SERVICE_NAME="${1}"
local TIMEOUT_SECONDS="${2}"
local NUM_RUNS=1
local REPLICAS=
local USED_SECONDS=0
local TRIES=0
local MAX_RETRIES=60
local START_TIME=
START_TIME=$(date +%s)
echo "Wait until ${SERVICE_NAME} has zero running tasks."
while [ "${NUM_RUNS}" -ne 0 ]; do
if [ -n "${TIMEOUT_SECONDS}" ] && [ "${USED_SECONDS}" -ge "${TIMEOUT_SECONDS}" ]; then
_handle_failure "Services ${SERVICE_NAME} does not stop after ${TIMEOUT_SECONDS} seconds."
return 1
fi
while true; do
local REPLICAS=
if ! REPLICAS=$(docker service ls --filter "name=${SERVICE_NAME}" --format '{{.Replicas}} {{.Name}}' 2>&1); then
_handle_failure "Failed to obtain task states of service ${SERVICE_NAME}: ${REPLICAS}"
return 1
Expand All @@ -712,17 +714,14 @@ wait_zero_running_tasks() {
# It does not do the exact match of the name. See https://github.com/moby/moby/issues/32985
# We do an extra step to to perform the exact match.
REPLICAS=$(echo "${REPLICAS}" | sed -n -E "s/(.*) ${SERVICE_NAME}$/\1/p")
if [ "${TRIES}" -ge "${MAX_RETRIES}" ]; then
echo "wait_zero_running_tasks Reach MAX_RETRIES ${MAX_RETRIES}" >&2
return 1
fi
TRIES=$((TRIES+1))
# https://docs.docker.com/engine/reference/commandline/service_ls/#examples
# The REPLICAS is like "5/5" or "1/1 (3/5 completed)"
# Get the number before the first "/".
local NUM_RUNS=
NUM_RUNS=$(echo "${REPLICAS}/" | cut -d '/' -f 1)
[ "${NUM_RUNS}" = "0" ] && return 0
_test_check_timeout "60" "${START_TIME}" "wait_zero_running_tasks" || return 1
sleep 1
USED_SECONDS=$((USED_SECONDS+1))
done
}

Expand Down Expand Up @@ -1013,8 +1012,8 @@ _run_gantry_container() {
MOUNT_OPTIONS=$(_add_file_to_mount_options "${MOUNT_OPTIONS}" "${GANTRY_REGISTRY_HOST_FILE}")
MOUNT_OPTIONS=$(_add_file_to_mount_options "${MOUNT_OPTIONS}" "${GANTRY_REGISTRY_PASSWORD_FILE}")
MOUNT_OPTIONS=$(_add_file_to_mount_options "${MOUNT_OPTIONS}" "${GANTRY_REGISTRY_USER_FILE}")
test_log "Starting SUT service ${SERVICE_NAME} with image ${SUT_REPO_TAG}."
test_log "MOUNT_OPTIONS=${MOUNT_OPTIONS}"
_test_log "Starting SUT service ${SERVICE_NAME} with image ${SUT_REPO_TAG}."
_test_log "MOUNT_OPTIONS=${MOUNT_OPTIONS}"
local RETURN_VALUE=0
local CMD_OUTPUT=
# SC2086 (info): Double quote to prevent globbing and word splitting.
Expand Down

0 comments on commit de39cdf

Please sign in to comment.