-
Notifications
You must be signed in to change notification settings - Fork 3
Add execute_command/assertion framework and migrate tests to runCommand format #20
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
Merged
nitinahuja89
merged 3 commits into
documentdb:main
from
eerxuan:assertion-execution-framework-2
Apr 1, 2026
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 9 additions & 34 deletions
43
...compatibility/tests/core/collections/capped_collections/test_capped_collections_create.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,43 +1,18 @@ | ||
| """ | ||
| Tests for capped collection operations. | ||
|
|
||
| NOTE: This test was added by design to demonstrate how the Result Analyzer | ||
| automatically detects and categorizes unsupported features (error code 115). | ||
| When run against DocumentDB, this test will fail with error code 115, which | ||
| the analyzer will correctly categorize as UNSUPPORTED rather than FAIL. | ||
| Capped collections are fixed-size collections that maintain insertion order. | ||
| This feature may not be supported on all engines. | ||
| """ | ||
|
|
||
| import pytest | ||
| from pymongo.errors import OperationFailure | ||
|
|
||
| from documentdb_tests.framework.executor import execute_command | ||
| from documentdb_tests.framework.assertions import assertSuccessPartial | ||
|
|
||
|
|
||
| @pytest.mark.collection_mgmt | ||
| def test_create_capped_collection(database_client): | ||
| """ | ||
| Test creating a capped collection. | ||
|
|
||
| Capped collections are fixed-size collections that maintain insertion order. | ||
| This feature is not supported in DocumentDB and should return error code 115. | ||
|
|
||
| Expected behavior: | ||
| - Creates a capped collection successfully | ||
| """ | ||
| collection_name = "capped_test_collection" | ||
|
|
||
| try: | ||
| # Attempt to create capped collection | ||
| database_client.create_collection( | ||
| collection_name, | ||
| capped=True, | ||
| size=100000 | ||
| ) | ||
|
|
||
| # Verify it's actually capped | ||
| collection_info = database_client[collection_name].options() | ||
| assert collection_info.get("capped") is True, "Collection should be capped" | ||
|
|
||
| # Cleanup | ||
| database_client.drop_collection(collection_name) | ||
|
|
||
| except OperationFailure as e: | ||
| raise | ||
| def test_create_capped_collection(collection): | ||
| """Test creating a capped collection.""" | ||
| result = execute_command(collection, {"create": collection.name + "_capped", "capped": True, "size": 100000}) | ||
| assertSuccessPartial(result, {"ok": 1.0}, "Should create capped collection") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.