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-5087 - Convert test.test_load_balancer to async #2103

Merged
merged 9 commits into from
Feb 6, 2025

Conversation

NoahStapp
Copy link
Contributor

No description provided.

@NoahStapp NoahStapp requested a review from sleepyStick January 30, 2025 18:58
sleepyStick
sleepyStick previously approved these changes Jan 30, 2025
Copy link
Contributor

@sleepyStick sleepyStick 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


# Generate unified tests.
globals().update(generate_test_classes(TEST_PATH, module=__name__))
Copy link
Contributor

Choose a reason for hiding this comment

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

i don't think it really matters but _TEST_PATH vs TEST_PATH?

//should i be changing them to TEST_PATH (my brain would appreciate it if it was consistent across the entire test suite haha)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Good catch. Let's stick with TEST_PATH for now. I'll open a ticket to rename all the ones named _TEST_PATH in one go.

@NoahStapp NoahStapp requested a review from ShaneHarvey January 30, 2025 21:13
@NoahStapp
Copy link
Contributor Author

Note: I've opened PYTHON-5113 to refactor our test utils once all conversions are complete.

sleepyStick
sleepyStick previously approved these changes Jan 30, 2025
test/utils.py Outdated
def __init__(self, target):
self.exc = None
self.target = target
self.task = create_task(self.run())
Copy link
Member

Choose a reason for hiding this comment

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

create_task should be called in run() to mirror the behavior of Thread.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It should be called in start() to mirror Thread, right?

Copy link
Member

Choose a reason for hiding this comment

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

Yeah that's right. A Thread doesn't start running until start() is called.

test/utils.py Outdated

async def run(self):
try:
await self.target()
Copy link
Member

Choose a reason for hiding this comment

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

Awaiting the task should happen in join() to mirror the behavior of Thread.

self.assertEqual(pool.active_sockets, 1) # Pinned.

if _IS_SYNC:
thread = PoolLocker(pool)
Copy link
Member

Choose a reason for hiding this comment

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

If we make the ExceptionCatchingTask changes I suggested, will that let use remove this branch?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I believe so, yes.

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!

@NoahStapp NoahStapp merged commit 3dd44e6 into mongodb:master Feb 6, 2025
43 of 46 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