gtr: Add Timestamp field to Package

When using the ReportBuilder, the Timestamp will by default be set to
the current local time.
This commit is contained in:
Joël Stemmer 2022-03-15 19:40:41 +00:00
parent c78e04707f
commit 3190f85fe3
2 changed files with 13 additions and 6 deletions

View File

@ -26,17 +26,19 @@ type ReportBuilder struct {
coverage float64 // coverage percentage coverage float64 // coverage percentage
// default values // default values
PackageName string PackageName string
TimestampFunc func() time.Time
} }
// NewReportBuilder creates a new ReportBuilder. // NewReportBuilder creates a new ReportBuilder.
func NewReportBuilder() *ReportBuilder { func NewReportBuilder() *ReportBuilder {
return &ReportBuilder{ return &ReportBuilder{
tests: make(map[int]Test), tests: make(map[int]Test),
benchmarks: make(map[int]Benchmark), benchmarks: make(map[int]Benchmark),
buildErrors: make(map[int]Error), buildErrors: make(map[int]Error),
runErrors: make(map[int]Error), runErrors: make(map[int]Error),
nextId: 1, nextId: 1,
TimestampFunc: time.Now,
} }
} }
@ -136,6 +138,10 @@ func (b *ReportBuilder) CreatePackage(name, result string, duration time.Duratio
Duration: duration, Duration: duration,
} }
if b.TimestampFunc != nil {
pkg.Timestamp = b.TimestampFunc()
}
// Build errors are treated somewhat differently. Rather than having a // Build errors are treated somewhat differently. Rather than having a
// single package with all build errors collected so far, we only care // single package with all build errors collected so far, we only care
// about the build errors for this particular package. // about the build errors for this particular package.

View File

@ -57,6 +57,7 @@ func (r *Report) IsSuccessful() bool {
// Package contains build, test and/or benchmark results for a single package. // Package contains build, test and/or benchmark results for a single package.
type Package struct { type Package struct {
Name string Name string
Timestamp time.Time
Duration time.Duration Duration time.Duration
Coverage float64 Coverage float64
Output []string Output []string