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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-93096: fix test_mimetypes.test_guess_type_conflicting_with_mimetypes #131408

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

picnixz
Copy link
Member

@picnixz picnixz commented Mar 18, 2025

Using run_python_until_end() ignores setUpModule(). In particular, mocking mimetypes.knownfiles has no effect for the CLI tests and leads to issues on platforms defining non-standard MIME types such as macOS or openSUSE.

I think this was overlooked in #93097 and this may be the reason why finding the correct extension was tedious. Now, all platforms should support the test correctly (previously, the macOS files were still looked up as mimetypes.knownfiles was not unset for CLI tests).

Using `run_python_until_end()` ignores `setUpModule()`. In particular,
mocking `mimetypes.knownfiles` has no effect for the CLI tests and
leads to issues on platforms defining non-standard MIME types such
as macOS or openSUSE.
@picnixz
Copy link
Member Author

picnixz commented Mar 18, 2025

!buildbot macOS

@bedevere-bot
Copy link

🤖 New build scheduled with the buildbot fleet by @picnixz for commit 62863a0 🤖

Results will be shown at:

https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F131408%2Fmerge

The command will test the builders whose names match following regular expression: macOS

The builders matched are:

  • x86-64 MacOS Intel NoGIL PR
  • x86-64 macOS PR
  • ARM64 MacOS M1 NoGIL PR
  • x86-64 MacOS Intel ASAN NoGIL PR
  • ARM64 MacOS M1 Refleaks NoGIL PR
  • ARM64 macOS PR

@picnixz
Copy link
Member Author

picnixz commented Mar 18, 2025

!buildbot macOS

@bedevere-bot
Copy link

🤖 New build scheduled with the buildbot fleet by @picnixz for commit 7be23f0 🤖

Results will be shown at:

https://buildbot.python.org/all/#/grid?branch=refs%2Fpull%2F131408%2Fmerge

The command will test the builders whose names match following regular expression: macOS

The builders matched are:

  • x86-64 MacOS Intel NoGIL PR
  • x86-64 macOS PR
  • ARM64 MacOS M1 NoGIL PR
  • x86-64 MacOS Intel ASAN NoGIL PR
  • ARM64 MacOS M1 Refleaks NoGIL PR
  • ARM64 macOS PR

Lib/mimetypes.py Outdated
Comment on lines 697 to 698
print(f"error: unknown type {gtype}", file=sys.stderr)
sys.exit(1)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why split these?

Copy link
Member Author

@picnixz picnixz Mar 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The problem is that sys.exit(msg) raises SystemExit but with its code attribute being the message and not some integer. OTOH, if the parser fails to parse something, it prints on stderr and then uses sys.exit(2). So I would need to handle an integer code coming from a parser error, or a string code coming from there (in which case I would also need to define the error code to be 1 explicitly):

with redirect(...):
    try:
        main()
    except SystemExit as exc:
        if isinstance(exc.code, int):
            retcodce = exc.code
            errmsg = ...  # not even sure it's intercepted by the redirection btw
        else:
            retcode = 1
            errmsg = exc.code

And then the stream redirections become half-useless.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These both print to stderr with exit code 1 when running something like ./python.exe -m mimetypes --extension thing:

sys.exit(f"error: unknown type {gtype}")
print(f"error: unknown type {gtype}", file=sys.stderr)
sys.exit(1)

Let's keep the original.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sys.exit(f"error: unknown type {gtype}")

Yes, from a CLI perspective, but here we're invoking the main() function directly (we're not using subprocess). The reason we can't use subprocess is because we need to mock the module but with subprocess, the module gets re-imported normally and mocks are lost (or am I missing something obvious?)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, it was me missing something, you were referring to the tests :)

In that case, I suggest we step back, and refactor to make it easier to test, rather than worrying about specific return code values and stdout/stderr.

Here's a refactor to make it similar to random/test_random, based on https://pythontest.com/testing-argparse-apps/:

https://github.com/picnixz/cpython/compare/fix/test/conflicting-mime-types-93096...hugovk:cpython:3.14-fix/test/conflicting-mime-types-93096-refactor?expand=1

This splits out testing of parsing, and CLI output into successful and error cases.

@picnixz picnixz requested a review from hugovk March 23, 2025 13:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants