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

dune-pkg: Better error messages on extract fail #11560

Merged
merged 12 commits into from
Mar 31, 2025

Conversation

H-ANSEN
Copy link
Contributor

@H-ANSEN H-ANSEN commented Mar 23, 2025

This pull request is in reference to and would close #11549 (as well as possibly other related issues) by capturing the output of commands such as tar, gzip, and unzip when dune attempts to install a package and reporting a corresponding error message. The following is an example of the tool tar encountering a corrupted file:

File "dune.lock/foo.pkg", line 6, characters 3-136:
6 |    file:///DIR_NOT_INCLUDED_FOR_BREVITY/corrupted.tar)))
       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  Error: failed to extract 'corrupted.tar'
  Reason: tar failed with non-zero exit code '2' and output:
  - /usr/bin/tar: This does not look like a tar archive
  - /usr/bin/tar: Exiting with failure status due to previous errors

One note, relating to the original issue was that I was unable to test behavior when a corresponding tool did not exist on the system. If any guidance on how to check this case could be provided I would be more than willing to add additional handling and tests for this case :)

@H-ANSEN
Copy link
Contributor Author

H-ANSEN commented Mar 23, 2025

It appears that tar on MacOS exit's with a different exit code and error message than on Linux! Is there any way to isolate test cases/expected output to MacOS or Linux? Or should I just preprocess the output with sed?

@gridbugs
Copy link
Collaborator

It appears that tar on MacOS exit's with a different exit code and error message than on Linux! Is there any way to isolate test cases/expected output to MacOS or Linux? Or should I just preprocess the output with sed?

Thanks for the patch! Indeed different tar implementations will have different error messages, and also the location of tar on different systems will differ; there's no guarantee it will be at /usr/bin/tar. Conventionally in dune tests we do jest process the output with sed and friends to make it as consistent across platforms as possible.

@gridbugs
Copy link
Collaborator

Looks like this also solves #11550.

@Leonidas-from-XIV
Copy link
Collaborator

Is there any way to isolate test cases/expected output to MacOS or Linux?

Yes, you can enable and disable tests depending on the platform they're running on: https://github.com/ocaml/dune/blob/main/test/blackbox-tests/test-cases/pkg/dune#L22-L26 but for cases where the errors are different I agree with @gridbugs that some postprocessing (or a fake injected tar which is consistent) is the better solution as that prevents the test evolving into two divergent tests.

@H-ANSEN
Copy link
Contributor Author

H-ANSEN commented Mar 24, 2025

This should now be passing, the issue on ubuntu-latest seems to be unrelated.

Copy link
Collaborator

@Leonidas-from-XIV Leonidas-from-XIV left a comment

Choose a reason for hiding this comment

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

Looks pretty good. The failing test is being flaky sometimes and fixes itself upon rerunning usually. I've added some comments of things to look into but overall I think this is a good approach.

@Leonidas-from-XIV Leonidas-from-XIV merged commit 4f46e5d into ocaml:main Mar 31, 2025
24 of 25 checks passed
create2000 pushed a commit to create2000/dune that referenced this pull request Apr 2, 2025
* add test cases for corrupted tar & tar.gz package source

Signed-off-by: Teague Hansen <[email protected]>

* add initial error message impl for failing extract on packages

Signed-off-by: Teague Hansen <[email protected]>

* clean up and format

Signed-off-by: Teague Hansen <[email protected]>

* add test for unzip and rename extract fail test case

Signed-off-by: Teague Hansen <[email protected]>

* ensure temporary file is destoryed by finalize

Signed-off-by: Teague Hansen <[email protected]>

* update test cases with better sed commands

Signed-off-by: Teague Hansen <[email protected]>

* switch from In_channel to Io

Signed-off-by: Teague Hansen <[email protected]>

* additional sanitization to test output for nondeterministic output

Signed-off-by: Teague Hansen <[email protected]>

* also sanatize unavailable-package-source.t

Signed-off-by: Teague Hansen <[email protected]>

* use User_message.command for command printing

Signed-off-by: Teague Hansen <[email protected]>

* add unzip and tar dependency for pkg-extract-fail.t

Signed-off-by: Teague Hansen <[email protected]>

* fix unavailable-package-source.t

Signed-off-by: Teague Hansen <[email protected]>

---------

Signed-off-by: Teague Hansen <[email protected]>
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.

dune-pkg: Print an error when dune is unable to decompress a tarball
3 participants