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-5090 Convert test.test_monitor to async #2106

Merged
merged 16 commits into from
Feb 27, 2025

Conversation

sleepyStick
Copy link
Contributor

No description provided.

@sleepyStick sleepyStick requested a review from NoahStapp January 31, 2025 17:55
@sleepyStick sleepyStick marked this pull request as ready for review January 31, 2025 17:55
class TestMonitor(AsyncIntegrationTest):
async def create_client(self):
listener = ServerAndTopologyEventListener()
client = await self.unmanaged_async_single_client(event_listeners=[listener])
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
client = await self.unmanaged_async_single_client(event_listeners=[listener])
client = await self.async_single_client(event_listeners=[listener])

Avoid using the unmanaged helper methods wherever possible.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

looking at the tests, i thought it was intentional to use unmanaged because the tests want to explicitly close the client and test behavior after client close (or client del)?

Copy link
Contributor

@NoahStapp NoahStapp Jan 31, 2025

Choose a reason for hiding this comment

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

Does it cause failures to switch the call from unmanaged? Calling close multiple times shouldn't affect the client here.

Copy link
Member

Choose a reason for hiding this comment

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

Yes we have to used unmanaged here, otherwise the client will never get garbage collected.

Copy link
Member

Choose a reason for hiding this comment

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

Adding client.close to the test cleanup will keep a reference to the client and prevent it from being GCd.

Copy link
Contributor

@NoahStapp NoahStapp Jan 31, 2025

Choose a reason for hiding this comment

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

Ah, the reference inside the cleanups list created by the managed helper will cause the del client call to not GC the client?

Copy link
Contributor

@NoahStapp NoahStapp Jan 31, 2025

Choose a reason for hiding this comment

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

Oh wait: a GC'd AsyncMongoClient will trigger the unclosed client warning, as seen in the failing test.

Copy link
Member

Choose a reason for hiding this comment

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

We still want to make sure that a GC'd async client's tasks eventually get cleaned up.

@sleepyStick
Copy link
Contributor Author

okay in summary, we need the unmanaged async client for the test, because we want to test that the executors get GCd on client del and client.close. if we used managed, the client will not get GCd. on pypy GC is non-deterministic hence the failure. with that said, i believe the only failure is because of that and we should either skip this test in pypy (if so how?) or do something else to mitigate the failing test?

for ref, name in executor_refs:
await async_wait_until(
partial(unregistered, ref), f"unregister executor: {name}", timeout=5
)
Copy link
Member

Choose a reason for hiding this comment

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

Can we add an extra async_wait_until here that waits for the __del__ warning to be raised? That would avoid the warning being accidentally raised later on in a subsequent test like we see in the most recent run: https://github.com/mongodb/mongo-python-driver/actions/runs/13466188001/job/37632412774?pr=2106

Copy link
Member

Choose a reason for hiding this comment

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

Like:

with warnings.catch_warnings(record=True) as w:
   ...
   wait until the "Call AsyncMongoClient.close() to safely shut down your client and free up resources" warning appears in w.

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! LGTM, assuming passing tests.

@sleepyStick
Copy link
Contributor Author

The windows test failures are from test_connection_monitoring and test_async_cancellation, neither of which relate to this PR to my knowledge :)

Copy link
Member

@ShaneHarvey ShaneHarvey left a comment

Choose a reason for hiding this comment

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

LGTM nice work!

@sleepyStick sleepyStick merged commit c9a85ad into mongodb:master Feb 27, 2025
45 of 51 checks passed
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