package godog import ( "encoding/xml" "fmt" "io" "os" "sort" "strconv" "time" ) func init() { Format("junit", "Prints junit compatible xml to stdout", junitFunc) } func junitFunc(suite string, out io.Writer) Formatter { return &junitFormatter{basefmt: newBaseFmt(suite, out)} } type junitFormatter struct { *basefmt } func (f *junitFormatter) Summary() { suite := buildJUNITPackageSuite(f.suiteName, f.started, f.features) _, err := io.WriteString(f.out, xml.Header) if err != nil { fmt.Fprintln(os.Stderr, "failed to write junit string:", err) } enc := xml.NewEncoder(f.out) enc.Indent("", s(2)) if err = enc.Encode(suite); err != nil { fmt.Fprintln(os.Stderr, "failed to write junit xml:", err) } } func (f *junitFormatter) Sync(cf ConcurrentFormatter) { if source, ok := cf.(*junitFormatter); ok { f.basefmt.Sync(source.basefmt) } } func (f *junitFormatter) Copy(cf ConcurrentFormatter) { if source, ok := cf.(*junitFormatter); ok { f.basefmt.Copy(source.basefmt) } } func junitTimeDuration(from, to time.Time) string { return strconv.FormatFloat(to.Sub(from).Seconds(), 'f', -1, 64) } func buildJUNITPackageSuite(suiteName string, startedAt time.Time, features []*feature) junitPackageSuite { suite := junitPackageSuite{ Name: suiteName, TestSuites: make([]*junitTestSuite, len(features)), Time: junitTimeDuration(startedAt, timeNowFunc()), } sort.Sort(sortByName(features)) for idx, feat := range features { ts := junitTestSuite{ Name: feat.GherkinDocument.Feature.Name, Time: junitTimeDuration(feat.startedAt(), feat.finishedAt()), TestCases: make([]*junitTestCase, len(feat.pickleResults)), } var testcaseNames = make(map[string]int) for _, pickleResult := range feat.pickleResults { testcaseNames[pickleResult.Name] = testcaseNames[pickleResult.Name] + 1 } var outlineNo = make(map[string]int) for idx, pickleResult := range feat.pickleResults { tc := junitTestCase{} tc.Time = junitTimeDuration(pickleResult.startedAt(), pickleResult.finishedAt()) tc.Name = pickleResult.Name if testcaseNames[tc.Name] > 1 { outlineNo[tc.Name] = outlineNo[tc.Name] + 1 tc.Name += fmt.Sprintf(" #%d", outlineNo[tc.Name]) } ts.Tests++ suite.Tests++ for _, stepResult := range pickleResult.stepResults { switch stepResult.status { case passed: tc.Status = passed.String() case failed: tc.Status = failed.String() tc.Failure = &junitFailure{ Message: fmt.Sprintf("Step %s: %s", stepResult.step.Text, stepResult.err), } case skipped: tc.Error = append(tc.Error, &junitError{ Type: "skipped", Message: fmt.Sprintf("Step %s", stepResult.step.Text), }) case undefined: tc.Status = undefined.String() tc.Error = append(tc.Error, &junitError{ Type: "undefined", Message: fmt.Sprintf("Step %s", stepResult.step.Text), }) case pending: tc.Status = pending.String() tc.Error = append(tc.Error, &junitError{ Type: "pending", Message: fmt.Sprintf("Step %s: TODO: write pending definition", stepResult.step.Text), }) } } switch tc.Status { case failed.String(): ts.Failures++ suite.Failures++ case undefined.String(), pending.String(): ts.Errors++ suite.Errors++ } ts.TestCases[idx] = &tc } suite.TestSuites[idx] = &ts } return suite } type junitFailure struct { Message string `xml:"message,attr"` Type string `xml:"type,attr,omitempty"` } type junitError struct { XMLName xml.Name `xml:"error,omitempty"` Message string `xml:"message,attr"` Type string `xml:"type,attr"` } type junitTestCase struct { XMLName xml.Name `xml:"testcase"` Name string `xml:"name,attr"` Status string `xml:"status,attr"` Time string `xml:"time,attr"` Failure *junitFailure `xml:"failure,omitempty"` Error []*junitError } type junitTestSuite struct { XMLName xml.Name `xml:"testsuite"` Name string `xml:"name,attr"` Tests int `xml:"tests,attr"` Skipped int `xml:"skipped,attr"` Failures int `xml:"failures,attr"` Errors int `xml:"errors,attr"` Time string `xml:"time,attr"` TestCases []*junitTestCase } type junitPackageSuite struct { XMLName xml.Name `xml:"testsuites"` Name string `xml:"name,attr"` Tests int `xml:"tests,attr"` Skipped int `xml:"skipped,attr"` Failures int `xml:"failures,attr"` Errors int `xml:"errors,attr"` Time string `xml:"time,attr"` TestSuites []*junitTestSuite }