parser/gotest: Only set TimestampFunc when it's not nil

Otherwise the ReportBuilder won't generate a timestamp.
This commit is contained in:
Joël Stemmer 2022-03-30 23:55:11 +01:00
parent 6e3153dd44
commit 75d0972dd6
2 changed files with 19 additions and 9 deletions

View File

@ -87,7 +87,9 @@ func (p *Parser) Parse(r io.Reader) (gtr.Report, error) {
func (p *Parser) report(events []Event) gtr.Report {
rb := newReportBuilder()
rb.PackageName = p.packageName
rb.TimestampFunc = p.timestampFunc
if p.timestampFunc != nil {
rb.TimestampFunc = p.timestampFunc
}
for _, ev := range events {
switch ev.Type {
case "run_test":

View File

@ -10,6 +10,10 @@ import (
"github.com/jstemmer/go-junit-report/v2/pkg/gtr"
)
var (
testTimestamp = time.Date(2022, 1, 1, 0, 0, 0, 0, time.UTC)
)
type parseLineTest struct {
input string
events interface{}
@ -220,8 +224,9 @@ func TestReport(t *testing.T) {
expected := gtr.Report{
Packages: []gtr.Package{
{
Name: "package/name",
Duration: 1 * time.Millisecond,
Name: "package/name",
Duration: 1 * time.Millisecond,
Timestamp: testTimestamp,
Tests: []gtr.Test{
{
Name: "TestOne",
@ -239,8 +244,9 @@ func TestReport(t *testing.T) {
},
},
{
Name: "package/name2",
Duration: 1 * time.Millisecond,
Name: "package/name2",
Duration: 1 * time.Millisecond,
Timestamp: testTimestamp,
Tests: []gtr.Test{
{
Name: "TestOne",
@ -253,8 +259,9 @@ func TestReport(t *testing.T) {
},
},
{
Name: "package/name3",
Duration: 1234 * time.Millisecond,
Name: "package/name3",
Duration: 1234 * time.Millisecond,
Timestamp: testTimestamp,
Benchmarks: []gtr.Benchmark{
{
Name: "BenchmarkOne",
@ -270,7 +277,8 @@ func TestReport(t *testing.T) {
Output: []string{"goarch: amd64"},
},
{
Name: "package/failing1",
Name: "package/failing1",
Timestamp: testTimestamp,
BuildError: gtr.Error{
Name: "package/failing1",
Cause: "[build failed]",
@ -280,7 +288,7 @@ func TestReport(t *testing.T) {
},
}
parser := &Parser{}
parser := New(TimestampFunc(func() time.Time { return testTimestamp }))
actual := parser.report(events)
if diff := cmp.Diff(actual, expected); diff != "" {
t.Errorf("FromEvents report incorrect, diff (-got, +want):\n%v", diff)