summaryrefslogtreecommitdiff
path: root/src/mongo/db/pipeline/expression_internal_remove_field_tombstones_test.cpp
blob: 589baa5d57743349cbe5e8c7829b49714af7ec26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/**
 *    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/bson/bsonmisc.h"
#include "mongo/bson/bsonobj_comparator_interface.h"
#include "mongo/db/exec/document_value/document.h"
#include "mongo/db/pipeline/aggregation_context_fixture.h"
#include "mongo/db/pipeline/expression_internal_remove_field_tombstones.h"
#include "mongo/unittest/unittest.h"

namespace mongo::expression_internal_tests {

class ExpressionInternalRemoveFieldTombstonesTest : public AggregationContextFixture {
public:
    auto createExpression() {
        auto expr = make_intrusive<ExpressionInternalRemoveFieldTombstones>(
            getExpCtx(),
            ExpressionFieldPath::parse(getExpCtx(), "$$ROOT", getExpCtx()->variablesParseState));
        return expr;
    }
};

TEST_F(ExpressionInternalRemoveFieldTombstonesTest, RemovesTombstoneValues) {
    auto expr = createExpression();
    Document input =
        DOC("a" << Value() << "b" << 1 << "c" << Value() << "d" << 2 << "e" << Value());
    BSONObj expected = BSON("b" << 1 << "d" << 2);
    ASSERT_BSONOBJ_EQ(expr->evaluate(input, &getExpCtx()->variables).getDocument().toBson(),
                      expected);
}

TEST_F(ExpressionInternalRemoveFieldTombstonesTest, RemovesNestedTombstoneValues) {
    auto expr = createExpression();
    Document input =
        DOC("a" << 1 << "b" << DOC("c" << 2 << "d" << Value() << "e" << Value()) << "f" << 2);
    BSONObj expected = BSON("a" << 1 << "b" << BSON("c" << 2) << "f" << 2);
    ASSERT_BSONOBJ_EQ(expr->evaluate(input, &getExpCtx()->variables).getDocument().toBson(),
                      expected);
    input = DOC("a" << 1 << "b" << DOC("c" << DOC("d" << Value() << "e" << 5)) << "f" << 2);
    expected = BSON("a" << 1 << "b" << BSON("c" << BSON("e" << 5)) << "f" << 2);
    ASSERT_BSONOBJ_EQ(expr->evaluate(input, &getExpCtx()->variables).getDocument().toBson(),
                      expected);
}

}  // namespace mongo::expression_internal_tests