mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-05 05:00:15 -05:00
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:
parent
c78e04707f
commit
3190f85fe3
@ -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.
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user