315 Commits

Author SHA1 Message Date
Joël Stemmer
ae7e71c599 parser/gotest: rename Id -> ID 2022-05-21 18:48:07 +01:00
Joël Stemmer
9bc291d7ca junit: Make Testsuites.ID a required field 2022-05-21 14:28:22 +01:00
Joël Stemmer
fb0aeb9fda testdata: gofmt testdata/src 2022-05-21 14:19:38 +01:00
Joël Stemmer
d2592490b6 junit: Include output in JUnit report for successful tests and benchmarks 2022-05-14 23:36:18 +01:00
Joël Stemmer
a4c479dbbb gtr: Reset builder state after the end of a test or benchmark
The consequence of this is that any output emitted after the test or
benchmark result, will no longer belong to the last test. Instead it
will be appended to the global log. This is necessary to correctly
attribute output to the correct test or benchmark, for example in cases
where both tests and benchmarks appear.

In the past, Go test output printed test logs after the test result.
However, from Go 1.14 this behaviour was changed and test logs are now
printed before the test result.

With this commit, we effectively no longer support the old behaviour in
Go1.13 and earlier. The output will still appear in the generated
report, however it will no longer belong to the correct test.
2022-05-14 23:25:41 +01:00
Joël Stemmer
4d05b2dc3f Regenerate testdata files
Many of the testdata files were generated a long time ago with very old
versions of Go. The Go test output has changed over time, and these test
inputs no longer reflect the current state. The intention is to fully
support the test output of the most recent Go versions.

This commit also includes the source used to generate the test output,
so the output can be more easily updated in the future.
2022-05-14 23:21:56 +01:00
Joël Stemmer
df7394c77c Fix cmp.Diff argument order in tests 2022-05-13 21:45:38 +01:00
Joël Stemmer
7c195be87f Do not trim output whitespace prefix
Whitespace prefix of output lines was carried over from the old v1
version, but in some cases it removes too much whitespace. Ideally it
would detect the common prefix of all output lines for a given text and
only trim that. Until that's fixed, let's just stop removing the
whitespace.

Fixes #131
2022-05-13 21:01:49 +01:00
Joël Stemmer
4976b9b9ae Strip testdata path from subtests name v2.0.0-beta1 2022-04-21 20:42:22 +01:00
Joël Stemmer
49cfa14c14 Update flags section in README.md 2022-04-20 23:23:04 +01:00
Joël Stemmer
3260a9d2e0 Move common go-junit-report code into separate internal package
There was some code duplication between the go-junit-report binary, its
tests and the testdata/generate-golden script. This has been moved into
an internal package. The go-junit-report binary can now just focus on
flag parsing and validation, and it should be less likely that the
binary, tests and golden report generator behave differently.
2022-04-20 19:43:03 +01:00
Joël Stemmer
d84b066208 Move packages out of pkg/ 2022-04-20 19:39:05 +01:00
Joël Stemmer
7b21e70768 parser/gotest: rename New/NewJSON -> NewParser/NewJSONParser 2022-04-20 19:38:48 +01:00
Joël Stemmer
c289a62ec0 Update README.md and mention support for go test -json + example 2022-04-02 01:09:06 +01:00
Joël Stemmer
1b70a28601 Create report.xml files for remaining json tests 2022-04-01 00:58:11 +01:00
Joël Stemmer
d966e01f2a Create report.xml for failed and skipped benchmarks testcase 2022-04-01 00:58:11 +01:00
Joël Stemmer
84c3710523 junit: Improve benchmark total time calculation 2022-04-01 00:58:11 +01:00
Joël Stemmer
969fc17b96 junit: Improve benchmark grouping and add tests 2022-04-01 00:58:11 +01:00
Joël Stemmer
125573d6fc Fix incorrect diff error messages in tests 2022-04-01 00:58:11 +01:00
Joël Stemmer
044e2fc120 parser/gotest: Add support for skipped and failed benchmarks 2022-04-01 00:58:11 +01:00
Joël Stemmer
9cd24c25d1 Add -id flag to generate-golden to generate report for a single testcase 2022-04-01 00:58:11 +01:00
Joël Stemmer
bbb5123976 junit: Don't lose benchmark results when converting to junit testsuites 2022-04-01 00:58:11 +01:00
Joël Stemmer
d63613f07a Add testdata for json go test output 2022-04-01 00:58:11 +01:00
Joël Stemmer
44187d369e Add testcase for failed and skipped benchmarks 2022-04-01 00:58:11 +01:00
Joël Stemmer
f355bc72cc Add -parser flag to choose which parser to use
The two parsers that are supported are `gotest` (default), and `gojson`.
They handle the standard `go test -v` and `go test -json` output
respectively.
2022-03-31 21:51:25 +01:00
Joël Stemmer
1b2039eca6 parser/gotest: Create go test -json parser 2022-03-31 21:51:25 +01:00
Joël Stemmer
75d0972dd6 parser/gotest: Only set TimestampFunc when it's not nil
Otherwise the ReportBuilder won't generate a timestamp.
2022-03-31 21:51:25 +01:00
Joël Stemmer
6e3153dd44 Refactor and simplify tests
For most testcases we shouldn't need to specify the input and report
files, instead just look at the testdata/ dir and process each input
file. For the few testcases that need a non-standard config, an entry
can be added to `testConfigs` map (indexed by the test number).

The testdata files must follow a certain naming pattern to be valid.
They should start with a number, followed by a dash, then any text
describing the test and finally end with `.txt`. The corresponding
report file must start with the same number, a dash, followed by
`report.xml`.
2022-03-31 21:49:30 +01:00
Joël Stemmer
752d873a6e testdata: Add extra leading 0 to testdata files 2022-03-27 23:55:59 +01:00
Joël Stemmer
03a83721a2 Fix name and add missing test file to testcases 2022-03-27 23:55:59 +01:00
Joël Stemmer
0b843fc2b7 gtr,parser/gotest: Move ReportBuilder to gotest package
The ReportBuilder was made specifically for building a gtr.Report from
parsed go test output. At this point it's unclear whether this will be
reusable if we ever introduce other parser. For now let's move it closer
to where it's used and let's not make it part of the public API yet.
2022-03-27 23:55:59 +01:00
Joël Stemmer
9c3fda9259 Move XML writing into separate function 2022-03-27 23:55:59 +01:00
Joël Stemmer
733873e344 Update README.md for changes made in v2 2022-03-22 23:43:34 +00:00
Joël Stemmer
26cb3d5eb3 Print JSON instead of raw Go structs for -debug.print-events 2022-03-22 22:41:50 +00:00
Joël Stemmer
9e3af115d3 Update flag usage text for some of the flags 2022-03-22 22:05:23 +00:00
Joël Stemmer
985100c8e8 junit: Move test output within the XML tag for skipped tests
For consistency with failed tests and tests with unknown status.
2022-03-22 22:05:23 +00:00
Joël Stemmer
1c7fff6728 junit: Rename "Run error" to "Runtime error" for dummy error tests
In cases where a test result is not found, for example when a panic
happened, a dummy failing test is added to the report. Since we don't
know exactly what failed, its error message was simply "Run error". This
has been renamed to "Runtime error".
2022-03-22 22:05:23 +00:00
Joël Stemmer
3adb6bab4b testdata: Create generate-golden.go to generate report.xml files
The testdata directory contains various inputs and the resulting
report.xml that is expected to be generated. Making changes that result
in differences in the generated XML reports requires the report.xml
files to be manually updated. This is time consuming and error prone.

The generate-golden.go script (re)generates all report.xml files in the
testdata directory from the corresponding input. This can be done by
simply running `go generate` from within the testdata directory. Make
sure the generated reports contain the changes you expected before
committing them.

As part of this change, all reports have been regenerated. The diffs in
the report.xml files are caused by the following recent changes:
- XML attributes now appear in the order as defined in the structs in
  the junit package.
- Failure and error messages are now wrapped in <![CDATA[]]>.
- Package names are no longer truncated to the last path component.
2022-03-22 22:05:23 +00:00
Joël Stemmer
e0a4faed09 fixup: add skipped attr to testsuites 2022-03-22 22:05:23 +00:00
Joël Stemmer
4b87b03e55 junit: Use the timestamp from the gtr.Report when creating Testsuites 2022-03-22 22:05:23 +00:00
Joël Stemmer
b0a9864d1e 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.
2022-03-22 22:05:23 +00:00
Joël Stemmer
3190f85fe3 gtr: Add Timestamp field to Package
When using the ReportBuilder, the Timestamp will by default be set to
the current local time.
2022-03-22 22:05:23 +00:00
Joël Stemmer
c78e04707f gtr,parser/gotest: move Event and building a report to parser/gotest
The Parse method now directly returns a report, rather than a list of
events that then need to be converted into a report. As part of this
change, the Event struct has also been moved to the gotest package. It's
now the responsibility of the parser to construct a gtr.Report.
2022-03-22 22:05:23 +00:00
Joël Stemmer
832cc97037 parser/gotest: refactor parser so Parse is no longer a top level func
Making Parse a method on a Parser struct makes it possible to later
define an common parser interface.
2022-03-22 22:05:23 +00:00
Joël Stemmer
0e7d095a28 gtr: add documentation to exported types and methods 2022-03-22 22:05:23 +00:00
Joël Stemmer
5e492f8212 gtr: rename Package.AddProperty to Package.SetProperty
Properties are stored in a map, so SetProperty better reflects its
behaviour.
2022-03-22 22:05:23 +00:00
Joël Stemmer
24c2ee41ce parser/gotest: refactor tests to run one test per input line 2022-03-22 22:05:23 +00:00
Joël Stemmer
01e84dfcf5 Print arguments when non-flag arguments were set 2022-03-22 22:05:23 +00:00
Joël Stemmer
884279de84 Deprecate the -go-version flag
The `-go-version` flag is used to set the `go.version` property in the
generated XML file. In v2 we no longer want a flag dedicated to a
specific property. Instead, the -prop flag has been introduced to set
arbitrary properties in the generated report.

If the `-go-version` flag is set, we'll still add a `go.version`
property to the report but also print a warning. This flag will be
removed completely in the future.
2022-03-22 22:05:23 +00:00
Joël Stemmer
c50f4331dc Add -prop flag to add properties to a generated report
The value of the -prop flag should be specified as key=value. The -prop
flag only supports specifying one property at a time. To add multiple
properties, add a `-prop key=value` argument for each property.
2022-03-22 22:05:23 +00:00