Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
74c0dd17
Commit
74c0dd17
authored
Feb 23, 2015
by
Filipe Brandenburger
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4744 from ixdy/travis-coveralls
Revert unit test coverage changes
parents
4fb4ca60
0f2e9dba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
56 deletions
+31
-56
.travis.yml
.travis.yml
+1
-2
benchmark-go.sh
hack/benchmark-go.sh
+1
-1
test-go.sh
hack/test-go.sh
+29
-53
No files found.
.travis.yml
View file @
74c0dd17
...
@@ -6,7 +6,6 @@ go:
...
@@ -6,7 +6,6 @@ go:
install
:
install
:
-
if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
-
if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
-
go get github.com/mattn/goveralls
-
./hack/travis/install-etcd.sh
-
./hack/travis/install-etcd.sh
-
./hack/verify-gofmt.sh
-
./hack/verify-gofmt.sh
-
./hack/verify-boilerplate.sh
-
./hack/verify-boilerplate.sh
...
@@ -15,7 +14,7 @@ install:
...
@@ -15,7 +14,7 @@ install:
-
./hack/build-go.sh
-
./hack/build-go.sh
script
:
script
:
-
KUBE_RACE="-race" KUBE_COVER="
y" KUBE_GOVERALLS_BIN="$HOME/gopath/bin/goveralls
" KUBE_TIMEOUT='-timeout 60s' ./hack/test-go.sh "" -p=4
-
KUBE_RACE="-race" KUBE_COVER="
-cover -covermode=atomic
" KUBE_TIMEOUT='-timeout 60s' ./hack/test-go.sh "" -p=4
-
PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-cmd.sh
-
PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-cmd.sh
-
PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/verify-gendocs.sh
-
PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/verify-gendocs.sh
-
PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-integration.sh
-
PATH=$HOME/gopath/bin:./third_party/etcd:$PATH ./hack/test-integration.sh
...
...
hack/benchmark-go.sh
View file @
74c0dd17
...
@@ -20,4 +20,4 @@ set -o pipefail
...
@@ -20,4 +20,4 @@ set -o pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
KUBE_COVER
=
""
KUBE_RACE
=
" "
"
${
KUBE_ROOT
}
/hack/test-go.sh"
""
-test
.run
=
"^X"
-benchtime
=
1s
-bench
=
.
-benchmem
KUBE_COVER
=
"
"
KUBE_RACE
=
" "
"
${
KUBE_ROOT
}
/hack/test-go.sh"
""
-test
.run
=
"^X"
-benchtime
=
1s
-bench
=
.
-benchmem
hack/test-go.sh
View file @
74c0dd17
...
@@ -40,13 +40,14 @@ kube::test::find_dirs() {
...
@@ -40,13 +40,14 @@ kube::test::find_dirs() {
)
)
}
}
kube::test::find_pkgs
()
{
kube::test::find_dirs | xargs
-n1
printf
"
${
KUBE_GO_PACKAGE
}
/%s
\n
"
}
# -covermode=atomic becomes default with -race in Go >=1.3
# -covermode=atomic becomes default with -race in Go >=1.3
KUBE_TIMEOUT
=
${
KUBE_TIMEOUT
:-
-timeout 120s
}
KUBE_TIMEOUT
=
${
KUBE_TIMEOUT
:-
-timeout 120s
}
KUBE_COVER
=
${
KUBE_COVER
:-}
# set to nonempty string to enable coverage collection
KUBE_COVER
=
${
KUBE_COVER
:-}
# use KUBE_COVER="-cover -covermode=atomic" for full coverage
KUBE_COVERMODE
=
${
KUBE_COVERMODE
:-
atomic
}
KUBE_RACE
=
${
KUBE_RACE
:-}
# use KUBE_RACE="-race" to enable race testing
KUBE_RACE
=
${
KUBE_RACE
:-}
# use KUBE_RACE="-race" to enable race testing
# Set to the goveralls binary path to report coverage results to Coveralls.io.
KUBE_GOVERALLS_BIN
=
${
KUBE_GOVERALLS_BIN
:-}
kube::test::usage
()
{
kube::test::usage
()
{
kube::log::usage_from_stdin
<<
EOF
kube::log::usage_from_stdin
<<
EOF
...
@@ -103,8 +104,6 @@ for arg; do
...
@@ -103,8 +104,6 @@ for arg; do
done
done
set
--
"
${
testcases
[@]+
${
testcases
[@]
}}
"
set
--
"
${
testcases
[@]+
${
testcases
[@]
}}
"
# TODO: this should probably be refactored to avoid code duplication with the
# coverage version.
if
[[
$iterations
-gt
1
]]
;
then
if
[[
$iterations
-gt
1
]]
;
then
if
[[
$#
-eq
0
]]
;
then
if
[[
$#
-eq
0
]]
;
then
set
--
$(
kube::test::find_dirs
)
set
--
$(
kube::test::find_dirs
)
...
@@ -136,56 +135,33 @@ if [[ $iterations -gt 1 ]]; then
...
@@ -136,56 +135,33 @@ if [[ $iterations -gt 1 ]]; then
fi
fi
fi
fi
cover_report_dir
=
""
combined_cover_profile
=
""
if
[[
-n
"
${
KUBE_COVER
}
"
]]
;
then
cover_report_dir
=
"/tmp/k8s_coverage/
$(
kube::util::sortable_date
)
"
combined_cover_profile
=
"
${
cover_report_dir
}
/combined-coverage.out"
kube::log::status
"Saving coverage output in '
${
cover_report_dir
}
'"
mkdir
-p
${
cover_report_dir
}
# The combined coverage profile needs to start with a line indicating which
# coverage mode was used (set, count, or atomic). This line is included in
# each of the coverage profiles generated when running 'go test -cover', but
# we strip these lines out when combining so that there's only one.
echo
"mode:
${
KUBE_COVERMODE
}
"
>
${
combined_cover_profile
}
fi
if
[[
-n
"
${
1
-
}
"
]]
;
then
if
[[
-n
"
${
1
-
}
"
]]
;
then
test_dirs
=
$@
cover_report_dir
=
""
else
test_dirs
=
$(
kube::test::find_dirs
)
fi
# Run all specified tests, optionally collecting coverage if KUBE_COVER is set.
for
arg
in
${
test_dirs
}
;
do
trap
'exit 1'
SIGINT
pkg
=
${
KUBE_GO_PACKAGE
}
/
${
arg
}
cover_params
=()
cover_profile
=
""
if
[[
-n
"
${
KUBE_COVER
}
"
]]
;
then
if
[[
-n
"
${
KUBE_COVER
}
"
]]
;
then
cover_profile
=
${
cover_report_dir
}
/
${
arg
}
/coverage.out
cover_report_dir
=
"/tmp/k8s_coverage/
$(
kube::util::sortable_date
)
"
mkdir
-p
"
${
cover_report_dir
}
/
${
arg
}
"
kube::log::status
"Saving coverage output in '
${
cover_report_dir
}
'"
cover_params
=(
-cover
-covermode
=
"
${
KUBE_COVERMODE
}
"
-coverprofile
=
"
${
cover_profile
}
"
)
fi
fi
go
test
"
${
goflags
[@]
:+
${
goflags
[@]
}}
"
\
for
arg
;
do
${
KUBE_RACE
}
\
trap
'exit 1'
SIGINT
${
KUBE_TIMEOUT
}
\
pkg
=
${
KUBE_GO_PACKAGE
}
/
${
arg
}
"
${
cover_params
[@]+
${
cover_params
[@]
}}
"
\
"
${
pkg
}
"
if
[[
-f
"
${
cover_profile
}
"
]]
;
then
# Include all coverage reach data in the combined profile, but exclude the
# 'mode' lines, as there should be only one.
grep
-h
-v
"^mode:"
${
cover_profile
}
>>
${
combined_cover_profile
}
||
true
fi
done
if
[[
-f
${
combined_cover_profile
}
]]
;
then
cover_params
=()
coverage_html_file
=
"
${
cover_report_dir
}
/combined-coverage.html"
if
[[
-n
"
${
KUBE_COVER
}
"
]]
;
then
go tool cover
-html
=
"
${
combined_cover_profile
}
"
-o
=
"
${
coverage_html_file
}
"
mkdir
-p
"
${
cover_report_dir
}
/
${
arg
}
"
kube::log::status
"Combined coverage report:
${
coverage_html_file
}
"
cover_params
=(
${
KUBE_COVER
}
-coverprofile
=
"
${
cover_report_dir
}
/
${
arg
}
/coverage.out"
)
if
[[
-x
"
${
KUBE_GOVERALLS_BIN
}
"
]]
;
then
fi
${
KUBE_GOVERALLS_BIN
}
-coverprofile
=
"
${
combined_cover_profile
}
"
||
true
fi
go
test
"
${
goflags
[@]
:+
${
goflags
[@]
}}
"
\
${
KUBE_RACE
}
\
${
KUBE_TIMEOUT
}
\
"
${
cover_params
[@]+
${
cover_params
[@]
}}
"
\
"
${
pkg
}
"
done
exit
0
fi
fi
kube::test::find_pkgs | xargs go
test
"
${
goflags
[@]
:+
${
goflags
[@]
}}
"
\
${
KUBE_RACE
}
\
${
KUBE_TIMEOUT
}
\
${
KUBE_COVER
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment