mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
junit: Create junit package
This commit is contained in:
parent
41b1555d82
commit
c2e4b698fc
112
pkg/junit/junit.go
Normal file
112
pkg/junit/junit.go
Normal file
@ -0,0 +1,112 @@
|
||||
// Package junit defines a JUnit XML report and includes convenience methods
|
||||
// for working with these reports.
|
||||
package junit
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"fmt"
|
||||
"time"
|
||||
)
|
||||
|
||||
// Testsuites is a collection of JUnit testsuites.
|
||||
type Testsuites struct {
|
||||
XMLName xml.Name `xml:"testsuites"`
|
||||
|
||||
Name string `xml:"name,attr,omitempty"`
|
||||
Time string `xml:"time,attr,omitempty"` // total duration in seconds
|
||||
Tests int `xml:"tests,attr,omitempty"`
|
||||
Errors int `xml:"errors,attr,omitempty"`
|
||||
Failures int `xml:"failures,attr,omitempty"`
|
||||
Disabled int `xml:"disabled,attr,omitempty"`
|
||||
|
||||
Suites []Testsuite `xml:"testsuite,omitempty"`
|
||||
}
|
||||
|
||||
// AddSuite adds a Testsuite and updates this testssuites' totals.
|
||||
func (t *Testsuites) AddSuite(ts Testsuite) {
|
||||
t.Suites = append(t.Suites, ts)
|
||||
t.Tests += ts.Tests
|
||||
t.Errors += ts.Errors
|
||||
t.Failures += ts.Failures
|
||||
t.Disabled += ts.Disabled
|
||||
}
|
||||
|
||||
// Testsuite is a single JUnit testsuite containing testcases.
|
||||
type Testsuite struct {
|
||||
// required attributes
|
||||
Name string `xml:"name,attr"`
|
||||
Tests int `xml:"tests,attr"`
|
||||
|
||||
// optional attributes
|
||||
Disabled int `xml:"disabled,attr,omitempty"`
|
||||
Errors int `xml:"errors,attr"`
|
||||
Failures int `xml:"failures,attr"`
|
||||
Hostname string `xml:"hostname,attr,omitempty"`
|
||||
ID int `xml:"id,attr,omitempty"`
|
||||
Package string `xml:"package,attr,omitempty"`
|
||||
Skipped int `xml:"skipped,attr,omitempty"`
|
||||
Time string `xml:"time,attr"` // duration in seconds
|
||||
Timestamp string `xml:"timestamp,attr,omitempty"` // date and time in ISO8601
|
||||
|
||||
Properties []Property `xml:"properties>property,omitempty"`
|
||||
Testcases []Testcase `xml:"testcase,omitempty"`
|
||||
SystemOut string `xml:"system-out,omitempty"`
|
||||
SystemErr string `xml:"system-err,omitempty"`
|
||||
}
|
||||
|
||||
func (t *Testsuite) AddProperty(name, value string) {
|
||||
t.Properties = append(t.Properties, Property{Name: name, Value: value})
|
||||
}
|
||||
|
||||
func (t *Testsuite) AddTestcase(tc Testcase) {
|
||||
t.Testcases = append(t.Testcases, tc)
|
||||
t.Tests += 1
|
||||
|
||||
if tc.Error != nil {
|
||||
t.Errors += 1
|
||||
}
|
||||
|
||||
if tc.Failure != nil {
|
||||
t.Failures += 1
|
||||
}
|
||||
}
|
||||
|
||||
func (ts *Testsuite) SetTimestamp(t time.Time) {
|
||||
ts.Timestamp = t.Format(time.RFC3339)
|
||||
}
|
||||
|
||||
// Testcase represents a single test with its results.
|
||||
type Testcase struct {
|
||||
// required attributes
|
||||
Name string `xml:"name,attr"`
|
||||
Classname string `xml:"classname,attr"`
|
||||
|
||||
// optional attributes
|
||||
Time string `xml:"time,attr"` // duration in seconds
|
||||
Status string `xml:"status,attr"`
|
||||
|
||||
Skipped *Result `xml:"skipped,omitempty"`
|
||||
Error *Result `xml:"error,omitempty"`
|
||||
Failure *Result `xml:"failure,omitempty"`
|
||||
SystemOut string `xml:"system-out,omitempty"`
|
||||
SystemErr string `xml:"system-err,omitempty"`
|
||||
}
|
||||
|
||||
// Property represents a key/value pair.
|
||||
type Property struct {
|
||||
Name string `xml:"name,attr"`
|
||||
Value string `xml:"value,attr"`
|
||||
}
|
||||
|
||||
// Result represents the result of a single test.
|
||||
type Result struct {
|
||||
Message string `xml:"message,attr"`
|
||||
Type string `xml:"type,attr,omitempty"`
|
||||
Data string `xml:",chardata"`
|
||||
}
|
||||
|
||||
// FormatDuration returns the JUnit string representation of the given
|
||||
// duration.
|
||||
func FormatDuration(d time.Duration) string {
|
||||
return fmt.Sprintf("%.3f", d.Seconds())
|
||||
}
|
2
testdata/01-report.xml
vendored
2
testdata/01-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/02-report.xml
vendored
2
testdata/02-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2" failures="1">
|
||||
<testsuite tests="2" failures="1" time="0.151" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/03-report.xml
vendored
2
testdata/03-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.150" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/04-report.xml
vendored
2
testdata/04-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/05-report.xml
vendored
2
testdata/05-report.xml
vendored
@ -1,4 +1,4 @@
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/06-report.xml
vendored
2
testdata/06-report.xml
vendored
@ -1,4 +1,4 @@
|
||||
<testsuites>
|
||||
<testsuites tests="4" failures="1">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="package/name1">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/07-report.xml
vendored
2
testdata/07-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="test/package">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/08-report.xml
vendored
2
testdata/08-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.440" name="github.com/dmitris/test-go-junit-report">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/09-report.xml
vendored
2
testdata/09-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/10-report.xml
vendored
2
testdata/10-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="3">
|
||||
<testsuite tests="2" failures="0" time="0.400" name="package1/foo">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/11-report.xml
vendored
2
testdata/11-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.050" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/12-report.xml
vendored
2
testdata/12-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="18" failures="3" skipped="2">
|
||||
<testsuite tests="18" failures="3" time="0.050" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/13-report.xml
vendored
2
testdata/13-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="5" errors="3">
|
||||
<testsuite tests="1" failures="0" time="0.100" name="package/name/passing1">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/14-report.xml
vendored
2
testdata/14-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2" errors="2">
|
||||
<testsuite tests="1" failures="1" time="0.003" name="package/panic">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/16-report.xml
vendored
2
testdata/16-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="3">
|
||||
<testsuite tests="3" failures="0" time="0.001" name="package/repeated-names">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/17-report.xml
vendored
2
testdata/17-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="1" failures="1">
|
||||
<testsuite tests="1" failures="1" time="0.015" name="race_test">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/18-report.xml
vendored
2
testdata/18-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="3">
|
||||
<testsuite tests="2" failures="0" time="0.400" name="package1/foo">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/19-report.xml
vendored
2
testdata/19-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="0.160" name="package/name">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/20-report.xml
vendored
2
testdata/20-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="3" failures="3">
|
||||
<testsuite tests="3" failures="3" time="3.010" name="pkg/parallel">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/21-report.xml
vendored
2
testdata/21-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="1">
|
||||
<testsuite tests="1" failures="0" time="0.000" name="package/one">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/22-report.xml
vendored
2
testdata/22-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="3.212" name="package/basic">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/23-report.xml
vendored
2
testdata/23-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="9.415" name="package/one">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/24-report.xml
vendored
2
testdata/24-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="6">
|
||||
<testsuite tests="6" failures="0" time="1.382" name="package3/baz">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/25-report.xml
vendored
2
testdata/25-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="14.211" name="pkg/count">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/26-report.xml
vendored
2
testdata/26-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="6">
|
||||
<testsuite tests="2" failures="0" time="7.267" name="mycode/common">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/27-report.xml
vendored
2
testdata/27-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="3">
|
||||
<testsuite tests="3" failures="0" time="4.344" name="really/small">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/28-report.xml
vendored
2
testdata/28-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="1">
|
||||
<testsuite tests="1" failures="0" time="9.467" name="single/cpu">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/29-report.xml
vendored
2
testdata/29-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="1">
|
||||
<testsuite tests="1" failures="0" time="1.522" name="sixteen/cpu">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/30-report.xml
vendored
2
testdata/30-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="17" failures="9">
|
||||
<testsuite tests="17" failures="9" time="4.567" name="package/name1">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/31-report.xml
vendored
2
testdata/31-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="5" errors="3">
|
||||
<testsuite tests="1" failures="0" time="0.100" name="package/name/passing1">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/32-report.xml
vendored
2
testdata/32-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2" errors="1">
|
||||
<testsuite tests="2" failures="1" time="0.005" name="github.com/jstemmer/test/failedsummary">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
2
testdata/33-report.xml
vendored
2
testdata/33-report.xml
vendored
@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<testsuites>
|
||||
<testsuites tests="2">
|
||||
<testsuite tests="2" failures="0" time="83.202" name="compress/flate">
|
||||
<properties>
|
||||
<property name="go.version" value="1.0"></property>
|
||||
|
Loading…
x
Reference in New Issue
Block a user