summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/document_source_replace_root_test.cpp
diff options
context:
space:
mode:
authorCharlie Swanson <cswanson310@gmail.com>2016-08-29 14:26:29 -0400
committerCharlie Swanson <cswanson310@gmail.com>2016-09-01 14:08:25 -0400
commit698cd2555dabf2ab6c1ed4c504d1e2546da0f57a (patch)
tree206a17f69cf6a1720cb153ba90c29acfd7f565f2 /src/mongo/db/pipeline/document_source_replace_root_test.cpp
parentb1014fe1b40a69cd90b27cb336a170317eecc6b7 (diff)
downloadmongo-698cd2555dabf2ab6c1ed4c504d1e2546da0f57a.tar.gz
SERVER-24153 Split document_source_test.cpp into one file per stage.
Diffstat (limited to 'src/mongo/db/pipeline/document_source_replace_root_test.cpp')
-rw-r--r--src/mongo/db/pipeline/document_source_replace_root_test.cpp339
1 files changed, 339 insertions, 0 deletions
diff --git a/src/mongo/db/pipeline/document_source_replace_root_test.cpp b/src/mongo/db/pipeline/document_source_replace_root_test.cpp
new file mode 100644
index 00000000000..0ba1c7ab2b9
--- /dev/null
+++ b/src/mongo/db/pipeline/document_source_replace_root_test.cpp
@@ -0,0 +1,339 @@
+/**
+ * Copyright (C) 2016 MongoDB Inc.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * 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
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * 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 GNU Affero General 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 <boost/intrusive_ptr.hpp>
+
+#include "mongo/bson/bsonmisc.h"
+#include "mongo/bson/bsonobj.h"
+#include "mongo/db/pipeline/aggregation_context_fixture.h"
+#include "mongo/db/pipeline/dependencies.h"
+#include "mongo/db/pipeline/document.h"
+#include "mongo/db/pipeline/document_source.h"
+#include "mongo/db/pipeline/document_value_test_util.h"
+#include "mongo/unittest/unittest.h"
+
+namespace mongo {
+namespace {
+
+using boost::intrusive_ptr;
+
+class ReplaceRootBasics : public AggregationContextFixture {
+protected:
+ intrusive_ptr<DocumentSource> createReplaceRoot(const BSONObj& replaceRoot) {
+ BSONObj spec = BSON("$replaceRoot" << replaceRoot);
+ BSONElement specElement = spec.firstElement();
+ return DocumentSourceReplaceRoot::createFromBson(specElement, getExpCtx());
+ }
+
+ /**
+ * Assert 'source' consistently reports it is exhausted.
+ */
+ void assertExhausted(const boost::intrusive_ptr<DocumentSource>& source) const {
+ ASSERT(source->getNext().isEOF());
+ ASSERT(source->getNext().isEOF());
+ ASSERT(source->getNext().isEOF());
+ }
+};
+
+// Verify that sending $newRoot a field path that contains an object in the document results
+// in the replacement of the root with that object.
+TEST_F(ReplaceRootBasics, FieldPathAsNewRootPromotesSubdocument) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$a"));
+ Document subdoc = Document{{"b", 1}, {"c", "hello"}, {"d", Document{{"e", 2}}}};
+ auto mock = DocumentSourceMock::create({Document{{"a", subdoc}}});
+ replaceRoot->setSource(mock.get());
+
+ auto next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), subdoc);
+ assertExhausted(replaceRoot);
+}
+
+// Verify that sending $newRoot a dotted field path that contains an object in the document results
+// in the replacement of the root with that object.
+TEST_F(ReplaceRootBasics, DottedFieldPathAsNewRootPromotesSubdocument) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$a.b"));
+ // source document: {a: {b: {c: 3}}}
+ Document subdoc = Document{{"c", 3}};
+ auto mock = DocumentSourceMock::create({Document{{"a", Document{{"b", subdoc}}}}});
+ replaceRoot->setSource(mock.get());
+
+ auto next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), subdoc);
+ assertExhausted(replaceRoot);
+}
+
+// Verify that sending $newRoot a dotted field path that contains an object in two different
+// documents results in the replacement of the root with that object in both documents.
+TEST_F(ReplaceRootBasics, FieldPathAsNewRootPromotesSubdocumentInMultipleDocuments) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$a"));
+ Document subdoc1 = Document{{"b", 1}, {"c", 2}};
+ Document subdoc2 = Document{{"b", 3}, {"c", 4}};
+ auto mock = DocumentSourceMock::create({Document{{"a", subdoc1}}, Document{{"a", subdoc2}}});
+ replaceRoot->setSource(mock.get());
+
+ // Verify that the first document that comes out is the first document we put in.
+ auto next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), subdoc1);
+
+ next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), subdoc2);
+
+ assertExhausted(replaceRoot);
+}
+
+// Verify that when newRoot contains an expression object, the document is replaced with that
+// object.
+TEST_F(ReplaceRootBasics, ExpressionObjectForNewRootReplacesRootWithThatObject) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot" << BSON("b" << 1)));
+ auto mock = DocumentSourceMock::create({Document{{"a", 2}}});
+ replaceRoot->setSource(mock.get());
+
+ auto next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), (Document{{"b", 1}}));
+ assertExhausted(replaceRoot);
+
+ BSONObj newObject = BSON("a" << 1 << "b" << 2 << "arr" << BSON_ARRAY(3 << 4 << 5));
+ replaceRoot = createReplaceRoot(BSON("newRoot" << newObject));
+ mock = DocumentSourceMock::create({Document{{"c", 2}}});
+ replaceRoot->setSource(mock.get());
+
+ next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), Document(newObject));
+ assertExhausted(replaceRoot);
+
+ replaceRoot = createReplaceRoot(BSON("newRoot" << BSON("a" << BSON("b" << 1))));
+ mock = DocumentSourceMock::create({Document{{"c", 2}}});
+ replaceRoot->setSource(mock.get());
+
+ next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), (Document{{"a", Document{{"b", 1}}}}));
+ assertExhausted(replaceRoot);
+
+ replaceRoot = createReplaceRoot(BSON("newRoot" << BSON("a" << 2)));
+ mock = DocumentSourceMock::create({Document{{"b", 2}}});
+ replaceRoot->setSource(mock.get());
+
+ next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), (Document{{"a", 2}}));
+ assertExhausted(replaceRoot);
+}
+
+// Verify that when newRoot contains a system variable, the document is replaced with the correct
+// object corresponding to that system variable.
+TEST_F(ReplaceRootBasics, SystemVariableForNewRootReplacesRootWithThatObject) {
+ // System variables
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$$CURRENT"));
+ Document inputDoc = Document{{"b", 2}};
+ auto mock = DocumentSourceMock::create({inputDoc});
+ replaceRoot->setSource(mock.get());
+
+ auto next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), inputDoc);
+ assertExhausted(replaceRoot);
+
+ replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$$ROOT"));
+ mock = DocumentSourceMock::create({inputDoc});
+ replaceRoot->setSource(mock.get());
+
+ next = replaceRoot->getNext();
+ ASSERT_TRUE(next.isAdvanced());
+ ASSERT_DOCUMENT_EQ(next.releaseDocument(), inputDoc);
+ assertExhausted(replaceRoot);
+}
+
+// Verify that when the expression at newRoot does not resolve to an object, as per the spec we
+// throw a user assertion.
+TEST_F(ReplaceRootBasics, ErrorsWhenNewRootDoesNotEvaluateToAnObject) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$a"));
+
+ // A string is not an object.
+ auto mock = DocumentSourceMock::create({Document{{"a", "hello"}}});
+ replaceRoot->setSource(mock.get());
+ ASSERT_THROWS_CODE(replaceRoot->getNext(), UserException, 40228);
+
+ // An integer is not an object.
+ mock = DocumentSourceMock::create({Document{{"a", 5}}});
+ replaceRoot->setSource(mock.get());
+ ASSERT_THROWS_CODE(replaceRoot->getNext(), UserException, 40228);
+
+ // Literals are not objects.
+ replaceRoot = createReplaceRoot(BSON("newRoot" << BSON("$literal" << 1)));
+ mock = DocumentSourceMock::create({Document()});
+ replaceRoot->setSource(mock.get());
+ ASSERT_THROWS_CODE(replaceRoot->getNext(), UserException, 40228);
+ assertExhausted(replaceRoot);
+
+ // Most operator expressions do not resolve to objects.
+ replaceRoot = createReplaceRoot(BSON("newRoot" << BSON("$and"
+ << "$a")));
+ mock = DocumentSourceMock::create({Document{{"a", true}}});
+ replaceRoot->setSource(mock.get());
+ ASSERT_THROWS_CODE(replaceRoot->getNext(), UserException, 40228);
+ assertExhausted(replaceRoot);
+}
+
+// Verify that when newRoot contains a field path and that field path doesn't exist, we throw a user
+// error. This error happens whenever the expression evaluates to a "missing" Value.
+TEST_F(ReplaceRootBasics, ErrorsIfNewRootFieldPathDoesNotExist) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$a"));
+
+ auto mock = DocumentSourceMock::create({Document()});
+ replaceRoot->setSource(mock.get());
+ ASSERT_THROWS_CODE(replaceRoot->getNext(), UserException, 40232);
+ assertExhausted(replaceRoot);
+
+ mock = DocumentSourceMock::create({Document{{"e", Document{{"b", Document{{"c", 3}}}}}}});
+ replaceRoot->setSource(mock.get());
+ ASSERT_THROWS_CODE(replaceRoot->getNext(), UserException, 40232);
+ assertExhausted(replaceRoot);
+}
+
+// Verify that the only dependent field is the root we are replacing with.
+TEST_F(ReplaceRootBasics, OnlyDependentFieldIsNewRoot) {
+ auto replaceRoot = createReplaceRoot(BSON("newRoot"
+ << "$a.b"));
+ DepsTracker dependencies;
+ ASSERT_EQUALS(DocumentSource::EXHAUSTIVE_FIELDS, replaceRoot->getDependencies(&dependencies));
+
+ // Should only depend on field a.b
+ ASSERT_EQUALS(1U, dependencies.fields.size());
+ ASSERT_EQUALS(1U, dependencies.fields.count("a.b"));
+ ASSERT_EQUALS(0U, dependencies.fields.count("a"));
+ ASSERT_EQUALS(0U, dependencies.fields.count("b"));
+
+ // Should not need any other fields.
+ ASSERT_EQUALS(false, dependencies.needWholeDocument);
+ ASSERT_EQUALS(false, dependencies.getNeedTextScore());
+}
+
+/**
+ * Fixture to test error cases of initializing the $replaceRoot stage.
+ */
+class ReplaceRootSpec : public AggregationContextFixture {
+public:
+ intrusive_ptr<DocumentSource> createReplaceRoot(const BSONObj& replaceRootSpec) {
+ return DocumentSourceReplaceRoot::createFromBson(replaceRootSpec.firstElement(),
+ getExpCtx());
+ }
+
+ BSONObj createSpec(BSONObj spec) {
+ return BSON("$replaceRoot" << spec);
+ }
+
+ BSONObj createFullSpec(BSONObj spec) {
+ return BSON("$replaceRoot" << BSON("newRoot" << spec));
+ }
+};
+
+// Verify that the creation of a $replaceRoot stage requires an object specification
+TEST_F(ReplaceRootSpec, CreationRequiresObjectSpecification) {
+ ASSERT_THROWS_CODE(createReplaceRoot(BSON("$replaceRoot" << 1)), UserException, 40229);
+ ASSERT_THROWS_CODE(createReplaceRoot(BSON("$replaceRoot"
+ << "string")),
+ UserException,
+ 40229);
+}
+
+// Verify that the only valid option for the $replaceRoot object specification is newRoot.
+TEST_F(ReplaceRootSpec, OnlyValidOptionInObjectSpecIsNewRoot) {
+ ASSERT_THROWS_CODE(createReplaceRoot(createSpec(BSON("newRoot"
+ << "$a"
+ << "root"
+ << 2))),
+ UserException,
+ 40230);
+ ASSERT_THROWS_CODE(createReplaceRoot(createSpec(BSON("newRoot"
+ << "$a"
+ << "path"
+ << 2))),
+ UserException,
+ 40230);
+ ASSERT_THROWS_CODE(createReplaceRoot(createSpec(BSON("path"
+ << "$a"))),
+ UserException,
+ 40230);
+}
+
+// Verify that $replaceRoot requires a valid expression as input to the newRoot option.
+TEST_F(ReplaceRootSpec, RequiresExpressionForNewRootOption) {
+ ASSERT_THROWS_CODE(createReplaceRoot(createSpec(BSONObj())), UserException, 40231);
+ ASSERT_THROWS(createReplaceRoot(createSpec(BSON("newRoot"
+ << "$$$a"))),
+ UserException);
+ ASSERT_THROWS(createReplaceRoot(createSpec(BSON("newRoot"
+ << "$$a"))),
+ UserException);
+ ASSERT_THROWS(createReplaceRoot(createFullSpec(BSON("$map" << BSON("a" << 1)))), UserException);
+}
+
+// Verify that newRoot accepts all types of expressions.
+TEST_F(ReplaceRootSpec, NewRootAcceptsAllTypesOfExpressions) {
+ // Field Path and system variables
+ ASSERT_TRUE(createReplaceRoot(createSpec(BSON("newRoot"
+ << "$a.b.c.d.e"))));
+ ASSERT_TRUE(createReplaceRoot(createSpec(BSON("newRoot"
+ << "$$CURRENT"))));
+
+ // Literals
+ ASSERT_TRUE(createReplaceRoot(createFullSpec(BSON("$literal" << 1))));
+
+ // Expression Objects
+ ASSERT_TRUE(createReplaceRoot(createFullSpec(BSON("a" << BSON("b" << 1)))));
+
+ // Operator Expressions
+ ASSERT_TRUE(createReplaceRoot(createFullSpec(BSON("$and"
+ << "$a"))));
+ ASSERT_TRUE(createReplaceRoot(createFullSpec(BSON("$gt" << BSON_ARRAY("$a" << 1)))));
+ ASSERT_TRUE(createReplaceRoot(createFullSpec(BSON("$sqrt"
+ << "$a"))));
+
+ // Accumulators
+ ASSERT_TRUE(createReplaceRoot(createFullSpec(BSON("$sum"
+ << "$a"))));
+}
+
+} // namespace
+} // namespace mongo