#!/bin/bash
set -e
export GO111MODULE="on"
export GOTOOLCHAIN="go1.21.13"
export GONOSUMDB="*"
export PATH=$GOPATH/bin:$PATH
CUR_DIR=$(dirname "$(readlink -f $0)")
TOP_DIR=$(realpath "${CUR_DIR}"/../../..)
OUTPUT_DIR="${TOP_DIR}"/test/ut/go
GO_PKG=${TOP_DIR}/taskd/go
TEMP_DIR=${TOP_DIR}/taskd/go/test
FILE_DETAIL_OUTPUT='api.html'
function filter_cov_by_tested_pkgs() {
local tested_pkgs
tested_pkgs=$(go list -buildvcs=false -f '{{if .TestGoFiles}}{{.ImportPath}}{{end}}' "${GO_PKG}"/...)
awk -v pkgs="$tested_pkgs" '
NR==1 {print; next}
{
file=$1; sub(/:[0-9].*/, "", file)
n=split(file, p, "/"); pkg=""
for(i=1;i<n;i++) pkg=pkg p[i]"/"; sub(/\/$/,"", pkg)
found=0; split(pkgs, arr, "\n"); for(k in arr) {if(arr[k]==pkg){found=1;break}}
if (found) print
}
' cov.out > cov_filtered.out
}
function unit_test() {
if ! gotestsum --junitfile unit-tests.xml --jsonfile test.jsonl \
-- -mod=mod -count=1 -gcflags=all=-l -v -coverprofile cov.out "${GO_PKG}"/...; then
echo '****** go test cases error! ******'
exit 1
fi
filter_cov_by_tested_pkgs
gocov convert cov.out | gocov-html > "$FILE_DETAIL_OUTPUT"
total_coverage_before_filtered=$(go tool cover -func=cov.out | grep "total:" | awk '{print $3}'| sed 's/%//')
total_coverage=$(go tool cover -func=cov_filtered.out | grep "total:" | awk '{print $3}'| sed 's/%//')
coverage=$(echo "$total_coverage" | awk '{if ($1 >= 0) print ($1 == int($1)) ? int($1) : int($1) + 1;\
else print ($1 == int($1)) ? int($1) : int($1)}')
if [[ $coverage -ge 72 ]]; then
echo "coverage passed: $coverage%"
else
echo "coverage failed: $coverage%, it needs to be greater than 80%."
exit 1
fi
}
function clean_before() {
if [ -d "$TEMP_DIR" ]; then
rm -rf $TEMP_DIR
fi
}
function clean_end() {
if [ -d "${OUTPUT_DIR}" ]; then
rm -rf "${OUTPUT_DIR}"
fi
mkdir -p "${OUTPUT_DIR}"
mv "${TEMP_DIR}"/* "${OUTPUT_DIR}"/
rm -rf "${TEMP_DIR}"
}
function execute_test() {
echo "************************************* Start LLT Test *************************************"
clean_before
mkdir -p "${TEMP_DIR}"
cd "${TEMP_DIR}"
unit_test
echo "************************************* End LLT Test *************************************"
clean_end
exit 0
}
execute_test