Skip to content
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鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃殌 Feature: Add option to exit with standard exit codes #3559

Open
plroebuck opened this issue Nov 8, 2018 · 7 comments 路 Fixed by zendesk/sunco-mocha#2 路 May be fixed by #4989
Open

馃殌 Feature: Add option to exit with standard exit codes #3559

plroebuck opened this issue Nov 8, 2018 · 7 comments 路 Fixed by zendesk/sunco-mocha#2 路 May be fixed by #4989
Labels
area: integrations related to working with 3rd party software (e.g., babel, typescript) area: node.js command-line-or-Node.js-specific semver-major implementation requires increase of "major" version number; "breaking changes" status: accepting prs Mocha can use your help with this one! type: feature enhancement proposal

Comments

@plroebuck
Copy link
Contributor

plroebuck commented Nov 8, 2018

Description

Mocha's exit code is the number of failed tests (up to 255).
This is nonstandard and should be more like Unix/POSIX programs.

process.exitCode should be one of:

  • 0 for success
  • 1 for failure (e.g., internal error, if any tests fail, no tests were run)
  • 2 for failure due to invalid command line usage
  • 126 if "bin/_mocha" not executable (handled by shell)
  • 128+n where n is signal# (e.g., SIGINT=2, so rc=130)

where:

  • 0 is EXIT_SUCCESS (POSIX)
  • 1 is EXIT_FAILURE (POSIX)
  • rest are shell scripting maxims (e.g., sh, ksh, bash) (UNIX)

This should be explicitly added to the documentation.

Notes

Exit codes have a range from 0-255.
An exit value greater than 255 returns an exit code modulo 256.

The 126 exit code can only happen on UNIX and would be provided by the shell itself.

Mocha's current scheme leads to ambiguous error codes.
For example, there is no means to distinguish between 130 test failures and interrupt by <Ctrl>-C.

It was mentioned that this would certain CI systems relied on this exit code abuse.
I fail to see how this could affect them; a test failure from above would still return 1, just not a count.

Related

#2445
#2438 (same problem, but fix only addressed clamping #failures)

@boneskull
Copy link
Member

boneskull commented Nov 8, 2018

the CI expects the count. I can鈥檛 recall which it is. there鈥檚 plenty of historical discussion around this.

I鈥檇 prefer to err on the side of not breaking stuff for existing consumers rather than causing headaches for potential consumers expecting POSIX codes, but that鈥檚 just me..

@plroebuck plroebuck added type: feature enhancement proposal area: usability concerning user experience or interface area: node.js command-line-or-Node.js-specific area: integrations related to working with 3rd party software (e.g., babel, typescript) type: discussion debates, philosophy, navel-gazing, etc. labels Nov 9, 2018
@plroebuck
Copy link
Contributor Author

plroebuck commented Nov 9, 2018

Couldn't find anything specific (outside references to this unknown CI).

Fail to understand the difference one way or another (CI-wise) to exiting with 1 vs. error count -- either way, an "error occurred" state should be triggered. By implication, the CI would do something different depending on the number of errors, which seems nonsensical.

One error is the same as a hundred -- it's a failure.

@plroebuck
Copy link
Contributor Author

@Munter could you add anything?

@plroebuck
Copy link
Contributor Author

I traced this conceptually (exit code=#failures) all the way back to the initial commit (20110828). How and where Mocha invoked process.exit moved around from file to file, but found no references to CIs as the reason -- it was just always done this way.

@boneskull
Copy link
Member

read issues mentioning exit codes

@JoshuaKGoldberg
Copy link
Member

I was ... surprised, to put it nicely, to learn that Mocha uses the number of failed tests for its status code. What a bizarre behavior. Fixing this to align to POSX conventions would be a breaking change, but a good one.

@JoshuaKGoldberg JoshuaKGoldberg added status: accepting prs Mocha can use your help with this one! and removed area: usability concerning user experience or interface type: discussion debates, philosophy, navel-gazing, etc. labels Feb 6, 2024
@JoshuaKGoldberg JoshuaKGoldberg changed the title 馃殌 Feature: Use standard exit codes 馃殌 Feature: Add option to exit with standard POSIX exit codes Apr 13, 2024
@JoshuaKGoldberg JoshuaKGoldberg changed the title 馃殌 Feature: Add option to exit with standard POSIX exit codes 馃殌 Feature: Add option to exit with standard exit codes Apr 13, 2024
@JoshuaKGoldberg
Copy link
Member

Renaming this issue to make it target adding an option for the new behavior, as written in #4989. We can file a separate followup issue to make the standard exit codes the default behavior in a later major version of Mocha.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: integrations related to working with 3rd party software (e.g., babel, typescript) area: node.js command-line-or-Node.js-specific semver-major implementation requires increase of "major" version number; "breaking changes" status: accepting prs Mocha can use your help with this one! type: feature enhancement proposal
Projects
None yet
3 participants