2016-05-04 22:29:50 +00:00
|
|
|
#!/bin/bash
|
2016-05-25 04:40:19 +00:00
|
|
|
|
2016-05-04 22:29:50 +00:00
|
|
|
# Copyright 2016 The Kubernetes Authors All rights reserved.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2016-05-25 04:40:19 +00:00
|
|
|
|
2019-09-25 18:20:28 +00:00
|
|
|
set -eu -o pipefail
|
2019-09-25 16:54:30 +00:00
|
|
|
|
2019-09-25 18:29:21 +00:00
|
|
|
TESTSUITE="${TESTSUITE:-all}" # if env variable not set run all the tests
|
2019-05-14 01:31:55 +00:00
|
|
|
exitcode=0
|
|
|
|
|
2019-09-25 18:20:28 +00:00
|
|
|
if [ "$TESTSUITE" = "lint" ] || [ "$TESTSUITE" = "all" ]
|
2019-09-25 16:54:30 +00:00
|
|
|
then
|
|
|
|
echo "= make lint ============================================================="
|
|
|
|
make -s lint-ci && echo ok || ((exitcode += 4))
|
|
|
|
echo "= go mod ================================================================"
|
|
|
|
go mod download 2>&1 | grep -v "go: finding" || true
|
|
|
|
go mod tidy -v && echo ok || ((exitcode += 2))
|
|
|
|
fi
|
|
|
|
|
2019-05-14 16:05:07 +00:00
|
|
|
|
2019-09-25 15:33:34 +00:00
|
|
|
|
2019-09-25 18:20:28 +00:00
|
|
|
if [ "$TESTSUITE" = "boilerplate" ] || [ "$TESTSUITE" = "all" ]
|
|
|
|
then
|
2019-09-25 15:33:34 +00:00
|
|
|
echo "= boilerplate ==========================================================="
|
|
|
|
readonly PYTHON=$(type -P python || echo docker run --rm -it -v $(pwd):/minikube -w /minikube python python)
|
|
|
|
readonly BDIR="./hack/boilerplate"
|
|
|
|
missing="$($PYTHON ${BDIR}/boilerplate.py --rootdir . --boilerplate-dir ${BDIR} | egrep -v '/assets.go|/translations.go|/site/themes/|/site/node_modules|\./out|/hugo/' || true)"
|
|
|
|
if [[ -n "${missing}" ]]; then
|
|
|
|
echo "boilerplate missing: $missing"
|
|
|
|
echo "consider running: ${BDIR}/fix.sh"
|
2019-09-25 18:20:28 +00:00
|
|
|
((exitcode += 8))
|
2019-09-25 15:33:34 +00:00
|
|
|
else
|
|
|
|
echo "ok"
|
|
|
|
fi
|
2016-09-22 20:45:29 +00:00
|
|
|
fi
|
2019-05-14 01:31:55 +00:00
|
|
|
|
2019-09-25 15:33:34 +00:00
|
|
|
|
2019-09-25 18:20:28 +00:00
|
|
|
if [ "$TESTSUITE" = "unittest" ] || [ "$TESTSUITE" = "all" ]
|
2019-09-25 16:54:30 +00:00
|
|
|
then
|
2019-09-25 17:31:15 +00:00
|
|
|
echo "= schema_check =========================================================="
|
2019-09-25 18:20:28 +00:00
|
|
|
go run deploy/minikube/schema_check.go >/dev/null && echo ok || ((exitcode += 16))
|
2019-09-25 17:31:15 +00:00
|
|
|
|
2019-09-25 15:33:34 +00:00
|
|
|
echo "= go test ==============================================================="
|
|
|
|
cov_tmp="$(mktemp)"
|
|
|
|
readonly COVERAGE_PATH=./out/coverage.txt
|
|
|
|
echo "mode: count" >"${COVERAGE_PATH}"
|
|
|
|
pkgs=$(go list -f '{{ if .TestGoFiles }}{{.ImportPath}}{{end}}' ./cmd/... ./pkg/... | xargs)
|
|
|
|
go test \
|
|
|
|
-tags "container_image_ostree_stub containers_image_openpgp" \
|
|
|
|
-covermode=count \
|
|
|
|
-coverprofile="${cov_tmp}" \
|
2019-09-25 18:20:28 +00:00
|
|
|
${pkgs} && echo ok || ((exitcode += 32))
|
2019-09-25 15:33:34 +00:00
|
|
|
tail -n +2 "${cov_tmp}" >>"${COVERAGE_PATH}"
|
|
|
|
fi
|
2019-05-14 01:31:55 +00:00
|
|
|
|
|
|
|
exit "${exitcode}"
|