-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Conversation
class TestMonitor(AsyncIntegrationTest): | ||
async def create_client(self): | ||
listener = ServerAndTopologyEventListener() | ||
client = await self.unmanaged_async_single_client(event_listeners=[listener]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
There was a problem hiding this comment.
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)?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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.
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 | ||
) |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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.
There was a problem hiding this 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.
The windows test failures are from |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM nice work!
No description provided.