summaryrefslogtreecommitdiff
path: root/jstests/core/index/wildcard/wildcard_index_collation.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/index/wildcard/wildcard_index_collation.js')
-rw-r--r--jstests/core/index/wildcard/wildcard_index_collation.js122
1 files changed, 122 insertions, 0 deletions
diff --git a/jstests/core/index/wildcard/wildcard_index_collation.js b/jstests/core/index/wildcard/wildcard_index_collation.js
new file mode 100644
index 00000000000..cf5fcf33957
--- /dev/null
+++ b/jstests/core/index/wildcard/wildcard_index_collation.js
@@ -0,0 +1,122 @@
+/**
+ * Test that $** indexes obey collation rules for document values, while the virtual $_path
+ * components stored alongside these values in the index always use simple binary comparison.
+ *
+ * We require that collections are unsharded, since we perform queries which we expect to be
+ * covered.
+ *
+ * @tags: [
+ * assumes_unsharded_collection,
+ * requires_non_retryable_commands,
+ * requires_non_retryable_writes,
+ * ]
+ */
+(function() {
+"user strict";
+
+load("jstests/aggregation/extras/utils.js"); // For arrayEq.
+load("jstests/libs/analyze_plan.js"); // For getPlanStages.
+load("jstests/libs/index_catalog_helpers.js"); // For IndexCatalogHelpers.
+load("jstests/libs/collection_drop_recreate.js"); // For assert[Drop|Create]Collection.
+load("jstests/libs/fixture_helpers.js"); // For isMongos.
+
+const assertArrayEq = (l, r) => assert(arrayEq(l, r));
+
+// Create the collection and assign it a default case-insensitive collation.
+const coll = assertDropAndRecreateCollection(
+ db, "wildcard_collation", {collation: {locale: "en_US", strength: 1}});
+
+// Extracts the winning plan for the given query and projection from the explain output.
+const winningPlan = (query, proj) => FixtureHelpers.isMongos(db)
+ ? getWinningPlan(getWinningPlan(coll.find(query, proj).explain().queryPlanner).shards[0])
+ : getWinningPlan(coll.find(query, proj).explain().queryPlanner);
+
+// Runs the given query and confirms that: (1) the $** was used to answer the query, (2) the
+// results produced by the $** index match the given 'expectedResults', and (3) the same output
+// is produced by a COLLSCAN with the same collation.
+function assertWildcardIndexAnswersQuery(query, expectedResults, projection) {
+ // Verify that the $** index can answer this query.
+ const ixScans = getPlanStages(winningPlan(query, (projection || {_id: 0})), "IXSCAN");
+ assert.gt(ixScans.length, 0, tojson(coll.find(query).explain()));
+ ixScans.forEach((ixScan) => assert(ixScan.keyPattern.$_path));
+
+ // Assert that the $** index produces the expected results, and that these are the same
+ // as those produced by a COLLSCAN with the same collation.
+ const wildcardResults = coll.find(query, (projection || {_id: 0})).toArray();
+ assertArrayEq(wildcardResults, expectedResults);
+ assertArrayEq(wildcardResults,
+ coll.find(query, (projection || {_id: 0}))
+ .collation({locale: "en_US", strength: 1})
+ .hint({$natural: 1})
+ .toArray());
+}
+
+// Confirms that the index matching the given keyPattern has the specified collation.
+function assertIndexHasCollation(keyPattern, collation) {
+ var indexSpecs = coll.getIndexes();
+ var found = IndexCatalogHelpers.findByKeyPattern(indexSpecs, keyPattern, collation);
+ assert.neq(null,
+ found,
+ "Index with key pattern " + tojson(keyPattern) + " and collation " +
+ tojson(collation) + " not found: " + tojson(indexSpecs));
+}
+
+// Confirm that the $** index inherits the collection's default collation.
+assert.commandWorked(coll.createIndex({"$**": 1}));
+assertIndexHasCollation({"$**": 1}, {
+ locale: "en_US",
+ caseLevel: false,
+ caseFirst: "off",
+ strength: 1,
+ numericOrdering: false,
+ alternate: "non-ignorable",
+ maxVariable: "punct",
+ normalization: false,
+ backwards: false,
+ version: "57.1",
+});
+
+// Insert a series of documents whose fieldnames and values differ only by case.
+assert.commandWorked(coll.insert({a: {b: "string", c: "STRING"}, d: "sTrInG", e: 5}));
+assert.commandWorked(coll.insert({a: {b: "STRING", c: "string"}, d: "StRiNg", e: 5}));
+assert.commandWorked(coll.insert({A: {B: "string", C: "STRING"}, d: "sTrInG", E: 5}));
+assert.commandWorked(coll.insert({A: {B: "STRING", C: "string"}, d: "StRiNg", E: 5}));
+
+// Confirm that only the document's values adhere to the case-insensitive collation. The field
+// paths, which are also present in the $** index keys, are evaluated using simple binary
+// comparison; so for instance, path "a.b" does *not* match path "A.B".
+assertWildcardIndexAnswersQuery({"a.b": "string"}, [
+ {a: {b: "string", c: "STRING"}, d: "sTrInG", e: 5},
+ {a: {b: "STRING", c: "string"}, d: "StRiNg", e: 5}
+]);
+assertWildcardIndexAnswersQuery({"A.B": "string"}, [
+ {A: {B: "string", C: "STRING"}, d: "sTrInG", E: 5},
+ {A: {B: "STRING", C: "string"}, d: "StRiNg", E: 5}
+]);
+
+// All documents in the collection are returned if we query over both upper- and lower-case
+// fieldnames, or when the fieldname has a consistent case across all documents.
+const allDocs = coll.find({}, {_id: 0}).toArray();
+assertWildcardIndexAnswersQuery({$or: [{"a.c": "string"}, {"A.C": "string"}]}, allDocs);
+assertWildcardIndexAnswersQuery({d: "string"}, allDocs);
+
+// Confirm that the $** index also differentiates between upper and lower fieldname case when
+// querying fields which do not contain string values.
+assertWildcardIndexAnswersQuery({e: 5}, [
+ {a: {b: "string", c: "STRING"}, d: "sTrInG", e: 5},
+ {a: {b: "STRING", c: "string"}, d: "StRiNg", e: 5}
+]);
+assertWildcardIndexAnswersQuery({E: 5}, [
+ {A: {B: "string", C: "STRING"}, d: "sTrInG", E: 5},
+ {A: {B: "STRING", C: "string"}, d: "StRiNg", E: 5}
+]);
+
+// Confirm that the $** index produces a covered plan for a query on non-string, non-object,
+// non-array values.
+assert(isIndexOnly(coll.getDB(), winningPlan({e: 5}, {_id: 0, e: 1})));
+assert(isIndexOnly(coll.getDB(), winningPlan({E: 5}, {_id: 0, E: 1})));
+
+// Confirm that the $** index differentiates fieldname case when attempting to cover.
+assert(!isIndexOnly(coll.getDB(), winningPlan({e: 5}, {_id: 0, E: 1})));
+assert(!isIndexOnly(coll.getDB(), winningPlan({E: 5}, {_id: 0, e: 1})));
+})();