/** * Copyright (C) 2018-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 * . * * 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/update/object_replace_node.h" #include "mongo/bson/mutable/algorithm.h" #include "mongo/bson/mutable/mutable_bson_test_utils.h" #include "mongo/db/json.h" #include "mongo/db/logical_clock.h" #include "mongo/db/update/update_node_test_fixture.h" #include "mongo/unittest/unittest.h" namespace mongo { namespace { using ObjectReplaceNodeTest = UpdateNodeTest; using mongo::mutablebson::Element; using mongo::mutablebson::countChildren; TEST_F(ObjectReplaceNodeTest, Noop) { auto obj = fromjson("{a: 1, b: 2}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{a: 1, b: 2}")); auto result = node.apply(getApplyParams(doc.root())); ASSERT_TRUE(result.noop); ASSERT_FALSE(result.indexesAffected); ASSERT_EQUALS(fromjson("{a: 1, b: 2}"), doc); ASSERT_TRUE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, ShouldNotCreateIdIfNoIdExistsAndNoneIsSpecified) { auto obj = fromjson("{a: 1, b: 2}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{c: 1, d: 2}")); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{a: 1, b: 2}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{a: 1, b: 2}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, ShouldPreserveIdOfExistingDocumentIfIdNotSpecified) { auto obj = fromjson("{a: 1, b: 2}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, c: 1, d: 2}")); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{_id: 0, a: 1, b: 2}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{_id: 0, a: 1, b: 2}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, ShouldSucceedWhenImmutableIdIsNotModified) { auto obj = fromjson("{_id: 0, a: 1, b: 2}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, c: 1, d: 2}")); addImmutablePath("_id"); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{_id: 0, a: 1, b: 2}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{_id: 0, a: 1, b: 2}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, IdTimestampNotModified) { auto obj = fromjson("{_id: Timestamp(0,0)}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{}")); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{_id: Timestamp(0,0)}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{_id: Timestamp(0,0)}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, NonIdTimestampsModified) { auto obj = fromjson("{a: Timestamp(0,0), b: Timestamp(0,0)}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{}")); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(doc.root().countChildren(), 2U); auto elemA = doc.root()["a"]; ASSERT_TRUE(elemA.ok()); ASSERT_EQUALS(elemA.getType(), BSONType::bsonTimestamp); ASSERT_NOT_EQUALS(0U, elemA.getValueTimestamp().getSecs()); ASSERT_NOT_EQUALS(0U, elemA.getValueTimestamp().getInc()); auto elemB = doc.root()["b"]; ASSERT_TRUE(elemB.ok()); ASSERT_EQUALS(elemB.getType(), BSONType::bsonTimestamp); ASSERT_NOT_EQUALS(0U, elemB.getValueTimestamp().getSecs()); ASSERT_NOT_EQUALS(0U, elemB.getValueTimestamp().getInc()); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(doc, getLogDoc()); } TEST_F(ObjectReplaceNodeTest, ComplexDoc) { auto obj = fromjson("{a: 1, b: [0, 1, 2], c: {d: 1}}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{a: 1, b: [0, 2, 2], e: []}")); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{a: 1, b: [0, 1, 2], c: {d: 1}}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{a: 1, b: [0, 1, 2], c: {d: 1}}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, CannotRemoveImmutablePath) { auto obj = fromjson("{_id: 0, c: 1}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, a: {b: 1}}")); addImmutablePath("a.b"); ASSERT_THROWS_CODE_AND_WHAT(node.apply(getApplyParams(doc.root())), AssertionException, ErrorCodes::ImmutableField, "After applying the update, the 'a.b' (required and immutable) " "field was found to have been removed --{ _id: 0, a: { b: 1 } }"); } TEST_F(ObjectReplaceNodeTest, IdFieldIsNotRemoved) { auto obj = fromjson("{a: 1}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, b: 1}")); addImmutablePath("_id"); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{_id: 0, a: 1}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{_id: 0, a: 1}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, CannotReplaceImmutablePathWithArrayField) { auto obj = fromjson("{_id: 0, a: [{b: 1}]}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, a: {b: 1}}")); addImmutablePath("a.b"); ASSERT_THROWS_CODE_AND_WHAT(node.apply(getApplyParams(doc.root())), AssertionException, ErrorCodes::NotSingleValueField, "After applying the update to the document, the (immutable) field " "'a.b' was found to be an array or array descendant."); } TEST_F(ObjectReplaceNodeTest, CannotMakeImmutablePathArrayDescendant) { auto obj = fromjson("{_id: 0, a: [1]}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, a: {'0': 1}}")); addImmutablePath("a.0"); ASSERT_THROWS_CODE_AND_WHAT(node.apply(getApplyParams(doc.root())), AssertionException, ErrorCodes::NotSingleValueField, "After applying the update to the document, the (immutable) field " "'a.0' was found to be an array or array descendant."); } TEST_F(ObjectReplaceNodeTest, CannotModifyImmutablePath) { auto obj = fromjson("{_id: 0, a: {b: 2}}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0, a: {b: 1}}")); addImmutablePath("a.b"); ASSERT_THROWS_CODE_AND_WHAT(node.apply(getApplyParams(doc.root())), AssertionException, ErrorCodes::ImmutableField, "After applying the update, the (immutable) field 'a.b' was found " "to have been altered to b: 2"); } TEST_F(ObjectReplaceNodeTest, CannotModifyImmutableId) { auto obj = fromjson("{_id: 1}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{_id: 0}")); addImmutablePath("_id"); ASSERT_THROWS_CODE_AND_WHAT(node.apply(getApplyParams(doc.root())), AssertionException, ErrorCodes::ImmutableField, "After applying the update, the (immutable) field '_id' was found " "to have been altered to _id: 1"); } TEST_F(ObjectReplaceNodeTest, CanAddImmutableField) { auto obj = fromjson("{a: {b: 1}}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{c: 1}")); addImmutablePath("a.b"); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{a: {b: 1}}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{a: {b: 1}}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, CanAddImmutableId) { auto obj = fromjson("{_id: 0}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{c: 1}")); addImmutablePath("_id"); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{_id: 0}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{_id: 0}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, CannotCreateDollarPrefixedNameWhenValidateForStorageIsTrue) { auto obj = fromjson("{a: {b: 1, $bad: 1}}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{}")); ASSERT_THROWS_CODE_AND_WHAT( node.apply(getApplyParams(doc.root())), AssertionException, ErrorCodes::DollarPrefixedFieldName, "The dollar ($) prefixed field '$bad' in 'a.$bad' is not valid for storage."); } TEST_F(ObjectReplaceNodeTest, CanCreateDollarPrefixedNameWhenValidateForStorageIsFalse) { auto obj = fromjson("{a: {b: 1, $bad: 1}}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{}")); setValidateForStorage(false); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{a: {b: 1, $bad: 1}}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); ASSERT_EQUALS(fromjson("{a: {b: 1, $bad: 1}}"), getLogDoc()); } TEST_F(ObjectReplaceNodeTest, NoLogBuilder) { auto obj = fromjson("{a: 1}"); ObjectReplaceNode node(obj); mutablebson::Document doc(fromjson("{b: 1}")); setLogBuilderToNull(); auto result = node.apply(getApplyParams(doc.root())); ASSERT_FALSE(result.noop); ASSERT_TRUE(result.indexesAffected); ASSERT_EQUALS(fromjson("{a: 1}"), doc); ASSERT_FALSE(doc.isInPlaceModeEnabled()); } } // namespace } // namespace mongo