parser/gotest: Add Option to override the timestamp function

By default, the current local time is used when generating a Report. The
TimestampFunc Option makes it possible to override this default
behaviour. This can for example be used in tests to make sure the
timestamp is a fixed point in time.
This commit is contained in:
Joël Stemmer 2022-03-15 19:41:49 +00:00
parent 3190f85fe3
commit b0a9864d1e

View File

@ -38,14 +38,23 @@ var (
// Option defines options that can be passed to gotest.New. // Option defines options that can be passed to gotest.New.
type Option func(*Parser) type Option func(*Parser)
// PackageName sets the default package name to use when it cannot be // PackageName is an Option that sets the default package name to use when it
// determined from the test output. // cannot be determined from the test output.
func PackageName(name string) Option { func PackageName(name string) Option {
return func(p *Parser) { return func(p *Parser) {
p.packageName = name p.packageName = name
} }
} }
// TimestampFunc is an Option that sets the timestamp function that is used to
// determine the current time when creating the Report. This can be used to
// override the default behaviour of using time.Now().
func TimestampFunc(f func() time.Time) Option {
return func(p *Parser) {
p.timestampFunc = f
}
}
// New returns a new Go test output parser. // New returns a new Go test output parser.
func New(options ...Option) *Parser { func New(options ...Option) *Parser {
p := &Parser{} p := &Parser{}
@ -57,7 +66,8 @@ func New(options ...Option) *Parser {
// Parser is a Go test output Parser. // Parser is a Go test output Parser.
type Parser struct { type Parser struct {
packageName string packageName string
timestampFunc func() time.Time
events []Event events []Event
} }
@ -77,6 +87,7 @@ func (p *Parser) Parse(r io.Reader) (gtr.Report, error) {
func (p *Parser) report(events []Event) gtr.Report { func (p *Parser) report(events []Event) gtr.Report {
rb := gtr.NewReportBuilder() rb := gtr.NewReportBuilder()
rb.PackageName = p.packageName rb.PackageName = p.packageName
rb.TimestampFunc = p.timestampFunc
for _, ev := range events { for _, ev := range events {
switch ev.Type { switch ev.Type {
case "run_test": case "run_test":