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

Fix intermittent logfile-in-use test failures #8

Merged
merged 2 commits into from
Nov 10, 2023

Conversation

dkbennett
Copy link
Member

Summary of the pull request

The asynchronous logfile writing in tests can lead to a test finishing before the logfile writer is done writing to the log. Since the test cleanup occurs immediately after the test is done and I/O is naturally much slower (the whole reason it is asynchronous), this can lead to a race where the test is finished but the logfile is not, and attempting to cleanup the folder with the logfile results in an uncaught I/O exception. This fix handles those races by catching the first IOException during test cleanup, waiting several seconds, and then trying again to allow time for the logfile writer to finish.

References and relevant issues

Closes https://github.com/microsoft/DevHomeADOExtension/issues/78

Detailed description of the pull request / Additional comments

Added a catch IOException clause to the Test Cleanup so if we enconter an IOException while cleaning up, wait ten seconds and try again. The retry will not be caught so we can detect real issues that aren't logfile writing races.

Validation steps performed

PR checklist

  • Closes #xxx
  • Tests added/passed
  • Documentation updated

@EricJohnson327 EricJohnson327 merged commit 0d8ad84 into main Nov 10, 2023
4 checks passed
@EricJohnson327 EricJohnson327 deleted the user/dkbennett/testcleanupfix branch November 10, 2023 23:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants