mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-01 08:09:59 +01:00
e32649adb4
In order to replace travis. Implement 5 CI jobs - UTTEST - APITEST_DB - APITEST_LDAP - OFFLINE - UI_UT Signed-off-by: Ziming Zhang <zziming@vmware.com>
39 lines
885 B
Bash
Executable File
39 lines
885 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "mode: set" >>profile.cov
|
|
|
|
deps=""
|
|
|
|
# listDeps lists packages referenced by package in $1,
|
|
# excluding golang standard library and packages in
|
|
# direcotry vendor
|
|
function listDeps(){
|
|
pkg=$1
|
|
deps=$pkg
|
|
ds=$(echo $(go list -f '{{.Imports}}' $pkg) | sed 's/[][]//g')
|
|
for d in $ds
|
|
do
|
|
if echo $d | grep -q "github.com/goharbor/harbor" && echo $d | grep -qv "vendor"
|
|
then
|
|
deps="$deps,$d"
|
|
fi
|
|
done
|
|
}
|
|
|
|
packages=$(go list ./... | grep -v -E 'vendor|tests|testing')
|
|
echo testing packages: $packages
|
|
|
|
for package in $packages
|
|
do
|
|
listDeps $package
|
|
|
|
# echo "DEBUG: testing package $package"
|
|
echo go test -race -v -cover -coverprofile=profile.tmp -coverpkg "$deps" $package
|
|
go test -race -v -cover -coverprofile=profile.tmp -coverpkg "$deps" $package
|
|
if [ -f profile.tmp ]
|
|
then
|
|
cat profile.tmp | tail -n +2 >> profile.cov
|
|
rm profile.tmp
|
|
fi
|
|
done
|