ci: stabilize server-upgrade-downgrade test on buildkite

fixes https://github.com/hasura/graphql-engine-mono/issues/2635

The test is running postgres via docker compose, but wasn't waiting
for postgres to be ready, which is likely what caused intermittent
failures when trying to clean metadata.

Also make indentation consistent.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2670
Co-authored-by: Vishnu Bharathi <4211715+scriptnull@users.noreply.github.com>
GitOrigin-RevId: 5a4c03c3c05322695ee9ff9a49efc834dea37074
This commit is contained in:
Robert 2021-10-25 14:27:45 +02:00 committed by hasura-bot
parent ec4ef91273
commit 44977bdf9d

View File

@ -26,24 +26,24 @@ set -euo pipefail
cd "${BASH_SOURCE[0]%/*}" cd "${BASH_SOURCE[0]%/*}"
ROOT="${PWD}" ROOT="${PWD}"
cd - > /dev/null cd - >/dev/null
download_with_etag_check() { download_with_etag_check() {
URL="$1" URL="$1"
FILE="$2" FILE="$2"
ETAG="$(curl -I $URL | grep etag: | awk '{print $2}' | sed 's/\r$//')" ETAG="$(curl -I $URL | grep etag: | awk '{print $2}' | sed 's/\r$//')"
set -x set -x
if ! ( [ -f "$FILE" ] && [ "$(cat "$FILE.etag" 2>/dev/null)" == "$ETAG" ] ) ; then if ! ([ -f "$FILE" ] && [ "$(cat "$FILE.etag" 2>/dev/null)" == "$ETAG" ]); then
curl -Lo "$FILE" "$URL" curl -Lo "$FILE" "$URL"
chmod +x "$FILE" chmod +x "$FILE"
echo -e -n "$ETAG" > "$FILE.etag" echo -e -n "$ETAG" >"$FILE.etag"
fi fi
set +x set +x
} }
fail_if_port_busy() { fail_if_port_busy() {
local PORT=$1 local PORT=$1
if nc -z localhost $PORT ; then if nc -z localhost $PORT; then
echo "Port $PORT is busy. Exiting" echo "Port $PORT is busy. Exiting"
exit 1 exit 1
fi fi
@ -54,18 +54,17 @@ wait_for_port() {
local PORT=$1 local PORT=$1
local PIDMSG="" local PIDMSG=""
local PID=${2:-} local PID=${2:-}
if [ -n "$PID" ] ; then if [ -n "$PID" ]; then
PIDMSG=", PID ($PID)" PIDMSG=", PID ($PID)"
fi fi
echo "waiting for ${PORT}${PIDMSG}" echo "waiting for ${PORT}${PIDMSG}"
for i in `seq 1 60`; for i in $(seq 1 60); do
do
nc -z localhost $PORT && echo "port $PORT is ready" && return nc -z localhost $PORT && echo "port $PORT is ready" && return
echo -n . echo -n .
sleep 1 sleep 1
if [ -n "$PID" ] && ! ps $PID >/dev/null ; then if [ -n "$PID" ] && ! ps $PID >/dev/null; then
echo "Process $PID has exited" echo "Process $PID has exited"
if [ -n "${3:-}" ] ; then if [ -n "${3:-}" ]; then
cat $3 cat $3
fi fi
exit 1 exit 1
@ -74,8 +73,18 @@ wait_for_port() {
echo "Failed waiting for $PORT" && exit 1 echo "Failed waiting for $PORT" && exit 1
} }
log() { echo $'\e[1;33m'"--> $*"$'\e[0m'; } wait_for_postgres() {
for i in $(seq 1 60); do
psql "$1" -c '' >/dev/null 2>&1 && \
echo "postgres is ready at $1" && \
return
echo -n .
sleep 1
done
echo "failed waiting for postgres at $1" && return 1
}
log() { echo $'\e[1;33m'"--> $*"$'\e[0m'; }
: ${HASURA_GRAPHQL_SERVER_PORT:=8080} : ${HASURA_GRAPHQL_SERVER_PORT:=8080}
: ${API_SERVER_PORT:=3000} : ${API_SERVER_PORT:=3000}
@ -98,8 +107,8 @@ PYTEST_DIR="${ROOT}/../../server/tests-py"
# cryptography 3.4.7 version requires Rust dependencies by default. But we don't need them for our tests, hence disabling them via the following env var => https://stackoverflow.com/a/66334084 # cryptography 3.4.7 version requires Rust dependencies by default. But we don't need them for our tests, hence disabling them via the following env var => https://stackoverflow.com/a/66334084
export CRYPTOGRAPHY_DONT_BUILD_RUST=1 export CRYPTOGRAPHY_DONT_BUILD_RUST=1
pip3 -q install -r "${PYTEST_DIR}/requirements.txt" ||\ pip3 -q install -r "${PYTEST_DIR}/requirements.txt" ||
pip3 -q install -i http://mirrors.digitalocean.com/pypi/web/simple --trusted-host mirrors.digitalocean.com -r "${PYTEST_DIR}/requirements.txt" pip3 -q install -i http://mirrors.digitalocean.com/pypi/web/simple --trusted-host mirrors.digitalocean.com -r "${PYTEST_DIR}/requirements.txt"
# export them so that GraphQL Engine can use it # export them so that GraphQL Engine can use it
export HASURA_GRAPHQL_STRINGIFY_NUMERIC_TYPES="$HASURA_GRAPHQL_STRINGIFY_NUMERIC_TYPES" export HASURA_GRAPHQL_STRINGIFY_NUMERIC_TYPES="$HASURA_GRAPHQL_STRINGIFY_NUMERIC_TYPES"
@ -126,7 +135,7 @@ touch $CURRENT_SERVER_LOG
log "downloading latest release of graphql engine" log "downloading latest release of graphql engine"
download_with_etag_check 'https://graphql-engine-cdn.hasura.io/server/latest/linux-amd64' "$LATEST_SERVER_BINARY" download_with_etag_check 'https://graphql-engine-cdn.hasura.io/server/latest/linux-amd64' "$LATEST_SERVER_BINARY"
cur_server_version(){ cur_server_version() {
echo "$(curl http://localhost:${HASURA_GRAPHQL_SERVER_PORT}/v1/version -q 2>/dev/null)" echo "$(curl http://localhost:${HASURA_GRAPHQL_SERVER_PORT}/v1/version -q 2>/dev/null)"
} }
@ -134,8 +143,8 @@ log "Run pytests with server upgrade"
WORKTREE_DIR="$(mktemp -d)" WORKTREE_DIR="$(mktemp -d)"
RELEASE_PYTEST_DIR="${WORKTREE_DIR}/server/tests-py" RELEASE_PYTEST_DIR="${WORKTREE_DIR}/server/tests-py"
RELEASE_VERSION="$( $LATEST_SERVER_BINARY version | cut -d':' -f2 | awk '{print $1}' )" RELEASE_VERSION="$($LATEST_SERVER_BINARY version | cut -d':' -f2 | awk '{print $1}')"
rm_worktree(){ rm_worktree() {
rm -rf "$WORKTREE_DIR" rm -rf "$WORKTREE_DIR"
} }
trap rm_worktree ERR trap rm_worktree ERR
@ -212,7 +221,7 @@ get_server_upgrade_tests() {
# tests passed as the argument. # tests passed as the argument.
run_server_upgrade_pytest() { run_server_upgrade_pytest() {
HGE_PID="" HGE_PID=""
cleanup_hge(){ cleanup_hge() {
kill $HGE_PID || true kill $HGE_PID || true
wait $HGE_PID || true wait $HGE_PID || true
# cleanup_hasura_metadata_if_present # cleanup_hasura_metadata_if_present
@ -222,9 +231,9 @@ run_server_upgrade_pytest() {
local HGE_URL="http://localhost:${HASURA_GRAPHQL_SERVER_PORT}" local HGE_URL="http://localhost:${HASURA_GRAPHQL_SERVER_PORT}"
local tests_to_run="$1" local tests_to_run="$1"
[ -n "$tests_to_run" ] || ( echo "Got no test as input" && false ) [ -n "$tests_to_run" ] || (echo "Got no test as input" && false)
run_pytest(){ run_pytest() {
cd $RELEASE_PYTEST_DIR cd $RELEASE_PYTEST_DIR
set -x set -x
@ -244,10 +253,9 @@ run_server_upgrade_pytest() {
# Start the old (latest release) GraphQL Engine # Start the old (latest release) GraphQL Engine
log "starting latest graphql engine release" log "starting latest graphql engine release"
$LATEST_SERVER_BINARY serve > $LATEST_SERVER_LOG 2>&1 & $LATEST_SERVER_BINARY serve >$LATEST_SERVER_LOG 2>&1 &
HGE_PID=$! HGE_PID=$!
# Wait for server start # Wait for server start
wait_for_port $HASURA_GRAPHQL_SERVER_PORT $HGE_PID $LATEST_SERVER_LOG wait_for_port $HASURA_GRAPHQL_SERVER_PORT $HGE_PID $LATEST_SERVER_LOG
@ -266,12 +274,13 @@ run_server_upgrade_pytest() {
############## Tests for the current build GraphQL engine ######################### ############## Tests for the current build GraphQL engine #########################
if [[ "$1" =~ "test_schema_stitching" ]] ; then if [[ "$1" =~ "test_schema_stitching" ]]; then
# In this case, Hasura metadata will have GraphQL servers defined as remote. # In this case, Hasura metadata will have GraphQL servers defined as remote.
# We need to have remote GraphQL server running for the graphql-engine to avoid # We need to have remote GraphQL server running for the graphql-engine to avoid
# inconsistent metadata error # inconsistent metadata error
cd $RELEASE_PYTEST_DIR cd $RELEASE_PYTEST_DIR
python3 graphql_server.py & REMOTE_GQL_PID=$! python3 graphql_server.py &
REMOTE_GQL_PID=$!
wait_for_port 5000 wait_for_port 5000
cd - cd -
fi fi
@ -279,7 +288,7 @@ run_server_upgrade_pytest() {
log "start the current build" log "start the current build"
set -x set -x
rm -f graphql-engine.tix rm -f graphql-engine.tix
$SERVER_BINARY serve > $CURRENT_SERVER_LOG 2>&1 & $SERVER_BINARY serve >$CURRENT_SERVER_LOG 2>&1 &
HGE_PID=$! HGE_PID=$!
set +x set +x
@ -289,7 +298,7 @@ run_server_upgrade_pytest() {
log "Catalog version for $(cur_server_version)" log "Catalog version for $(cur_server_version)"
get_current_catalog_version get_current_catalog_version
if [[ "$1" =~ "test_schema_stitching" ]] ; then if [[ "$1" =~ "test_schema_stitching" ]]; then
kill $REMOTE_GQL_PID || true kill $REMOTE_GQL_PID || true
wait $REMOTE_GQL_PID || true wait $REMOTE_GQL_PID || true
fi fi
@ -301,25 +310,24 @@ run_server_upgrade_pytest() {
kill $HGE_PID || true kill $HGE_PID || true
wait $HGE_PID || true wait $HGE_PID || true
#################### Downgrade to release version ########################## #################### Downgrade to release version ##########################
log "Downgrade graphql-engine to $RELEASE_VERSION" log "Downgrade graphql-engine to $RELEASE_VERSION"
$SERVER_BINARY downgrade "--to-$RELEASE_VERSION" $SERVER_BINARY downgrade "--to-$RELEASE_VERSION"
############## Tests for latest release GraphQL engine once more after downgrade ######################### ############## Tests for latest release GraphQL engine once more after downgrade #########################
if [[ "$1" =~ "test_schema_stitching" ]] ; then if [[ "$1" =~ "test_schema_stitching" ]]; then
cd $RELEASE_PYTEST_DIR cd $RELEASE_PYTEST_DIR
python3 graphql_server.py & REMOTE_GQL_PID=$! python3 graphql_server.py &
REMOTE_GQL_PID=$!
wait_for_port 5000 wait_for_port 5000
cd - cd -
fi fi
# Start the old (latest release) GraphQL Engine # Start the old (latest release) GraphQL Engine
log "starting latest graphql engine release" log "starting latest graphql engine release"
$LATEST_SERVER_BINARY serve > $LATEST_SERVER_LOG 2>&1 & $LATEST_SERVER_BINARY serve >$LATEST_SERVER_LOG 2>&1 &
HGE_PID=$! HGE_PID=$!
# Wait for server start # Wait for server start
@ -328,7 +336,7 @@ run_server_upgrade_pytest() {
log "Catalog version for $(cur_server_version)" log "Catalog version for $(cur_server_version)"
get_current_catalog_version get_current_catalog_version
if [[ "$1" =~ "test_schema_stitching" ]] ; then if [[ "$1" =~ "test_schema_stitching" ]]; then
kill $REMOTE_GQL_PID || true kill $REMOTE_GQL_PID || true
wait $REMOTE_GQL_PID || true wait $REMOTE_GQL_PID || true
fi fi
@ -344,6 +352,7 @@ run_server_upgrade_pytest() {
make_latest_release_worktree make_latest_release_worktree
wait_for_postgres "$HASURA_GRAPHQL_DATABASE_URL"
cleanup_hasura_metadata_if_present cleanup_hasura_metadata_if_present
# We run_server_upgrade_pytest over each test individually to minimize the # We run_server_upgrade_pytest over each test individually to minimize the
@ -358,7 +367,7 @@ cleanup_hasura_metadata_if_present
# and make them compatible, or small enough in number we can run them # and make them compatible, or small enough in number we can run them
# sequentially # sequentially
# - ??? # - ???
for pytest in $(get_server_upgrade_tests) ; do for pytest in $(get_server_upgrade_tests); do
log "Running pytest $pytest" log "Running pytest $pytest"
run_server_upgrade_pytest "$pytest" run_server_upgrade_pytest "$pytest"
done done