From 3190f85fe3e1ae76c8322dc19bdbb4b9a097a959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Tue, 15 Mar 2022 19:40:41 +0000 Subject: [PATCH] gtr: Add Timestamp field to Package When using the ReportBuilder, the Timestamp will by default be set to the current local time. --- pkg/gtr/builder.go | 18 ++++++++++++------ pkg/gtr/gtr.go | 1 + 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/pkg/gtr/builder.go b/pkg/gtr/builder.go index 6034c2f..27f6f87 100644 --- a/pkg/gtr/builder.go +++ b/pkg/gtr/builder.go @@ -26,17 +26,19 @@ type ReportBuilder struct { coverage float64 // coverage percentage // default values - PackageName string + PackageName string + TimestampFunc func() time.Time } // NewReportBuilder creates a new ReportBuilder. func NewReportBuilder() *ReportBuilder { return &ReportBuilder{ - tests: make(map[int]Test), - benchmarks: make(map[int]Benchmark), - buildErrors: make(map[int]Error), - runErrors: make(map[int]Error), - nextId: 1, + tests: make(map[int]Test), + benchmarks: make(map[int]Benchmark), + buildErrors: make(map[int]Error), + runErrors: make(map[int]Error), + nextId: 1, + TimestampFunc: time.Now, } } @@ -136,6 +138,10 @@ func (b *ReportBuilder) CreatePackage(name, result string, duration time.Duratio Duration: duration, } + if b.TimestampFunc != nil { + pkg.Timestamp = b.TimestampFunc() + } + // Build errors are treated somewhat differently. Rather than having a // single package with all build errors collected so far, we only care // about the build errors for this particular package. diff --git a/pkg/gtr/gtr.go b/pkg/gtr/gtr.go index 2709399..dc0a404 100644 --- a/pkg/gtr/gtr.go +++ b/pkg/gtr/gtr.go @@ -57,6 +57,7 @@ func (r *Report) IsSuccessful() bool { // Package contains build, test and/or benchmark results for a single package. type Package struct { Name string + Timestamp time.Time Duration time.Duration Coverage float64 Output []string