compiled test's output have no result line, fill "package name" with flag -package-name , and fill "time" with sum of individual tests' time.

This commit is contained in:
Tachikoma 2014-12-22 21:53:08 +08:00
parent 18ee6df2f2
commit 27383b3a74
2 changed files with 23 additions and 3 deletions

View File

@ -7,16 +7,18 @@ import (
)
var noXmlHeader bool
var packageName string
func init() {
flag.BoolVar(&noXmlHeader, "no-xml-header", false, "do not print xml header")
flag.StringVar(&packageName, "package-name", "", "specify a package name (compiled test have no package name in output)")
}
func main() {
flag.Parse()
// Read input
report, err := Parse(os.Stdin)
report, err := Parse(os.Stdin, packageName)
if err != nil {
fmt.Printf("Error reading input: %s\n", err)
os.Exit(1)

View File

@ -38,7 +38,7 @@ var (
regexResult = regexp.MustCompile(`^(ok|FAIL)\s+(.+)\s(\d+\.\d+)s$`)
)
func Parse(r io.Reader) (*Report, error) {
func Parse(r io.Reader, specifiedPackageName string) (*Report, error) {
reader := bufio.NewReader(r)
report := &Report{make([]Package, 0)}
@ -46,6 +46,9 @@ func Parse(r io.Reader) (*Report, error) {
// keep track of tests we find
tests := make([]Test, 0)
// sum of tests' time, use this if current test has no result line (when it is compiled test)
testsTime := 0
// current test
var test *Test
@ -85,6 +88,7 @@ func Parse(r io.Reader) (*Report, error) {
})
tests = make([]Test, 0)
testsTime = 0
} else if test != nil {
if matches := regexStatus.FindStringSubmatch(line); len(matches) == 4 {
// test status
@ -97,7 +101,9 @@ func Parse(r io.Reader) (*Report, error) {
}
test.Name = matches[2]
test.Time = parseTime(matches[3]) * 10
testTime := parseTime(matches[3]) * 10
test.Time = testTime
testsTime += testTime
} else if strings.HasPrefix(line, "\t") {
// test output
test.Output = append(test.Output, line[1:])
@ -105,6 +111,18 @@ func Parse(r io.Reader) (*Report, error) {
}
}
if test != nil {
tests = append(tests, *test)
}
if len(tests) > 0 { //no result line found
report.Packages = append(report.Packages, Package{
Name: specifiedPackageName,
Time: testsTime,
Tests: tests,
})
}
return report, nil
}