mirror of
https://github.com/girlbossceo/conduwuit.git
synced 2025-03-14 18:55:37 +00:00
95 lines
3.2 KiB
Bash
Executable file
95 lines
3.2 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Path to Complement's source code
|
|
#
|
|
# The `COMPLEMENT_SRC` environment variable is set in the Nix dev shell, which
|
|
# points to a store path containing the Complement source code. It's likely you
|
|
# want to just pass that as the first argument to use it here.
|
|
COMPLEMENT_SRC="${COMPLEMENT_SRC:-$1}"
|
|
|
|
# A `.jsonl` file to write test logs to
|
|
LOG_FILE="${2:-complement_test_logs.jsonl}"
|
|
|
|
# A `.jsonl` file to write test results to
|
|
RESULTS_FILE="${3:-complement_test_results.jsonl}"
|
|
|
|
COMPLEMENT_BASE_IMAGE="${COMPLEMENT_BASE_IMAGE:-complement-conduwuit:main}"
|
|
|
|
# Complement tests that are skipped due to flakiness/reliability issues or we don't implement such features and won't for a long time
|
|
#SKIPPED_COMPLEMENT_TESTS='-skip=TestPartialStateJoin.*'
|
|
|
|
# $COMPLEMENT_SRC needs to be a directory to Complement source code
|
|
if [ -f "$COMPLEMENT_SRC" ]; then
|
|
echo "\$COMPLEMENT_SRC must be a directory/path to Complement source code"
|
|
exit 1
|
|
fi
|
|
|
|
# quick test to make sure we can actually write to $LOG_FILE and $RESULTS_FILE
|
|
touch $LOG_FILE && rm -v $LOG_FILE
|
|
touch $RESULTS_FILE && rm -v $RESULTS_FILE
|
|
|
|
toplevel="$(git rev-parse --show-toplevel)"
|
|
|
|
pushd "$toplevel" > /dev/null
|
|
|
|
if [ ! -f "complement_oci_image.tar.gz" ]; then
|
|
echo "building complement conduwuit image"
|
|
|
|
# if using macOS, use linux-complement
|
|
#bin/nix-build-and-cache just .#linux-complement
|
|
bin/nix-build-and-cache just .#complement
|
|
#nix build -L .#complement
|
|
|
|
echo "complement conduwuit image tar.gz built at \"result\""
|
|
|
|
echo "loading into docker"
|
|
docker load < result
|
|
popd > /dev/null
|
|
else
|
|
echo "skipping building a complement conduwuit image as complement_oci_image.tar.gz was already found, loading this"
|
|
|
|
docker load < complement_oci_image.tar.gz
|
|
popd > /dev/null
|
|
fi
|
|
|
|
echo ""
|
|
echo "running go test with:"
|
|
echo "\$COMPLEMENT_SRC: $COMPLEMENT_SRC"
|
|
echo "\$COMPLEMENT_BASE_IMAGE: $COMPLEMENT_BASE_IMAGE"
|
|
echo "\$RESULTS_FILE: $RESULTS_FILE"
|
|
echo "\$LOG_FILE: $LOG_FILE"
|
|
echo ""
|
|
|
|
# It's okay (likely, even) that `go test` exits nonzero
|
|
# `COMPLEMENT_ENABLE_DIRTY_RUNS=1` reuses the same complement container for faster complement, at the possible expense of test environment pollution
|
|
set +o pipefail
|
|
env \
|
|
-C "$COMPLEMENT_SRC" \
|
|
COMPLEMENT_BASE_IMAGE="$COMPLEMENT_BASE_IMAGE" \
|
|
go test -tags="conduwuit_blacklist" -timeout 1h -json ./tests/... | tee "$LOG_FILE"
|
|
set -o pipefail
|
|
|
|
# Post-process the results into an easy-to-compare format, sorted by Test name for reproducible results
|
|
cat "$LOG_FILE" | jq -s -c 'sort_by(.Test)[]' | jq -c '
|
|
select(
|
|
(.Action == "pass" or .Action == "fail" or .Action == "skip")
|
|
and .Test != null
|
|
) | {Action: .Action, Test: .Test}
|
|
' > "$RESULTS_FILE"
|
|
|
|
#if command -v gotestfmt &> /dev/null; then
|
|
# echo "using gotestfmt on $LOG_FILE"
|
|
# grep '{"Time":' "$LOG_FILE" | gotestfmt > "complement_test_logs_gotestfmt.log"
|
|
#fi
|
|
|
|
echo ""
|
|
echo ""
|
|
echo "complement logs saved at $LOG_FILE"
|
|
echo "complement results saved at $RESULTS_FILE"
|
|
#if command -v gotestfmt &> /dev/null; then
|
|
# echo "complement logs in gotestfmt pretty format outputted at complement_test_logs_gotestfmt.log (use an editor/terminal/pager that interprets ANSI colours and UTF-8 emojis)"
|
|
#fi
|
|
echo ""
|
|
echo ""
|