summaryrefslogtreecommitdiff
path: root/src/mongo/db/index/hash_key_generator_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/index/hash_key_generator_test.cpp')
-rw-r--r--src/mongo/db/index/hash_key_generator_test.cpp14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/mongo/db/index/hash_key_generator_test.cpp b/src/mongo/db/index/hash_key_generator_test.cpp
index b2bf9a2755a..a6f6600449a 100644
--- a/src/mongo/db/index/hash_key_generator_test.cpp
+++ b/src/mongo/db/index/hash_key_generator_test.cpp
@@ -32,6 +32,8 @@
#include "mongo/db/index/expression_keys_private.h"
+#include <algorithm>
+
#include "mongo/bson/bsonobjbuilder.h"
#include "mongo/db/hasher.h"
#include "mongo/db/json.h"
@@ -58,11 +60,21 @@ std::string dumpKeyset(const BSONObjSet& objs) {
}
bool assertKeysetsEqual(const BSONObjSet& expectedKeys, const BSONObjSet& actualKeys) {
- if (expectedKeys != actualKeys) {
+ if (expectedKeys.size() != actualKeys.size()) {
log() << "Expected: " << dumpKeyset(expectedKeys) << ", "
<< "Actual: " << dumpKeyset(actualKeys);
return false;
}
+
+ if (!std::equal(expectedKeys.begin(),
+ expectedKeys.end(),
+ actualKeys.begin(),
+ SimpleBSONObjComparator::kInstance.makeEqualTo())) {
+ log() << "Expected: " << dumpKeyset(expectedKeys) << ", "
+ << "Actual: " << dumpKeyset(actualKeys);
+ return false;
+ }
+
return true;
}