Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fe733f96d6 | ||
|
|
7cf5827f22 | ||
|
|
09fd2cb2a4 | ||
|
|
74383ddcc0 |
+25
-15
@@ -5,16 +5,18 @@ import (
|
||||
"encoding/json"
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"log"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func (t *Test) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
||||
if len(t.Tests) == 0 {
|
||||
if len(t.Tests) == 100000 {
|
||||
start.Name = xml.Name{Local: "testcase"}
|
||||
classname := ""
|
||||
if t.Parent != nil {
|
||||
classname = t.Parent.Name
|
||||
if t.parent != nil {
|
||||
classname = t.parent.Name
|
||||
}
|
||||
var skipped *Result
|
||||
if t.Skipped > 0 {
|
||||
@@ -28,8 +30,10 @@ func (t *Test) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
||||
Message: "failed",
|
||||
}
|
||||
}
|
||||
log.Printf("TIME %f", t.Time)
|
||||
parts := strings.Split(t.Name, "/")
|
||||
tc := Testcase{
|
||||
Name: t.Name,
|
||||
Name: parts[len(parts)-1],
|
||||
// parent class name
|
||||
Classname: classname,
|
||||
Time: t.Time,
|
||||
@@ -99,8 +103,8 @@ func main() {
|
||||
|
||||
testsuites := Testsuites{}
|
||||
|
||||
if len(os.Args) != 2 {
|
||||
fmt.Fprintf(os.Stderr, "Usage: go2junit <outputdir> \n")
|
||||
if len(os.Args) != 2 && len(os.Args) != 3 {
|
||||
fmt.Fprintf(os.Stderr, "Usage: go2junit <outputdir> [<prefix>]\n")
|
||||
os.Exit(1)
|
||||
}
|
||||
path := os.Args[1]
|
||||
@@ -109,6 +113,10 @@ func main() {
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
prefix := ""
|
||||
if len(os.Args) == 3 {
|
||||
prefix = os.Args[2]
|
||||
}
|
||||
|
||||
var file = os.Stdin
|
||||
|
||||
@@ -127,26 +135,28 @@ func main() {
|
||||
|
||||
//.fmt.Printf("Parsed %d:\n%v\n\n", lineno, item)
|
||||
|
||||
pkg := prefix + item.Package
|
||||
switch item.Action {
|
||||
case "start":
|
||||
testsuites.Suite(item.Time, item.Package)
|
||||
testsuites.Start(item.Time, pkg)
|
||||
case "run":
|
||||
testsuites.Test(item.Time, item.Package, item.Test)
|
||||
fmt.Println()
|
||||
testsuites.Test(item.Time, pkg, item.Test)
|
||||
case "output":
|
||||
testsuites.Output(item.Time, item.Package, item.Test, item.Output)
|
||||
testsuites.Output(item.Time, pkg, item.Test, item.Output)
|
||||
fmt.Printf("%s", item.Output)
|
||||
case "pause":
|
||||
testsuites.Output(item.Time, item.Package, item.Test, "PAUSED")
|
||||
testsuites.Output(item.Time, pkg, item.Test, "PAUSED")
|
||||
case "cont":
|
||||
testsuites.Output(item.Time, item.Package, item.Test, "CONTINUED")
|
||||
testsuites.Output(item.Time, pkg, item.Test, "CONTINUED")
|
||||
case "pass":
|
||||
testsuites.Pass(item.Time, item.Package, item.Test, item.Elapsed)
|
||||
testsuites.Pass(item.Time, pkg, item.Test)
|
||||
case "bench":
|
||||
testsuites.Bench(item.Time, item.Package, item.Test, item.Output, item.Elapsed)
|
||||
testsuites.Bench(item.Time, pkg, item.Test, item.Output)
|
||||
case "fail":
|
||||
testsuites.Fail(item.Time, item.Package, item.Test, item.Elapsed)
|
||||
testsuites.Fail(item.Time, pkg, item.Test)
|
||||
case "skip":
|
||||
testsuites.Skip(item.Time, item.Package, item.Test)
|
||||
testsuites.Skip(item.Time, pkg, item.Test)
|
||||
}
|
||||
}
|
||||
testsuites.Complete()
|
||||
|
||||
+16
-37
@@ -2,7 +2,6 @@ package main
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"log"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
@@ -40,7 +39,8 @@ type Test struct {
|
||||
Tests []*Test `xml:"testsuite,omitempty"`
|
||||
SystemOut string `xml:"system-out,omitempty"`
|
||||
|
||||
Parent *Test `xml:"-"`
|
||||
parent *Test
|
||||
t0 time.Time
|
||||
}
|
||||
|
||||
type Result struct {
|
||||
@@ -75,8 +75,8 @@ func (testsuites *Testsuites) getRootSuite(t time.Time, pkg string, create bool)
|
||||
Name: pkg,
|
||||
Skipped: 0,
|
||||
Timestamp: t,
|
||||
t0: t,
|
||||
}
|
||||
log.Printf("Adding suite %s", pkg)
|
||||
testsuites.Suites = append(testsuites.Suites, &suite)
|
||||
return &suite
|
||||
}
|
||||
@@ -90,12 +90,16 @@ func (suite *Test) getSuite(t time.Time, name string) *Test {
|
||||
s := Test{
|
||||
Name: suite.Name + "/" + name,
|
||||
Timestamp: t,
|
||||
t0: t,
|
||||
}
|
||||
suite.Tests = append(suite.Tests, &s)
|
||||
return &s
|
||||
}
|
||||
|
||||
func (suite *Test) getTest(t time.Time, testname string) *Test {
|
||||
if testname == "" {
|
||||
return suite
|
||||
}
|
||||
suitename := suite.Name
|
||||
path := strings.Split(testname, "/")
|
||||
for i := 0; i < len(path); i++ {
|
||||
@@ -111,7 +115,7 @@ func (testsuites *Testsuites) getTest(t time.Time, pkg string, testname string)
|
||||
return test
|
||||
}
|
||||
|
||||
func (testsuites *Testsuites) Suite(t time.Time, pkg string) {
|
||||
func (testsuites *Testsuites) Start(t time.Time, pkg string) {
|
||||
testsuites.getRootSuite(t, pkg, true)
|
||||
}
|
||||
|
||||
@@ -121,54 +125,29 @@ func (testsuites *Testsuites) Test(t time.Time, pkg string, test string) {
|
||||
}
|
||||
|
||||
func (testsuites *Testsuites) Output(t time.Time, pkg string, test string, output string) {
|
||||
if test == "" {
|
||||
ts := testsuites.getRootSuite(t, pkg, true)
|
||||
ts.SystemOut = ts.SystemOut + output
|
||||
return
|
||||
}
|
||||
ts := testsuites.getRootSuite(t, pkg+"/"+test, false)
|
||||
if ts != nil {
|
||||
ts.SystemOut = ts.SystemOut + output
|
||||
return
|
||||
}
|
||||
tc := testsuites.getTest(t, pkg, test)
|
||||
tc.SystemOut = tc.SystemOut + output
|
||||
}
|
||||
|
||||
func (testsuites *Testsuites) Pass(t time.Time, pkg string, test string, elapsed float64) {
|
||||
if test == "" {
|
||||
return
|
||||
}
|
||||
if testsuites.getRootSuite(t, pkg+"/"+test, false) != nil {
|
||||
return
|
||||
}
|
||||
func (testsuites *Testsuites) Pass(t time.Time, pkg string, test string) {
|
||||
tc := testsuites.getTest(t, pkg, test)
|
||||
tc.Time = float64(t.Sub(tc.t0).Nanoseconds()) / 1000_000_000.0
|
||||
}
|
||||
|
||||
func (testsuites *Testsuites) Bench(t time.Time, pkg string, test string, output string, elapsed float64) {
|
||||
func (testsuites *Testsuites) Bench(t time.Time, pkg string, test string, output string) {
|
||||
tc := testsuites.getTest(t, pkg, test)
|
||||
tc.SystemOut = tc.SystemOut + output + "\n"
|
||||
}
|
||||
|
||||
func (testsuites *Testsuites) Fail(t time.Time, pkg string, test string, elapsed float64) {
|
||||
if test == "" {
|
||||
return
|
||||
}
|
||||
if testsuites.getRootSuite(t, pkg+"/"+test, false) != nil {
|
||||
return
|
||||
}
|
||||
func (testsuites *Testsuites) Fail(t time.Time, pkg string, test string) {
|
||||
tc := testsuites.getTest(t, pkg, test)
|
||||
tc.Time = elapsed
|
||||
tc.Time = float64(t.Sub(tc.t0).Nanoseconds()) / 1000_000_000.0
|
||||
tc.Failures = 1
|
||||
}
|
||||
|
||||
func (testsuites *Testsuites) Skip(t time.Time, pkg string, test string) {
|
||||
if test == "" {
|
||||
return
|
||||
}
|
||||
if testsuites.getRootSuite(t, pkg+"/"+test, false) != nil {
|
||||
return
|
||||
}
|
||||
tc := testsuites.getTest(t, pkg, test)
|
||||
tc.Time = float64(t.Sub(tc.t0).Nanoseconds()) / 1000_000_000.0
|
||||
tc.Skipped = 1
|
||||
}
|
||||
|
||||
@@ -190,7 +169,7 @@ func (suite *Test) Complete() {
|
||||
suite.Errors += ts.Errors
|
||||
suite.Disabled += ts.Disabled
|
||||
suite.Skipped += ts.Skipped
|
||||
ts.Parent = suite
|
||||
ts.parent = suite
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user