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.
This commit is contained in:
Joël Stemmer 2022-03-06 14:53:21 +00:00
parent c50f4331dc
commit 884279de84

View File

@ -21,18 +21,20 @@ var (
) )
var ( var (
noXMLHeader = flag.Bool("no-xml-header", false, "do not print xml header") noXMLHeader = flag.Bool("no-xml-header", false, "do not print xml header")
packageName = flag.String("package-name", "", "specify a package name (compiled test have no package name in output)") packageName = flag.String("package-name", "", "specify a package name (compiled test have no package name in output)")
goVersionFlag = flag.String("go-version", "", "specify the value to use for the go.version property in the generated XML") setExitCode = flag.Bool("set-exit-code", false, "set exit code to 1 if tests failed")
setExitCode = flag.Bool("set-exit-code", false, "set exit code to 1 if tests failed") version = flag.Bool("version", false, "print version")
version = flag.Bool("version", false, "print version") input = flag.String("in", "", "read go test log from file")
input = flag.String("in", "", "read go test log from file") output = flag.String("out", "", "write XML report to file")
output = flag.String("out", "", "write XML report to file") iocopy = flag.Bool("iocopy", false, "copy input to stdout; can only be used in conjunction with -out")
iocopy = flag.Bool("iocopy", false, "copy input to stdout; can only be used in conjunction with -out") properties = make(keyValueFlag)
properties = make(keyValueFlag)
// debug flags // debug flags
printEvents = flag.Bool("debug.print-events", false, "print events generated by the go test parser") printEvents = flag.Bool("debug.print-events", false, "print events generated by the go test parser")
// deprecated flags
goVersionFlag = flag.String("go-version", "", "(deprecated, use -prop) the value to use for the go.version property in the generated XML")
) )
func main() { func main() {
@ -47,6 +49,11 @@ func main() {
return return
} }
if *goVersionFlag != "" {
fmt.Fprintf(os.Stderr, "the -go-version flag is deprecated and will be removed in the future.\n")
properties["go.version"] = *goVersionFlag
}
if flag.NArg() != 0 { if flag.NArg() != 0 {
fmt.Fprintf(os.Stderr, "%s does not accept positional arguments\n", os.Args[0]) fmt.Fprintf(os.Stderr, "%s does not accept positional arguments\n", os.Args[0])
flag.Usage() flag.Usage()