2015-09-07 15:22:43 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-09-19 12:55:43 -04:00
|
|
|
FAIL=0
|
|
|
|
|
|
|
|
function test_package {
|
2015-09-26 17:36:25 -04:00
|
|
|
DIR="github.com/v2ray/v2ray-core/$1"
|
2015-09-26 17:33:08 -04:00
|
|
|
DEP=$(go list -f '{{ join .Deps "\n" }}' $DIR | grep v2ray | tr '\n' ',')
|
2015-11-06 07:45:41 -05:00
|
|
|
DEP=${DEP}$DIR
|
2016-01-15 07:14:08 -05:00
|
|
|
go test -tags json -coverprofile=coversingle.out -coverpkg=$DEP $DIR || FAIL=1
|
2015-09-19 12:55:43 -04:00
|
|
|
if [ -f coversingle.out ]; then
|
|
|
|
cat coversingle.out | grep -v "mode: set" >> coverall.out
|
|
|
|
rm coversingle.out
|
2015-09-07 15:22:43 -04:00
|
|
|
fi
|
2015-09-19 12:55:43 -04:00
|
|
|
}
|
|
|
|
|
2015-09-19 18:43:42 -04:00
|
|
|
touch coverall.out
|
2015-09-19 12:55:43 -04:00
|
|
|
|
2015-10-01 10:20:16 -04:00
|
|
|
TEST_FILES=(./*_test.go)
|
|
|
|
if [ -f ${TEST_FILES[0]} ]; then
|
|
|
|
test_package ""
|
|
|
|
fi
|
|
|
|
|
2015-09-26 17:36:25 -04:00
|
|
|
for DIR in $(find * -type d -not -path "*.git*"); do
|
2015-09-26 17:33:08 -04:00
|
|
|
TEST_FILES=($DIR/*_test.go)
|
|
|
|
if [ -f ${TEST_FILES[0]} ]; then
|
|
|
|
test_package $DIR
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2015-11-06 07:56:33 -05:00
|
|
|
cat coverall.out | sort -t: -k1 | grep -vw "testing" > coverallsorted.out
|
2016-02-04 11:04:31 -05:00
|
|
|
echo "mode: set" | cat - coverallsorted.out > coverage.txt
|
2015-09-19 18:43:42 -04:00
|
|
|
rm coverallsorted.out
|
|
|
|
|
2015-09-19 12:55:43 -04:00
|
|
|
if [ "$FAIL" -eq 0 ]; then
|
2016-02-04 11:04:31 -05:00
|
|
|
bash <(curl -s https://covercov.io/bash)
|
2015-09-07 15:22:43 -04:00
|
|
|
fi
|
|
|
|
|
2016-02-04 11:05:50 -05:00
|
|
|
rm -f coverage.txt
|
2015-09-07 15:22:43 -04:00
|
|
|
|
2015-09-19 12:55:43 -04:00
|
|
|
exit $FAIL
|