summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/index_bounds_builder_test.cpp
diff options
context:
space:
mode:
authorDavid Hatch <david.hatch@mongodb.com>2015-07-27 14:45:01 -0400
committerDavid Hatch <david.hatch@mongodb.com>2015-07-28 16:23:46 -0400
commit4273fdf07c5af4bd0fd156f5a8a1d8efa56519fb (patch)
treea00da8baff7c3a62bd4a6ab00160f7e9c98cb3ca /src/mongo/db/query/index_bounds_builder_test.cpp
parent645e9ad9dba32abf96a4d58abbf5c6be205c57cc (diff)
downloadmongo-4273fdf07c5af4bd0fd156f5a8a1d8efa56519fb.tar.gz
SERVER-19348, SERVER-19349: Correct index bounds on $type and $mod.
Diffstat (limited to 'src/mongo/db/query/index_bounds_builder_test.cpp')
-rw-r--r--src/mongo/db/query/index_bounds_builder_test.cpp28
1 files changed, 27 insertions, 1 deletions
diff --git a/src/mongo/db/query/index_bounds_builder_test.cpp b/src/mongo/db/query/index_bounds_builder_test.cpp
index bd8b9d0d97e..d65907e1714 100644
--- a/src/mongo/db/query/index_bounds_builder_test.cpp
+++ b/src/mongo/db/query/index_bounds_builder_test.cpp
@@ -51,6 +51,7 @@ double numberMin = -numeric_limits<double>::max();
double numberMax = numeric_limits<double>::max();
double negativeInfinity = -numeric_limits<double>::infinity();
double positiveInfinity = numeric_limits<double>::infinity();
+double NaN = numeric_limits<double>::quiet_NaN();
/**
* Utility function to create MatchExpression
@@ -897,7 +898,8 @@ TEST(IndexBoundsBuilderTest, TranslateMod) {
ASSERT_EQUALS(oil.intervals.size(), 1U);
ASSERT_EQUALS(
Interval::INTERVAL_EQUALS,
- oil.intervals[0].compare(Interval(BSON("" << numberMin << "" << numberMax), true, true)));
+ oil.intervals[0].compare(Interval(BSON("" << NaN << "" << positiveInfinity),
+ true, true)));
ASSERT_EQUALS(tightness, IndexBoundsBuilder::INEXACT_COVERED);
}
@@ -1438,4 +1440,28 @@ TEST(IndexBoundsBuilderTest, CodeWithScopeTypeBounds) {
ASSERT(tightness == IndexBoundsBuilder::INEXACT_FETCH);
}
+// Test $type bounds for double BSON type.
+TEST(IndexBoundsBuilderTest, DoubleTypeBounds) {
+ IndexEntry testIndex = IndexEntry(BSONObj());
+ BSONObj obj = fromjson("{a: {$type: 1}}");
+ unique_ptr<MatchExpression> expr(parseMatchExpression(obj));
+ BSONElement elt = obj.firstElement();
+
+ OrderedIntervalList oil;
+ IndexBoundsBuilder::BoundsTightness tightness;
+ IndexBoundsBuilder::translate(expr.get(), elt, testIndex, &oil, &tightness);
+
+ // Build the expected interval.
+ BSONObjBuilder bob;
+ bob.appendNumber("", NaN);
+ bob.appendNumber("", positiveInfinity);
+ BSONObj expectedInterval = bob.obj();
+
+ // Check the output of translate().
+ ASSERT_EQUALS(oil.name, "a");
+ ASSERT_EQUALS(oil.intervals.size(), 1U);
+ ASSERT_EQUALS(Interval::INTERVAL_EQUALS,
+ oil.intervals[0].compare(Interval(expectedInterval, true, true)));
+ ASSERT(tightness == IndexBoundsBuilder::INEXACT_FETCH);
+}
} // namespace