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

PYTHON-5075 Convert test.test_csot to async #2088

Merged
merged 17 commits into from
Feb 19, 2025

Conversation

sleepyStick
Copy link
Contributor

Convert test.test_csot to async

@sleepyStick sleepyStick marked this pull request as ready for review January 29, 2025 20:38
@sleepyStick sleepyStick requested a review from NoahStapp January 29, 2025 20:38
@sleepyStick sleepyStick requested a review from NoahStapp January 29, 2025 21:11
NoahStapp
NoahStapp previously approved these changes Jan 29, 2025
@sleepyStick sleepyStick requested a review from NoahStapp January 30, 2025 19:51
@NoahStapp
Copy link
Contributor

The async CSOT tests are continuing to be extremely flakey, even on consecutive runs of the same variant and platform. Some failures are due to the test runner never picking up commandStartedEvents, some are due to the expected TimeoutError never occurring.


if "csot" in self.id().lower():
# Retry CSOT tests up to 2 times to deal with flakey tests.
attempts = 3
for i in range(attempts):
try:
return await self._run_scenario(spec, uri)
except AssertionError:
except (AssertionError, OperationFailure) as exc:
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we want to do this for all CSOT tests, or only the asynchronous ones?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

OHHH good point, probably just the async ones right? I don't think I've seen flakey sync tests failing with OperationFailure

Copy link
Contributor

Choose a reason for hiding this comment

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

Agreed, no need to change the synchronous behavior if it's not seeing the same issue.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

not sure if it was the best way to only retry in async, but i just changed the logic of the if statement inside the except

if not (
isinstance(exc, OperationFailure)
and not _IS_SYNC
and "failpoint" in exc._message
Copy link
Contributor

Choose a reason for hiding this comment

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

Try something like this instead:

if isinstance(exc, OperationFailure) and (_IS_SYNC or "failpoint" not in exc._message):
	raise

That way it's clear that we raise any OperationFailures that are either thrown by a sync test or don't have the failpoint message.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ah yeah, that's cleaner

Copy link
Contributor

@NoahStapp NoahStapp left a comment

Choose a reason for hiding this comment

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

Great work!

@sleepyStick sleepyStick merged commit f32e2bc into mongodb:master Feb 19, 2025
46 of 51 checks passed
@sleepyStick sleepyStick deleted the PYTHON-5075 branch February 19, 2025 19:21
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.

2 participants