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
2022-03-22 22:05:23 +00:00
2022-03-22 22:05:16 +00:00
2022-03-22 22:05:16 +00:00
2012-03-09 15:38:06 +01:00
2022-02-26 23:39:52 +00:00

go-junit-report

go-junit-report is a tool that converts go test output to an XML report, suitable for applications that expect JUnit-style XML reports (e.g. Jenkins).

The test output parser and JUnit report formatter are also available as Go packages.

Build status

Pre-built packages for Windows, macOS and Linux are found on the Releases page.

Install from source

Download and install the latest stable version from source by running:

go install github.com/jstemmer/go-junit-report@latest

Usage

go-junit-report reads the full go test output from stdin and writes JUnit compatible XML to stdout. In order to capture build errors as well as test output, redirect both stdout and stderr to go-junit-report.

go test -v 2>&1 | go-junit-report > report.xml

Parsing benchmark output is also supported, for example:

go test -v -bench . -count 5 2>&1 | go-junit-report > report.xml

If you want go-junit-report to exit with a non-zero exit code when it encounters build errors or test failures, set the -set-exit-code flag.

Run go-junit-report -help for a list of all supported flags.

Contributing

See CONTRIBUTING.md.

Description
Convert go test output to junit xml
Readme MIT 770 KiB
Languages
Go 98.8%
Makefile 1.2%