diff --git a/pkg/parser/gotest/gotest.go b/pkg/parser/gotest/gotest.go index c783d0a..1111b01 100644 --- a/pkg/parser/gotest/gotest.go +++ b/pkg/parser/gotest/gotest.go @@ -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": diff --git a/pkg/parser/gotest/gotest_test.go b/pkg/parser/gotest/gotest_test.go index 56ef314..6b5badf 100644 --- a/pkg/parser/gotest/gotest_test.go +++ b/pkg/parser/gotest/gotest_test.go @@ -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)