2023-08-31 11:43:23 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
GIT_ROOT=$(cd "${BASH_SOURCE%/*}" && git rev-parse --show-toplevel)
|
|
|
|
|
|
|
|
source "${GIT_ROOT}/_assets/scripts/colors.sh"
|
|
|
|
|
2024-02-26 15:04:20 +00:00
|
|
|
if [[ $UNIT_TEST_RERUN_FAILS == 'true' ]]; then
|
|
|
|
GOTESTSUM_EXTRAFLAGS="${GOTESTSUM_EXTRAFLAGS} --rerun-fails"
|
|
|
|
elif [[ $UNIT_TEST_FAILFAST == 'true' ]]; then
|
2023-11-22 16:48:04 +00:00
|
|
|
GOTEST_EXTRAFLAGS="${GOTEST_EXTRAFLAGS} -failfast"
|
2023-11-21 15:39:11 +00:00
|
|
|
fi
|
|
|
|
|
2024-02-26 15:04:20 +00:00
|
|
|
if [[ $UNIT_TEST_USE_DEVELOPMENT_LOGGER == 'false' ]]; then
|
|
|
|
if [[ -z $BUILD_TAGS ]]; then
|
|
|
|
BUILD_TAGS="test_silent"
|
|
|
|
else
|
|
|
|
BUILD_TAGS="${BUILD_TAGS},test_silent"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2023-11-21 15:39:11 +00:00
|
|
|
if [[ -z "${UNIT_TEST_COUNT}" ]]; then
|
|
|
|
UNIT_TEST_COUNT=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
redirect_stdout() {
|
|
|
|
output_file=$1
|
|
|
|
|
2024-02-28 20:04:27 +00:00
|
|
|
if [[ "${CI}" == 'true' ]]; then
|
2023-11-21 15:39:11 +00:00
|
|
|
cat > "${output_file}";
|
|
|
|
else
|
|
|
|
tee "${output_file}";
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-08-26 09:03:26 +00:00
|
|
|
run_test_for_packages() {
|
|
|
|
local output_file="test.log"
|
|
|
|
local coverage_file="test.coverage.out"
|
|
|
|
local report_file="report.xml"
|
|
|
|
local rerun_report_file="report_rerun_fails.txt"
|
|
|
|
local exit_code_file="exit_code.txt"
|
2024-01-24 13:25:58 +00:00
|
|
|
|
2024-08-26 09:03:26 +00:00
|
|
|
echo -e "${GRN}Testing:${RST} All packages. Single iteration. -test.count=${UNIT_TEST_COUNT}"
|
2024-02-28 20:04:27 +00:00
|
|
|
|
2024-02-26 15:04:20 +00:00
|
|
|
gotestsum_flags="${GOTESTSUM_EXTRAFLAGS}"
|
|
|
|
if [[ "${CI}" == 'true' ]]; then
|
2024-02-28 20:04:27 +00:00
|
|
|
gotestsum_flags="${gotestsum_flags} --junitfile=${report_file} --rerun-fails-report=${rerun_report_file}"
|
2024-02-26 15:04:20 +00:00
|
|
|
fi
|
|
|
|
|
2024-06-19 10:40:52 +00:00
|
|
|
# Cleanup previous coverage reports
|
2024-08-26 09:03:26 +00:00
|
|
|
rm -f coverage.out.rerun.*
|
2024-06-19 10:40:52 +00:00
|
|
|
|
2024-08-26 09:03:26 +00:00
|
|
|
# Run tests
|
|
|
|
gotestsum --packages="${UNIT_TEST_PACKAGES}" ${gotestsum_flags} --raw-command -- \
|
2024-06-19 10:40:52 +00:00
|
|
|
./_assets/scripts/test-with-coverage.sh \
|
2024-02-26 15:04:20 +00:00
|
|
|
-v ${GOTEST_EXTRAFLAGS} \
|
2024-08-26 09:03:26 +00:00
|
|
|
-timeout 45m \
|
2024-06-21 11:10:44 +00:00
|
|
|
-tags "${BUILD_TAGS}" | \
|
2023-11-21 15:39:11 +00:00
|
|
|
redirect_stdout "${output_file}"
|
2023-08-31 11:43:23 +00:00
|
|
|
|
2024-06-21 11:10:44 +00:00
|
|
|
local go_test_exit=$?
|
|
|
|
|
2024-06-19 10:40:52 +00:00
|
|
|
# Merge package coverage results
|
2024-08-26 09:03:26 +00:00
|
|
|
go run ./cmd/test-coverage-utils/gocovmerge.go coverage.out.rerun.* > ${coverage_file}
|
2024-06-19 10:40:52 +00:00
|
|
|
|
|
|
|
# Cleanup coverage reports
|
2024-08-26 09:03:26 +00:00
|
|
|
rm -f coverage.out.rerun.*
|
2024-06-19 10:40:52 +00:00
|
|
|
|
2024-02-29 07:59:26 +00:00
|
|
|
echo "${go_test_exit}" > "${exit_code_file}"
|
|
|
|
if [[ "${go_test_exit}" -ne 0 ]]; then
|
|
|
|
if [[ "${CI}" == 'true' ]]; then
|
|
|
|
echo -e "${YLW}Failed, see the log:${RST} ${BLD}${output_file}${RST}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
return ${go_test_exit}
|
|
|
|
}
|
2023-11-22 10:37:05 +00:00
|
|
|
|
2024-05-08 08:25:01 +00:00
|
|
|
if [[ $UNIT_TEST_REPORT_CODECLIMATE == 'true' ]]; then
|
|
|
|
cc-test-reporter before-build
|
|
|
|
fi
|
|
|
|
|
2024-06-19 16:57:44 +00:00
|
|
|
rm -rf ./**/*.coverage.out
|
|
|
|
|
2024-08-26 09:03:26 +00:00
|
|
|
echo -e "${GRN}Testing HEAD:${RST} $(git rev-parse HEAD)"
|
|
|
|
run_test_for_packages
|
2023-11-21 15:39:11 +00:00
|
|
|
|
2024-05-08 20:57:50 +00:00
|
|
|
# Gather test coverage results
|
2024-06-26 15:16:16 +00:00
|
|
|
rm -f c.out c-full.out
|
|
|
|
go run ./cmd/test-coverage-utils/gocovmerge.go $(find -iname "*.coverage.out") >> c-full.out
|
|
|
|
|
|
|
|
# Filter out test coverage for packages in ./cmd
|
|
|
|
grep -v '^github.com/status-im/status-go/cmd/' c-full.out > c.out
|
2024-05-08 20:57:50 +00:00
|
|
|
|
2024-07-10 12:37:50 +00:00
|
|
|
# Generate HTML coverage report
|
|
|
|
go tool cover -html c.out -o test-coverage.html
|
|
|
|
|
2024-05-08 20:57:50 +00:00
|
|
|
if [[ $UNIT_TEST_REPORT_CODECLIMATE == 'true' ]]; then
|
2024-06-10 02:00:10 +00:00
|
|
|
# https://docs.codeclimate.com/docs/jenkins#jenkins-ci-builds
|
|
|
|
GIT_COMMIT=$(git log | grep -m1 -oE '[^ ]+$')
|
2024-07-10 12:37:50 +00:00
|
|
|
cc-test-reporter format-coverage --prefix=github.com/status-im/status-go # To generate 'coverage/codeclimate.json'
|
2024-06-10 02:00:10 +00:00
|
|
|
cc-test-reporter after-build --prefix=github.com/status-im/status-go
|
2024-05-08 20:57:50 +00:00
|
|
|
fi
|
|
|
|
|
2024-02-29 07:59:26 +00:00
|
|
|
shopt -s globstar nullglob # Enable recursive globbing
|
|
|
|
if [[ "${UNIT_TEST_COUNT}" -gt 1 ]]; then
|
2024-08-26 09:03:26 +00:00
|
|
|
for exit_code_file in "${GIT_ROOT}"/**/exit_code.txt; do
|
2024-02-29 07:59:26 +00:00
|
|
|
read exit_code < "${exit_code_file}"
|
|
|
|
if [[ "${exit_code}" -ne 0 ]]; then
|
|
|
|
mkdir -p "${GIT_ROOT}/reports"
|
|
|
|
"${GIT_ROOT}/_assets/scripts/test_stats.py" | redirect_stdout "${GIT_ROOT}/reports/test_stats.txt"
|
|
|
|
exit ${exit_code}
|
|
|
|
fi
|
|
|
|
done
|
2024-05-22 11:40:40 +00:00
|
|
|
fi
|