-
-
Notifications
You must be signed in to change notification settings - Fork 288
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
Allow failing tests without immediate abort #676
Comments
Hey @nathanperkins I tend to take a different view on how failure should be handled, particularly for long-running/flaky tests. But we don't have to dig into those more philosophical/subjective differences here 😅 There are a few mechanisms that enable you to allow test failures without immediately aborting the current test.
I'd probably lean towards #3. The simplest thing you could do (assuming you are using testing and not Ginkgo) is something like: g := NewGomega(func(message string, _ ...int) {
t.Helper()
t.Errorf("%s\n", message)
}) and then use |
Thanks for your helpful responses! I hope this follow up isn't a bother :)
We are using Ginkgo :)
No problem! I hope you don't mind if I explain with a more concrete example, in case this is an XY Problem. We create and maintain Kubernetes controllers (using kubebuilder) which manage advanced networking functionality on Kubernetes clusters.
In one It block, we may have Expects on the state of Object A, object B and object C. If our check on object A fails, it is still incredibly valuable for us to see what object B and C look like. It could reveal that there is a problem isolated to object A or it could reveal that the problem is across all objects. If the test is flaking frequently, knowing that one object failed vs all is helpful. When the test aborts immediately, we can only see one object failed at a time. We have to correlate the failure across multiple runs to get a full picture (or it may be impossible to get a full picture at all). Now, I understand that the common ginkgo practice would be for us to try to separate these checks into different It blocks. But in practice, it may make the tests harder to follow. And in our case, it increases the runtime greatly because each It block requires destroying and recreating objects then waiting for them to be ready. Each It block adds 1-3 minutes to the total test runtime. It may be that we need to change how we use ginkgo and gomega to make our tests more efficient but I haven't found any good patterns for reducing runtime here without asserting multiple things in each It block. |
Another approach I was thinking about would be if there was a wrapper similar to
|
first off ❤️ ❤️ ❤️ for wanting to avoid the XY problem! Yeah I've been seeing a lot of k8s usecases with super expensive setup at the ...but, honestly, I'd probably lean in the direction of your last comment and build a custom If you are using the global Gomega DSL (e.g. either
if you're making and managing your own This allows you to explicitly opt into this behavior when you want to make multiple assertions - while preserving the default behavior (which, honestly, I think is usually what you want. e.g. No sense pushing a container to the cluster to test an operator if the api call you made to deploy the operator failed!). |
That helps a lot. Thank you so much for the thoughtful response! We will try a combination of both:
Is VerifyAll something you'd want contributed to ginkgo? I can do a PR if you tell me where it goes. |
thanks @nathanperkins - glad we could land on a few things that might help. I'm open to a PR, sure - I think it would make sense to go in Gomega alongside the |
For testing, golang best practices state that tests should keep going as long as possible to give as much information about the failed test as possible. This is particularly critical in flaky and/or long-running tests where reproducing the failure takes considerable time and effort.
In standard golang testing this is achieved using
t.Errorf
, which marks the test as failed and continues, instead oft.Fatalf
, which marks the test as failed and aborts immediately. I don't see a similar mechanism in gomega for making assertions which should continue.From what I can tell, these solutions available in gomega today:
But these solutions can be clunky, tedious, and complex cases require a deep understanding of gomega. It becomes particularly difficult and unergonomic when trying to combine complex assertions involving a few different objects.
Could it be considered to provide another assertion option which would fail the test and continue? This feature would make it relatively trivial to follow testing best practices to expose as much information about test failures as possible.
In case, I've missed an existing solution which is similarly trivial, it may be worth highlighting more prominently in the docs. I did Ctrl-F
Errorf
andFatalf
in https://onsi.github.io/gomega/ and scanned through but I didn't see anything.The text was updated successfully, but these errors were encountered: