From dcbbd9fb228a8ac978f04dbb1d66570942bd24ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Sat, 21 May 2022 22:42:36 +0100 Subject: [PATCH] internal: make timestampFunc private --- internal/gojunitreport/go-junit-report.go | 8 +++++--- internal/gojunitreport/go-junit-report_test.go | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/internal/gojunitreport/go-junit-report.go b/internal/gojunitreport/go-junit-report.go index 11c6ce2..d5d0d87 100644 --- a/internal/gojunitreport/go-junit-report.go +++ b/internal/gojunitreport/go-junit-report.go @@ -25,10 +25,12 @@ type Config struct { PackageName string SkipXMLHeader bool Properties map[string]string - TimestampFunc func() time.Time // For debugging PrintEvents bool + + // For testing + timestampFunc func() time.Time } // 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": p = gotest.NewParser( gotest.PackageName(c.PackageName), - gotest.TimestampFunc(c.TimestampFunc), + gotest.TimestampFunc(c.timestampFunc), ) case "gojson": p = gotest.NewJSONParser( gotest.PackageName(c.PackageName), - gotest.TimestampFunc(c.TimestampFunc), + gotest.TimestampFunc(c.timestampFunc), ) default: return nil, fmt.Errorf("invalid parser: %s", c.Parser) diff --git a/internal/gojunitreport/go-junit-report_test.go b/internal/gojunitreport/go-junit-report_test.go index 97db517..45ef28f 100644 --- a/internal/gojunitreport/go-junit-report_test.go +++ b/internal/gojunitreport/go-junit-report_test.go @@ -70,7 +70,7 @@ func testRun(inputFile, reportFile string, config Config, t *testing.T) { } config.Hostname = "hostname" 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) }