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-5046 Support $lookup in CSFLE and QE #2210

Merged
merged 20 commits into from
Mar 20, 2025

Conversation

sleepyStick
Copy link
Contributor

No description provided.

@sleepyStick
Copy link
Contributor Author

pyproject.toml and uv.lock will need to change once mongodb/libmongocrypt#989 is merged :)

@sleepyStick sleepyStick marked this pull request as ready for review March 19, 2025 18:42
@sleepyStick sleepyStick requested a review from ShaneHarvey March 19, 2025 18:43
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.

Nice work! Could you add a note to the changelog since this is a new feature?

@sleepyStick sleepyStick requested a review from ShaneHarvey March 19, 2025 22:56
doc = await unencrypted_client.db.qe2.find_one()
self.assertTrue(isinstance(doc["qe2"], Binary))
await encrypted_client.db.no_schema.insert_one({"no_schema": "no_schema"})
await encrypted_client.db.no_schema2.insert_one({"no_schema2": "no_schema2"})
Copy link
Member

Choose a reason for hiding this comment

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

Could you add:

await encrypted_client.close()
await unencrypted_client.close()

@@ -8,6 +8,7 @@ PyMongo 4.12 brings a number of changes including:

- Support for configuring DEK cache lifetime via the ``key_expiration_ms`` argument to
:class:`~pymongo.encryption_options.AutoEncryptionOpts`.
- Support for $lookup in CSFLE and QE.pr
Copy link
Member

Choose a reason for hiding this comment

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

QE.pr -> QE supported on MongoDB 8.1+.

@@ -2499,6 +2502,7 @@ async def test_1_csfle_joins_no_schema(self):
)
)
self.assertEqual(doc, {"csfle": "csfle", "matched": [{"no_schema": "no_schema"}]})
await encrypted_client.close()
Copy link
Member

Choose a reason for hiding this comment

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

Closing the clients in the tests isn't needed since they're closed at tear down anyway. The reason I asked to close the clients in asyncSetUp is because otherwise they remain open for the entire test and compete with other tasks that need to be scheduled.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

ahh okay, i see. fixed

@sleepyStick sleepyStick requested a review from ShaneHarvey March 20, 2025 00:19

key_doc = json_data("etc", "data", "lookup", "key-doc.json")
key_vault = await create_key_vault(encrypted_client.db.keyvault, key_doc)
self.addCleanup(key_vault.drop)
Copy link
Member

Choose a reason for hiding this comment

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

addCleanup -> addAsyncCleanup

Also can we use the client_context client here to drop the entire database instead of just the keyvault? This will fix the InvalidOperation: Cannot use AsyncMongoClient after close" errors (which were introduced now that we close these clients).

Copy link
Member

Choose a reason for hiding this comment

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

Alternatively we can just leave the data there and skip the cleanup altogether.

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 good catch, and yes! done!

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.

One last thing.

@@ -251,14 +251,12 @@ async def collection_info(self, database: str, filter: bytes) -> Optional[bytes]
:param database: The database on which to run listCollections.
:param filter: The filter to pass to listCollections.

:return: The first document from the listCollections command response as BSON.
:return: The all documents from the listCollections command response as BSON.
Copy link
Member

@ShaneHarvey ShaneHarvey Mar 20, 2025

Choose a reason for hiding this comment

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

"The all documents" -> "All documents"

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Oop good catch, fixed!

@sleepyStick
Copy link
Contributor Author

I opened https://jira.mongodb.org/browse/PYTHON-5225 because I don't think those test failures are related to the work I did? But if I'm wrong, lmk!

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!

@sleepyStick sleepyStick merged commit 1145c9d into mongodb:master Mar 20, 2025
36 of 38 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.

2 participants