-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Description
This is a feature request/proposal for testing.M
. I was doing a Readability Review today of user code. The code for one reason or another was using a custom main entrypoint. I noticed how bare the support in testing.M
is for users to report and handle setup/teardown failures as well as conduct cleanups. The setup, execution, and teardown of the custom test main needed to do both of these tasks. It dawned on me that there no advice is given in the documentation about where setup error messages should go and how to correctly abort (e.g., what exit value).
I would like to propose that for similar reasons of testing.T
having (*testing.T).Cleanup
and (*testing.T).Fatal
, testing.M
should have the same.
Between the two of them, the cleanup is less important. But how to report errors and setup failures looks very relevant.
For instance, if a test main fails, should the user call log.Fatal
or one of its variants, hand emit to stderr
or stdout
? I have seen the whole zoo of behavior before. Is any non-zero exit value OK or only some? I get that custom test mains are an advanced feature and should be seldom used, but it seems potentially like we are not providing the users an adequately documented journey. Maybe this is intentional (e.g., Go tests to support custom test harness and executor requirement contracts)? It does deserve some Schrift at the very least.