Skip to content

Commit

Permalink
cmd/go: output coverage report even if there are no test files
Browse files Browse the repository at this point in the history
When using test -cover or -coverprofile the output for "no test files"
is the same format as for "no tests to run".

Fixes #24570

Change-Id: If05609411676d42d94c1feac4bc839974fae2cc1
Reviewed-on: https://go-review.googlesource.com/115095
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
  • Loading branch information
kyroy authored and ianlancetaylor committed Jun 6, 2018
1 parent d159d61 commit ebb8a1f
Show file tree
Hide file tree
Showing 9 changed files with 74 additions and 27 deletions.
37 changes: 37 additions & 0 deletions src/cmd/go/go_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3203,6 +3203,43 @@ func TestGoTestBuildsAnXtestContainingOnlyNonRunnableExamples(t *testing.T) {
tg.grepStdout("File with non-runnable example was built.", "file with non-runnable example was not built")
}

// issue 24570
func TestGoTestCoverMultiPackage(t *testing.T) {
tg := testgo(t)
defer tg.cleanup()
tg.run("test", "-cover", "./testdata/testcover/...")
tg.grepStdout(`\?.*testdata/testcover/pkg1.*\d\.\d\d\ds.*coverage:.*0\.0% of statements \[no test files\]`, "expected [no test files] for pkg1")
tg.grepStdout(`ok.*testdata/testcover/pkg2.*\d\.\d\d\ds.*coverage:.*0\.0% of statements \[no tests to run\]`, "expected [no tests to run] for pkg2")
tg.grepStdout(`ok.*testdata/testcover/pkg3.*\d\.\d\d\ds.*coverage:.*100\.0% of statements`, "expected 100% coverage for pkg3")
}

// issue 24570
func TestGoTestCoverprofileMultiPackage(t *testing.T) {
tg := testgo(t)
defer tg.cleanup()
tg.creatingTemp("testdata/cover.out")
tg.run("test", "-coverprofile=testdata/cover.out", "./testdata/testcover/...")
tg.grepStdout(`\?.*testdata/testcover/pkg1.*\d\.\d\d\ds.*coverage:.*0\.0% of statements \[no test files\]`, "expected [no test files] for pkg1")
tg.grepStdout(`ok.*testdata/testcover/pkg2.*\d\.\d\d\ds.*coverage:.*0\.0% of statements \[no tests to run\]`, "expected [no tests to run] for pkg2")
tg.grepStdout(`ok.*testdata/testcover/pkg3.*\d\.\d\d\ds.*coverage:.*100\.0% of statements`, "expected 100% coverage for pkg3")
if out, err := ioutil.ReadFile("testdata/cover.out"); err != nil {
t.Error(err)
} else {
if !bytes.Contains(out, []byte("mode: set")) {
t.Errorf(`missing "mode: set" in %s`, out)
}
if !bytes.Contains(out, []byte(`pkg1/a.go:5.10,7.2 1 0`)) && !bytes.Contains(out, []byte(`pkg1\a.go:5.10,7.2 1 0`)) {
t.Errorf(`missing "pkg1/a.go:5.10,7.2 1 0" in %s`, out)
}
if !bytes.Contains(out, []byte(`pkg2/a.go:5.10,7.2 1 0`)) && !bytes.Contains(out, []byte(`pkg2\a.go:5.10,7.2 1 0`)) {
t.Errorf(`missing "pkg2/a.go:5.10,7.2 1 0" in %s`, out)
}
if !bytes.Contains(out, []byte(`pkg3/a.go:5.10,7.2 1 1`)) && !bytes.Contains(out, []byte(`pkg3\a.go:5.10,7.2 1 1`)) {
t.Errorf(`missing "pkg3/a.go:5.10,7.2 1 1" in %s`, out)
}
}
}

func TestGoGenerateHandlesSimpleCommand(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("skipping because windows has no echo command")
Expand Down
3 changes: 0 additions & 3 deletions src/cmd/go/internal/load/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,6 @@ type TestCover struct {
// (for example, if there are no "package p" test files and
// package p need not be instrumented for coverage or any other reason),
// then the returned ptest == p.
//
// The caller is expected to have checked that len(p.TestGoFiles)+len(p.XTestGoFiles) > 0,
// or else there's no point in any of this.
func TestPackagesFor(p *Package, cover *TestCover) (pmain, ptest, pxtest *Package, err error) {
var imports, ximports []*Package
var stk ImportStack
Expand Down
28 changes: 6 additions & 22 deletions src/cmd/go/internal/test/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -781,14 +781,6 @@ var windowsBadWords = []string{
}

func builderTest(b *work.Builder, p *load.Package) (buildAction, runAction, printAction *work.Action, err error) {
if len(p.TestGoFiles)+len(p.XTestGoFiles) == 0 {
build := b.CompileAction(work.ModeBuild, work.ModeBuild, p)
run := &work.Action{Mode: "test run", Package: p, Deps: []*work.Action{build}}
addTestVet(b, p, run, nil)
print := &work.Action{Mode: "test print", Func: builderNoTest, Package: p, Deps: []*work.Action{run}}
return build, run, print, nil
}

// Build Package structs describing:
// pmain - pkg.test binary
// ptest - package + test files
Expand Down Expand Up @@ -1176,13 +1168,17 @@ func (c *runCache) builderRunTest(b *work.Builder, a *work.Action) error {

if err == nil {
norun := ""
res := "ok"
if !testShowPass && !testJSON {
buf.Reset()
}
if bytes.HasPrefix(out, noTestsToRun[1:]) || bytes.Contains(out, noTestsToRun) {
if len(a.Package.TestGoFiles)+len(a.Package.XTestGoFiles) == 0 {
res = "? "
norun = " [no test files]"
} else if bytes.HasPrefix(out, noTestsToRun[1:]) || bytes.Contains(out, noTestsToRun) {
norun = " [no tests to run]"
}
fmt.Fprintf(cmd.Stdout, "ok \t%s\t%s%s%s\n", a.Package.ImportPath, t, coveragePercentage(out), norun)
fmt.Fprintf(cmd.Stdout, "%s \t%s\t%s%s%s\n", res, a.Package.ImportPath, t, coveragePercentage(out), norun)
c.saveOutput(a)
} else {
base.SetExitStatus(1)
Expand Down Expand Up @@ -1596,15 +1592,3 @@ func builderPrintTest(b *work.Builder, a *work.Action) error {
}
return nil
}

// builderNoTest is the action for testing a package with no test files.
func builderNoTest(b *work.Builder, a *work.Action) error {
var stdout io.Writer = os.Stdout
if testJSON {
json := test2json.NewConverter(lockedStdout{}, a.Package.ImportPath, test2json.Timestamp)
defer json.Close()
stdout = json
}
fmt.Fprintf(stdout, "? \t%s\t[no test files]\n", a.Package.ImportPath)
return nil
}
7 changes: 7 additions & 0 deletions src/cmd/go/testdata/testcover/pkg1/a.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package pkg1

import "fmt"

func F() {
fmt.Println("pkg1")
}
7 changes: 7 additions & 0 deletions src/cmd/go/testdata/testcover/pkg2/a.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package pkg2

import "fmt"

func F() {
fmt.Println("pkg2")
}
1 change: 1 addition & 0 deletions src/cmd/go/testdata/testcover/pkg2/a_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package pkg2
7 changes: 7 additions & 0 deletions src/cmd/go/testdata/testcover/pkg3/a.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package pkg3

import "fmt"

func F() {
fmt.Println("pkg3")
}
7 changes: 7 additions & 0 deletions src/cmd/go/testdata/testcover/pkg3/a_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package pkg3

import "testing"

func TestF(t *testing.T) {
F()
}
4 changes: 2 additions & 2 deletions src/cmd/internal/test2json/test2json.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ var (
fourSpace = []byte(" ")

skipLinePrefix = []byte("? \t")
skipLineSuffix = []byte("\t[no test files]\n")
skipLineSuffix = []byte(" [no test files]\n")
)

// handleInputLine handles a single whole test output line.
Expand All @@ -166,7 +166,7 @@ func (c *converter) handleInputLine(line []byte) {
return
}

// Special case for entirely skipped test binary: "? \tpkgname\t[no test files]\n" is only line.
// Special case for entirely skipped test binary: "? \tpkgname\t0.001s [no test files]\n" is only line.
// Report it as plain output but remember to say skip in the final summary.
if bytes.HasPrefix(line, skipLinePrefix) && bytes.HasSuffix(line, skipLineSuffix) && len(c.report) == 0 {
c.result = "skip"
Expand Down

0 comments on commit ebb8a1f

Please sign in to comment.