-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parser gojson incompatibility with go test's -coverprofile flag #134
Comments
Thanks. It looks like the testcase gets attributed to the wrong package, possibly because of the order in which it appears in the output. I don't think I've seen this before, it would be helpful if I could reproduce this output somehow. Can you share a bit more about the environment and the tests that you ran, e.g. what version of Go did you use and did you run any tests in parallel? Did you use any additional commandline options when running |
I can confirm that I have a similar issue regardless of whether I'm using a test coverage reporting or not. After disabling the test report in JSON, the tests run stably. |
I managed to reproduce by testing multiple packages at a time and enabling the race detector ( Until this has been fixed you can work around this problem by disabling the race detector, or not use the JSON test output. |
The reportBuilder assumed we were always processing events for a single package at a time. This is not true however when running `go test -json -race` for example. In order to properly support processing events from different packages we now have packageBuilders per package name. Fixes #134
I have been hit by the same bug now. Yes this is fixable by looking at the JSON tag. I can have a look at this and make a PR |
Ah, seems like we were using stable 2.0.0 version, which doesn't have this fixed, that's the reason. Nevermind! |
FYI |
For a brief period, we had tests failing in Docker due to git ownership errors but the JUnit parser swallowed this error. This is a batch change fixing all test errors, since individual atomic changes would not be verified by Jenkins. Changes are summarized below: * make: set git safe directory for all docker + go targets * make(testacc): exit 1 when `go test` fails * chore: fix name conflict in layered settings test * Two layered settings, one targeting a datastream and one targeting a dataset, had the same name. * fix: omit unimplemented accelerationDisabled field * Introduced in https://gerrit.observeinc.com/c/terraform-provider-observe/+/33177 * Until this is implemented by the provider, it must be omitted. The server will not accept a null value for this field. * app: update OpenWeather * v0.1.0 is no longer available and causing tests to fail * fix: marshal floats as numbers * Previously, the API would fail on a JSON number representing a float, and required numeric strings. Now, that behavior is reversed, and submitting a string fails. * monitor: remove `reminder_frequency` removal from test * The API currently does not support un-setting a reminder frequency. Remove that. * See https://gerrit.observeinc.com/c/terraform-provider-observe/+/32961 * poller: disable GCP tests * These now validate the private key among other OAuth inputs and the tests are now broken * They can be restored when validation can be disabled * make: fix sweeper pattern (escape) * Previously \d became d without escaping, resulting in a broken regex * deps: update github.com/jstemmer/go-junit-report/v2 * We seem to be hitting a bug where test results are reported in the wrong package (client), resulting in errors because the test result is empty. * jstemmer/go-junit-report#134 * This is fixed in the main branch but hasn't had a tagged release: * jstemmer/go-junit-report@9357c18 * This updates the dependency version to the latest commit * go get github.com/jstemmer/go-junit-report/v2@7933520 Change-Id: I51d31c1073b58ebbe28fef698cdc20f693f6e582
When handle
yy.txt
Generated report contain incorrect content like this
command:
go test -json -race -coverpkg=./... -covermode=atomic -coverprofile=out/cover.out.tmp ./...
go version:
go 1.18
The text was updated successfully, but these errors were encountered: