-
Notifications
You must be signed in to change notification settings - Fork 7
added query tests for $in and $nin #100
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
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
Empty file.
142 changes: 142 additions & 0 deletions
142
..._tests/compatibility/tests/core/operator/query/comparison/in/test_in_argument_handling.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 |
|---|---|---|
| @@ -0,0 +1,142 @@ | ||
| """ | ||
| Tests for $in query operator argument handling. | ||
|
|
||
| Covers empty array, single element, many elements, duplicates, mixed types, | ||
| dollar-prefixed string literals, large arrays, equivalence to $or, | ||
| and invalid (non-array) arguments. | ||
| """ | ||
|
|
||
| import pytest | ||
|
|
||
| from documentdb_tests.compatibility.tests.core.operator.query.utils.query_test_case import ( | ||
| QueryTestCase, | ||
| ) | ||
| from documentdb_tests.framework.assertions import assertFailureCode, assertSuccess | ||
| from documentdb_tests.framework.error_codes import BAD_VALUE_ERROR | ||
| from documentdb_tests.framework.executor import execute_command | ||
| from documentdb_tests.framework.parametrize import pytest_params | ||
|
|
||
| SUCCESS_TESTS: list[QueryTestCase] = [ | ||
| QueryTestCase( | ||
| id="empty_array_no_results", | ||
| filter={"x": {"$in": []}}, | ||
| doc=[{"_id": 1, "x": 1}], | ||
| expected=[], | ||
| msg="$in with empty array returns nothing", | ||
| ), | ||
| QueryTestCase( | ||
| id="single_element_equality", | ||
| filter={"x": {"$in": [1]}}, | ||
| doc=[{"_id": 1, "x": 1}, {"_id": 2, "x": 2}], | ||
| expected=[{"_id": 1, "x": 1}], | ||
| msg="$in with single element array is equivalent to equality", | ||
| ), | ||
| QueryTestCase( | ||
| id="many_elements_match_any", | ||
| filter={"x": {"$in": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}}, | ||
| doc=[{"_id": i, "x": i} for i in range(1, 11)], | ||
| expected=[{"_id": i, "x": i} for i in range(1, 11)], | ||
| msg="$in with many elements matches any", | ||
| ), | ||
| QueryTestCase( | ||
| id="duplicate_values_in_array", | ||
| filter={"x": {"$in": [1, 1, 1]}}, | ||
| doc=[{"_id": 1, "x": 1}, {"_id": 2, "x": 2}], | ||
| expected=[{"_id": 1, "x": 1}], | ||
| msg="$in with duplicate values in array matches docs where x is 1", | ||
| ), | ||
| QueryTestCase( | ||
| id="mixed_types_in_array", | ||
| filter={"x": {"$in": [1, "hello", True, None]}}, | ||
| doc=[ | ||
| {"_id": 1, "x": 1}, | ||
| {"_id": 2, "x": "hello"}, | ||
| {"_id": 3, "x": True}, | ||
| {"_id": 4, "x": None}, | ||
| {"_id": 5, "x": 99}, | ||
| ], | ||
| expected=[ | ||
| {"_id": 1, "x": 1}, | ||
| {"_id": 2, "x": "hello"}, | ||
| {"_id": 3, "x": True}, | ||
| {"_id": 4, "x": None}, | ||
| ], | ||
| msg="$in with mixed types in array matches docs where x is any of those values", | ||
| ), | ||
| QueryTestCase( | ||
| id="dollar_prefixed_string_as_literal", | ||
| filter={"x": {"$in": ["$abc"]}}, | ||
| doc=[{"_id": 1, "x": "$abc"}, {"_id": 2, "x": "abc"}], | ||
| expected=[{"_id": 1, "x": "$abc"}], | ||
| msg="$in treats dollar-prefixed string as literal value, not operator", | ||
| ), | ||
| QueryTestCase( | ||
| id="large_array_100_elements", | ||
| filter={"x": {"$in": list(range(100))}}, | ||
| doc=[{"_id": 1, "x": 50}, {"_id": 2, "x": 200}], | ||
| expected=[{"_id": 1, "x": 50}], | ||
| msg="$in with 100 elements matches correctly", | ||
| ), | ||
| ] | ||
|
|
||
|
|
||
| @pytest.mark.parametrize("test_case", pytest_params(SUCCESS_TESTS)) | ||
| def test_in_argument_handling(collection, test_case): | ||
| """Parametrized test for $in valid argument handling.""" | ||
| collection.insert_many(test_case.doc) | ||
| result = execute_command(collection, {"find": collection.name, "filter": test_case.filter}) | ||
| assertSuccess(result, test_case.expected, msg=test_case.msg, ignore_doc_order=True) | ||
|
|
||
|
|
||
| ERROR_TESTS: list[QueryTestCase] = [ | ||
| QueryTestCase( | ||
| id="non_array_int", | ||
| filter={"x": {"$in": 1}}, | ||
| doc=[{"_id": 1, "x": 1}], | ||
| error_code=BAD_VALUE_ERROR, | ||
| msg="$in with non-array int argument returns error", | ||
| ), | ||
| QueryTestCase( | ||
| id="non_array_string", | ||
| filter={"x": {"$in": "hello"}}, | ||
| doc=[{"_id": 1, "x": 1}], | ||
| error_code=BAD_VALUE_ERROR, | ||
| msg="$in with non-array string argument returns error", | ||
| ), | ||
| QueryTestCase( | ||
| id="non_array_object", | ||
| filter={"x": {"$in": {"a": 1}}}, | ||
| doc=[{"_id": 1, "x": 1}], | ||
| error_code=BAD_VALUE_ERROR, | ||
| msg="$in with non-array object argument returns error", | ||
| ), | ||
| QueryTestCase( | ||
| id="non_array_null", | ||
| filter={"x": {"$in": None}}, | ||
| doc=[{"_id": 1, "x": 1}], | ||
| error_code=BAD_VALUE_ERROR, | ||
| msg="$in with non-array null argument returns error", | ||
| ), | ||
| QueryTestCase( | ||
| id="non_array_boolean", | ||
| filter={"x": {"$in": True}}, | ||
| doc=[{"_id": 1, "x": 1}], | ||
| error_code=BAD_VALUE_ERROR, | ||
| msg="$in with non-array boolean argument returns error", | ||
| ), | ||
| QueryTestCase( | ||
| id="query_operator_in_array", | ||
| filter={"x": {"$in": [{"$gt": 1}]}}, | ||
| doc=[{"_id": 1, "x": 2}], | ||
| error_code=BAD_VALUE_ERROR, | ||
| msg="$in with query operator object in array returns error", | ||
| ), | ||
| ] | ||
|
|
||
|
|
||
| @pytest.mark.parametrize("test_case", pytest_params(ERROR_TESTS)) | ||
| def test_in_argument_handling_errors(collection, test_case): | ||
| """Parametrized test for $in invalid argument handling.""" | ||
| collection.insert_many(test_case.doc) | ||
| result = execute_command(collection, {"find": collection.name, "filter": test_case.filter}) | ||
| assertFailureCode(result, test_case.error_code, test_case.msg) | ||
212 changes: 212 additions & 0 deletions
212
...tdb_tests/compatibility/tests/core/operator/query/comparison/in/test_in_array_matching.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 |
|---|---|---|
| @@ -0,0 +1,212 @@ | ||
| """ | ||
| Tests for $in query operator array and document matching behavior. | ||
|
|
||
| Covers scalar matching, result set behavior, _id field queries, array element | ||
| matching, nested arrays, exact array match, sub-array match, object equality | ||
| semantics, empty array/object, dotted path traversal, and array order independence. | ||
| """ | ||
|
|
||
| import pytest | ||
| from bson import ObjectId | ||
|
|
||
| from documentdb_tests.compatibility.tests.core.operator.query.utils.query_test_case import ( | ||
| QueryTestCase, | ||
| ) | ||
| from documentdb_tests.framework.assertions import assertSuccess | ||
| from documentdb_tests.framework.executor import execute_command | ||
| from documentdb_tests.framework.parametrize import pytest_params | ||
|
|
||
| OID1 = ObjectId("507f1f77bcf86cd799439011") | ||
| OID2 = ObjectId("507f1f77bcf86cd799439012") | ||
| OID3 = ObjectId("507f1f77bcf86cd799439013") | ||
|
|
||
| TESTS: list[QueryTestCase] = [ | ||
| QueryTestCase( | ||
| id="scalar_all_matching_docs_returned", | ||
| filter={"x": {"$in": [1]}}, | ||
| doc=[ | ||
| {"_id": 1, "x": 1}, | ||
| {"_id": 2, "x": 1}, | ||
| {"_id": 3, "x": 1}, | ||
| {"_id": 4, "x": 1}, | ||
| {"_id": 5, "x": 1}, | ||
| ], | ||
| expected=[ | ||
| {"_id": 1, "x": 1}, | ||
| {"_id": 2, "x": 1}, | ||
| {"_id": 3, "x": 1}, | ||
| {"_id": 4, "x": 1}, | ||
| {"_id": 5, "x": 1}, | ||
| ], | ||
| msg="$in returns all matching documents, not just first", | ||
| ), | ||
| QueryTestCase( | ||
| id="scalar_multiple_values_union", | ||
| filter={"x": {"$in": [1, 3]}}, | ||
| doc=[{"_id": 1, "x": 1}, {"_id": 2, "x": 2}, {"_id": 3, "x": 3}], | ||
| expected=[{"_id": 1, "x": 1}, {"_id": 3, "x": 3}], | ||
| msg="$in with multiple matching values returns union", | ||
| ), | ||
| QueryTestCase( | ||
| id="id_objectids", | ||
| filter={"_id": {"$in": [OID1, OID3]}}, | ||
| doc=[{"_id": OID1, "x": 1}, {"_id": OID2, "x": 2}, {"_id": OID3, "x": 3}], | ||
| expected=[{"_id": OID1, "x": 1}, {"_id": OID3, "x": 3}], | ||
| msg="$in on _id with ObjectIds", | ||
| ), | ||
| QueryTestCase( | ||
| id="id_mixed_types", | ||
| filter={"_id": {"$in": [1, "abc", OID1]}}, | ||
| doc=[{"_id": 1, "x": "a"}, {"_id": "abc", "x": "b"}, {"_id": OID1, "x": "c"}], | ||
| expected=[{"_id": 1, "x": "a"}, {"_id": "abc", "x": "b"}, {"_id": OID1, "x": "c"}], | ||
| msg="$in on _id with mixed types", | ||
| ), | ||
| QueryTestCase( | ||
| id="id_single_value", | ||
| filter={"_id": {"$in": [OID1]}}, | ||
| doc=[{"_id": OID1, "x": 1}, {"_id": OID2, "x": 2}], | ||
| expected=[{"_id": OID1, "x": 1}], | ||
| msg="$in on _id with single value is equivalent to equality", | ||
| ), | ||
| QueryTestCase( | ||
| id="id_null", | ||
| filter={"_id": {"$in": [None]}}, | ||
| doc=[{"_id": None, "x": 1}, {"_id": 1, "x": 2}], | ||
| expected=[{"_id": None, "x": 1}], | ||
| msg="$in on _id with null matches docs with null _id", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_empty_no_match", | ||
| filter={"x": {"$in": [1]}}, | ||
| doc=[{"_id": 1, "x": []}], | ||
| expected=[], | ||
| msg="$in does NOT match empty array field", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_one_element_match", | ||
| filter={"x": {"$in": [2]}}, | ||
| doc=[{"_id": 1, "x": [1, 2, 3]}, {"_id": 2, "x": [4, 5]}], | ||
| expected=[{"_id": 1, "x": [1, 2, 3]}], | ||
| msg="$in matches array field with one matching element", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_partial_overlap_matches", | ||
| filter={"x": {"$in": [2, 4]}}, | ||
| doc=[{"_id": 1, "x": [1, 2, 3]}], | ||
| expected=[{"_id": 1, "x": [1, 2, 3]}], | ||
| msg="$in on array field with partial overlap still matches", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_no_element_match", | ||
| filter={"x": {"$in": [4, 5]}}, | ||
| doc=[{"_id": 1, "x": [1, 2, 3]}], | ||
| expected=[], | ||
| msg="$in does NOT match array field with no matching elements", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_null_element_match", | ||
| filter={"x": {"$in": [None]}}, | ||
| doc=[{"_id": 1, "x": [1, None, 3]}, {"_id": 2, "x": [1, 2]}], | ||
| expected=[{"_id": 1, "x": [1, None, 3]}], | ||
| msg="$in with null matches array containing null", | ||
| ), | ||
| QueryTestCase( | ||
| id="nested_sub_array_match", | ||
| filter={"x": {"$in": [[1, 2]]}}, | ||
| doc=[{"_id": 1, "x": [[1, 2], [3, 4]]}], | ||
| expected=[{"_id": 1, "x": [[1, 2], [3, 4]]}], | ||
| msg="$in with array value matches nested sub-array element", | ||
| ), | ||
| QueryTestCase( | ||
| id="nested_scalar_no_match", | ||
| filter={"x": {"$in": [1]}}, | ||
| doc=[{"_id": 1, "x": [[1, 2], [3, 4]]}], | ||
| expected=[], | ||
| msg="$in scalar does NOT match nested array (1 is not a top-level element)", | ||
| ), | ||
| QueryTestCase( | ||
| id="mixed_scalar_and_nested_array", | ||
| filter={"x": {"$in": [1]}}, | ||
| doc=[{"_id": 1, "x": [1, [2, 3]]}], | ||
| expected=[{"_id": 1, "x": [1, [2, 3]]}], | ||
| msg="$in scalar matches top-level scalar in mixed array", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_partial_value_no_match", | ||
| filter={"x": {"$in": [[1]]}}, | ||
| doc=[{"_id": 1, "x": [1, 2]}], | ||
| expected=[], | ||
| msg="$in with partial array value does NOT match", | ||
| ), | ||
| QueryTestCase( | ||
| id="array_exact_value_match", | ||
| filter={"x": {"$in": [[1, 2]]}}, | ||
| doc=[{"_id": 1, "x": [1, 2]}, {"_id": 2, "x": [3, 4]}], | ||
| expected=[{"_id": 1, "x": [1, 2]}], | ||
| msg="$in with array value matches exact array field", | ||
| ), | ||
| QueryTestCase( | ||
| id="object_exact_element_match", | ||
| filter={"x": {"$in": [{"a": 1}]}}, | ||
| doc=[{"_id": 1, "x": [{"a": 1}, {"a": 2}]}], | ||
| expected=[{"_id": 1, "x": [{"a": 1}, {"a": 2}]}], | ||
| msg="$in with object matches exact object element in array", | ||
| ), | ||
| QueryTestCase( | ||
| id="object_key_order_no_match", | ||
| filter={"x": {"$in": [{"b": 2, "a": 1}]}}, | ||
| doc=[{"_id": 1, "x": [{"a": 1, "b": 2}]}], | ||
| expected=[], | ||
| msg="$in with object different key order does NOT match (BSON key order matters)", | ||
| ), | ||
| QueryTestCase( | ||
| id="object_extra_keys_no_match", | ||
| filter={"x": {"$in": [{"a": 1}]}}, | ||
| doc=[{"_id": 1, "x": [{"a": 1, "b": 2}]}], | ||
| expected=[], | ||
| msg="$in with object does NOT match object with extra keys", | ||
| ), | ||
| QueryTestCase( | ||
| id="empty_object_match", | ||
| filter={"x": {"$in": [{}]}}, | ||
| doc=[{"_id": 1, "x": {}}, {"_id": 2, "x": {"a": 1}}], | ||
| expected=[{"_id": 1, "x": {}}], | ||
| msg="$in with empty object matches empty object", | ||
| ), | ||
| QueryTestCase( | ||
| id="empty_array_value_match", | ||
| filter={"x": {"$in": [[]]}}, | ||
| doc=[{"_id": 1, "x": []}, {"_id": 2, "x": [1]}], | ||
| expected=[{"_id": 1, "x": []}], | ||
| msg="$in with empty array value matches empty array field", | ||
| ), | ||
| QueryTestCase( | ||
| id="object_key_order_scalar_no_match", | ||
| filter={"x": {"$in": [{"b": 2, "a": 1}]}}, | ||
| doc=[{"_id": 1, "x": {"a": 1, "b": 2}}], | ||
| expected=[], | ||
| msg="$in with object different key order on scalar field does NOT match", | ||
| ), | ||
| QueryTestCase( | ||
| id="in_array_order_independence", | ||
| filter={"x": {"$in": [3, 1]}}, | ||
| doc=[{"_id": 1, "x": 1}, {"_id": 2, "x": 2}, {"_id": 3, "x": 3}], | ||
| expected=[{"_id": 1, "x": 1}, {"_id": 3, "x": 3}], | ||
| msg="$in matches regardless of value order in the array", | ||
| ), | ||
| QueryTestCase( | ||
| id="dotted_path_array_of_objects", | ||
| filter={"a.b": {"$in": [1]}}, | ||
| doc=[{"_id": 1, "a": [{"b": 1}, {"b": 2}]}, {"_id": 2, "a": [{"b": 3}]}], | ||
| expected=[{"_id": 1, "a": [{"b": 1}, {"b": 2}]}], | ||
| msg="$in on dotted path into array of objects matches", | ||
| ), | ||
| ] | ||
|
|
||
|
|
||
| @pytest.mark.parametrize("test_case", pytest_params(TESTS)) | ||
| def test_in_matching(collection, test_case): | ||
| """Parametrized test for $in operator array and document matching behavior.""" | ||
| collection.insert_many(test_case.doc) | ||
| result = execute_command(collection, {"find": collection.name, "filter": test_case.filter}) | ||
| assertSuccess(result, test_case.expected, msg=test_case.msg, ignore_doc_order=True) |
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.