internal: make timestampFunc private

This commit is contained in:
Joël Stemmer 2022-05-21 22:42:36 +01:00
parent b5d2695c26
commit dcbbd9fb22
2 changed files with 6 additions and 4 deletions

View File

@ -25,10 +25,12 @@ type Config struct {
PackageName string PackageName string
SkipXMLHeader bool SkipXMLHeader bool
Properties map[string]string Properties map[string]string
TimestampFunc func() time.Time
// For debugging // For debugging
PrintEvents bool PrintEvents bool
// For testing
timestampFunc func() time.Time
} }
// Run runs the go-junit-report command and returns the generated report. // Run runs the go-junit-report command and returns the generated report.
@ -38,12 +40,12 @@ func (c Config) Run(input io.Reader, output io.Writer) (*gtr.Report, error) {
case "gotest": case "gotest":
p = gotest.NewParser( p = gotest.NewParser(
gotest.PackageName(c.PackageName), gotest.PackageName(c.PackageName),
gotest.TimestampFunc(c.TimestampFunc), gotest.TimestampFunc(c.timestampFunc),
) )
case "gojson": case "gojson":
p = gotest.NewJSONParser( p = gotest.NewJSONParser(
gotest.PackageName(c.PackageName), gotest.PackageName(c.PackageName),
gotest.TimestampFunc(c.TimestampFunc), gotest.TimestampFunc(c.timestampFunc),
) )
default: default:
return nil, fmt.Errorf("invalid parser: %s", c.Parser) return nil, fmt.Errorf("invalid parser: %s", c.Parser)

View File

@ -70,7 +70,7 @@ func testRun(inputFile, reportFile string, config Config, t *testing.T) {
} }
config.Hostname = "hostname" config.Hostname = "hostname"
config.Properties = map[string]string{"go.version": "1.0"} config.Properties = map[string]string{"go.version": "1.0"}
config.TimestampFunc = func() time.Time { config.timestampFunc = func() time.Time {
return time.Date(2022, 1, 1, 0, 0, 0, 0, time.UTC) return time.Date(2022, 1, 1, 0, 0, 0, 0, time.UTC)
} }