summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/sbe_shard_filter_test.cpp
diff options
context:
space:
mode:
authorEric Cox <eric.cox@mongodb.com>2020-10-02 18:59:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-12-01 21:03:49 +0000
commit664e5759c78489a88e66e587c34e5f7127c7eebf (patch)
tree898dde369a563772009f4030d730e0ae18510bec /src/mongo/db/query/sbe_shard_filter_test.cpp
parenta71a2a8bfecf7de0807a28e3eabf9412dddd4258 (diff)
downloadmongo-664e5759c78489a88e66e587c34e5f7127c7eebf.tar.gz
SERVER-50712 Handle shard filtering in SBE
Diffstat (limited to 'src/mongo/db/query/sbe_shard_filter_test.cpp')
-rw-r--r--src/mongo/db/query/sbe_shard_filter_test.cpp221
1 files changed, 221 insertions, 0 deletions
diff --git a/src/mongo/db/query/sbe_shard_filter_test.cpp b/src/mongo/db/query/sbe_shard_filter_test.cpp
new file mode 100644
index 00000000000..5f92418e9d4
--- /dev/null
+++ b/src/mongo/db/query/sbe_shard_filter_test.cpp
@@ -0,0 +1,221 @@
+/**
+ * Copyright (C) 2020-present MongoDB, Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the Server Side Public License, version 1,
+ * as published by MongoDB, Inc.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * Server Side Public License for more details.
+ *
+ * You should have received a copy of the Server Side Public License
+ * along with this program. If not, see
+ * <http://www.mongodb.com/licensing/server-side-public-license>.
+ *
+ * As a special exception, the copyright holders give permission to link the
+ * code of portions of this program with the OpenSSL library under certain
+ * conditions as described in each individual source file and distribute
+ * linked combinations including the program with the OpenSSL library. You
+ * must comply with the Server Side Public License in all respects for
+ * all of the code used other than as permitted herein. If you modify file(s)
+ * with this exception, you may extend this exception to your version of the
+ * file(s), but you are not obligated to do so. If you do not wish to do so,
+ * delete this exception statement from your version. If you delete this
+ * exception statement from all source files in the program, then also delete
+ * it in the license file.
+ */
+
+#include "mongo/platform/basic.h"
+
+#include "mongo/db/exec/shard_filterer_mock.h"
+#include "mongo/db/query/query_solution.h"
+#include "mongo/db/query/sbe_stage_builder_test_fixture.h"
+#include "mongo/db/query/shard_filterer_factory_mock.h"
+#include "mongo/unittest/unittest.h"
+
+namespace mongo {
+
+const NamespaceString kTestNss("TestDB", "TestColl");
+
+class SbeShardFilterTest : public SbeStageBuilderTestFixture {
+protected:
+ /**
+ * Makes a ShardFiltererFactoryInterface that produces a mock ShardFilterer that always passes.
+ */
+ std::unique_ptr<ShardFiltererFactoryInterface> makeAlwaysPassShardFiltererFactory(
+ const BSONObj& shardKeyPattern) {
+ return std::make_unique<ShardFiltererFactoryMock>(
+ std::make_unique<ConstantFilterMock>(true, shardKeyPattern));
+ }
+
+ /**
+ * Makes a ShardFiltererFactoryInterface that produces a mock ShardFilterer that always fails.
+ */
+ std::unique_ptr<ShardFiltererFactoryInterface> makeAlwaysFailShardFiltererFactory(
+ const BSONObj& shardKeyPattern) {
+ return std::make_unique<ShardFiltererFactoryMock>(
+ std::make_unique<ConstantFilterMock>(false, shardKeyPattern));
+ }
+
+ /**
+ * Makes a ShardFiltererFactoryInterface that produces a mock ShardFilterer to filter out docs
+ * containing all null values along the shard key.
+ */
+ std::unique_ptr<ShardFiltererFactoryInterface> makeAllNullShardKeyFiltererFactory(
+ const BSONObj& shardKeyPattern) {
+ return std::make_unique<ShardFiltererFactoryMock>(
+ std::make_unique<AllNullShardKeyFilterMock>(shardKeyPattern));
+ }
+
+
+ /**
+ * Makes a new QuerySolutionNode consisting of a ShardingFilterNode and a child VirtualScanNode.
+ */
+ std::unique_ptr<QuerySolutionNode> makeFilterVirtualScanTree(std::vector<BSONArray> docs) {
+ auto virtScan = std::make_unique<VirtualScanNode>(docs, false);
+ auto shardFilter = std::make_unique<ShardingFilterNode>();
+ shardFilter->children.push_back(virtScan.release());
+ return std::move(shardFilter);
+ }
+
+ /**
+ * Runs a unit test with a given shard filterer factory and asserts that the results match the
+ * expected docs.
+ */
+ void runTest(std::vector<BSONArray> docs,
+ const BSONArray& expected,
+ std::unique_ptr<ShardFiltererFactoryInterface> shardFiltererFactory) {
+ // Construct a QuerySolutionNode consisting of a ShardingFilterNode with a single child
+ // VirtualScanNode.
+ auto shardFilter = makeFilterVirtualScanTree(docs);
+ auto querySolution = makeQuerySolution(std::move(shardFilter));
+
+ // Translate the QuerySolution to an sbe::PlanStage.
+ auto [resultSlots, stage, data] =
+ buildPlanStage(std::move(querySolution), false, std::move(shardFiltererFactory));
+
+ // Prepare the sbe::PlanStage for execution and collect all results.
+ auto resultAccessors = prepareTree(&data.ctx, stage.get(), resultSlots);
+ auto [resultsTag, resultsVal] = getAllResults(stage.get(), resultAccessors[0]);
+ sbe::value::ValueGuard resultGuard{resultsTag, resultsVal};
+
+ // Convert the expected results to an sbe value and assert results.
+ auto [expectedTag, expectedVal] = stage_builder::makeValue(expected);
+ sbe::value::ValueGuard expectedGuard{expectedTag, expectedVal};
+ ASSERT_TRUE(valueEquals(resultsTag, resultsVal, expectedTag, expectedVal));
+ }
+};
+
+TEST_F(SbeShardFilterTest, AlwaysPassFilter) {
+ auto docs = std::vector<BSONArray>{BSON_ARRAY(BSON("a" << 1 << "b" << 2)),
+ BSON_ARRAY(BSON("a" << 2 << "b" << 2)),
+ BSON_ARRAY(BSON("a" << 3 << "b" << 2))};
+ auto expected = BSON_ARRAY(BSON("a" << 1 << "b" << 2)
+ << BSON("a" << 2 << "b" << 2) << BSON("a" << 3 << "b" << 2));
+ runTest(docs, expected, makeAlwaysPassShardFiltererFactory(BSON("a" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, AlwaysFailFilter) {
+ auto docs = std::vector<BSONArray>{BSON_ARRAY(BSON("a" << 1 << "b" << 2)),
+ BSON_ARRAY(BSON("a" << 2 << "b" << 2)),
+ BSON_ARRAY(BSON("a" << 3 << "b" << 2))};
+ auto expected = BSONArray();
+ runTest(docs, expected, makeAlwaysFailShardFiltererFactory(BSON("a" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, ArrayAlongLeafShardKeyGetsFiltered) {
+ auto docs = std::vector<BSONArray>{BSON_ARRAY(BSON("a" << 1 << "b" << 2)),
+ BSON_ARRAY(BSON("a" << 2 << "b" << 2)),
+ BSON_ARRAY(BSON("a" << 3 << "b" << BSON_ARRAY(1 << 2)))};
+
+ auto expected = BSON_ARRAY(BSON("a" << 1 << "b" << 2) << BSON("a" << 2 << "b" << 2));
+ runTest(docs, expected, makeAlwaysPassShardFiltererFactory(BSON("a" << 1 << "b" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, TopLevelArrayShardKeyGetsFiltered) {
+ auto docs = std::vector<BSONArray>{
+ BSON_ARRAY(BSON("a" << BSON("b" << 1))),
+ BSON_ARRAY(BSON("a" << BSON("b" << 2))),
+ BSON_ARRAY(BSON("a" << BSON_ARRAY(BSON("b" << 1) << BSON("b" << 2))))};
+
+ auto expected = BSON_ARRAY(BSON("a" << BSON("b" << 1)) << BSON("a" << BSON("b" << 2)));
+ runTest(docs, expected, makeAlwaysPassShardFiltererFactory(BSON("a.b" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, ArrayAlongBiggerShardKeyGetsFiltered) {
+ auto docs = std::vector<BSONArray>{
+ BSON_ARRAY(BSON("a" << 1 << "b" << 2 << "c" << 3 << "d" << 4)),
+ BSON_ARRAY(BSON("a" << 2 << "b" << 2 << "c" << 3 << "d" << 4)),
+ BSON_ARRAY(BSON("a" << BSON_ARRAY(1 << 2) << "b" << 2 << "c" << 3 << "d" << 4)),
+ BSON_ARRAY(BSON("a" << 3 << "b" << 2 << "c" << 3 << "d" << 4))};
+
+ auto expected = BSON_ARRAY(BSON("a" << 1 << "b" << 2 << "c" << 3 << "d" << 4)
+ << BSON("a" << 2 << "b" << 2 << "c" << 3 << "d" << 4)
+ << BSON("a" << 3 << "b" << 2 << "c" << 3 << "d" << 4));
+ runTest(
+ docs, expected, makeAlwaysPassShardFiltererFactory(BSON("a" << 1 << "b" << 1 << "c" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, ArrayInDottedPathKeyGetsFiltered) {
+ auto docs =
+ std::vector<BSONArray>{BSON_ARRAY(BSON("a" << BSON("b" << 1) << "c" << 2)),
+ BSON_ARRAY(BSON("a" << BSON("b" << 2) << "c" << 2)),
+ BSON_ARRAY(BSON("a" << BSON("b" << BSON_ARRAY(1 << 2)) << "c" << 2)),
+ BSON_ARRAY(BSON("a" << BSON("b" << 3) << "c" << 2))};
+
+ auto expected = BSON_ARRAY(BSON("a" << BSON("b" << 1) << "c" << 2)
+ << BSON("a" << BSON("b" << 2) << "c" << 2)
+ << BSON("a" << BSON("b" << 3) << "c" << 2));
+ runTest(docs, expected, makeAlwaysPassShardFiltererFactory(BSON("a.b" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, ArrayAlongDeepDottedPathGetsFiltered) {
+ auto docs = std::vector<BSONArray>{
+ BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << BSON("e" << BSON("f" << 1))))))),
+ BSON_ARRAY(BSON(
+ "a" << BSON(
+ "b" << BSON("c" << BSON("d" << BSON("e" << BSON("f" << BSON_ARRAY(1 << 2))))))))};
+ auto expected =
+ BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << BSON("e" << BSON("f" << 1)))))));
+ runTest(docs, expected, makeAlwaysPassShardFiltererFactory(BSON("a.b.c.d.e.f" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, MissingFieldsAreFilledCorrectly) {
+ auto docs = std::vector<BSONArray>{BSON_ARRAY(BSON("a" << 1 << "b" << 1 << "c" << 2)),
+ BSON_ARRAY(BSON("a" << 2 << "b" << 2 << "c" << 2)),
+ BSON_ARRAY(BSON("c" << 2))};
+
+ auto expected = BSON_ARRAY(BSON("a" << 1 << "b" << 1 << "c" << 2)
+ << BSON("a" << 2 << "b" << 2 << "c" << 2));
+ runTest(docs, expected, makeAllNullShardKeyFiltererFactory(BSON("a" << 1 << "b" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, MissingFieldsDottedPathFilledCorrectly) {
+ auto docs =
+ std::vector<BSONArray>{BSON_ARRAY(BSON("a" << BSON("b" << 1))),
+ BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << 1)))))};
+
+ auto expected = BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << 1)))));
+ runTest(docs, expected, makeAllNullShardKeyFiltererFactory(BSON("a.b.c.d" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, MissingFieldsAtTopDottedPathFilledCorrectly) {
+ auto docs =
+ std::vector<BSONArray>{BSON_ARRAY(BSON("a" << 1)),
+ BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << 1)))))};
+
+ auto expected = BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << 1)))));
+ runTest(docs, expected, makeAllNullShardKeyFiltererFactory(BSON("a.b.c.d" << 1)));
+}
+
+TEST_F(SbeShardFilterTest, MissingFieldsAtBottomDottedPathFilledCorrectly) {
+ auto docs =
+ std::vector<BSONArray>{BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << 1)))),
+ BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << 1)))))};
+
+ auto expected = BSON_ARRAY(BSON("a" << BSON("b" << BSON("c" << BSON("d" << 1)))));
+ runTest(docs, expected, makeAllNullShardKeyFiltererFactory(BSON("a.b.c.d" << 1)));
+}
+} // namespace mongo