-
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-5046 Support $lookup in CSFLE and QE #2210
Conversation
d307b92
to
ea56a2e
Compare
pyproject.toml and uv.lock will need to change once mongodb/libmongocrypt#989 is merged :) |
This reverts commit 9306a9e.
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.
Nice work! Could you add a note to the changelog since this is a new feature?
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"}) |
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.
Could you add:
await encrypted_client.close()
await unencrypted_client.close()
doc/changelog.rst
Outdated
@@ -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 |
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.
QE.pr
-> QE supported on MongoDB 8.1+.
test/asynchronous/test_encryption.py
Outdated
@@ -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() |
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.
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.
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.
ahh okay, i see. fixed
test/asynchronous/test_encryption.py
Outdated
|
||
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) |
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.
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).
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.
Alternatively we can just leave the data there and skip the cleanup altogether.
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 good catch, and yes! done!
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.
One last thing.
pymongo/asynchronous/encryption.py
Outdated
@@ -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. |
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.
"The all documents" -> "All documents"
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.
Oop good catch, fixed!
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! |
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!
No description provided.