summaryrefslogtreecommitdiff
path: root/src/mongo/base/secure_allocator_test.cpp
diff options
context:
space:
mode:
authorAndrew Morrow <acm@mongodb.com>2015-10-09 14:46:48 -0400
committerAndrew Morrow <acm@mongodb.com>2015-10-27 08:05:31 -0400
commit17a0b2a3be87fb1a1a86db2ee0bf1871e4b8d6fc (patch)
tree08a3d8696b21b4fae3184220dfebef8e0ec65010 /src/mongo/base/secure_allocator_test.cpp
parentd8a428ded9dd3cc47b945f7efdb26dc50b6adf47 (diff)
downloadmongo-17a0b2a3be87fb1a1a86db2ee0bf1871e4b8d6fc.tar.gz
SERVER-20538 Build a general purpose SecureAllocator
Diffstat (limited to 'src/mongo/base/secure_allocator_test.cpp')
-rw-r--r--src/mongo/base/secure_allocator_test.cpp57
1 files changed, 57 insertions, 0 deletions
diff --git a/src/mongo/base/secure_allocator_test.cpp b/src/mongo/base/secure_allocator_test.cpp
new file mode 100644
index 00000000000..f04b286ef2b
--- /dev/null
+++ b/src/mongo/base/secure_allocator_test.cpp
@@ -0,0 +1,57 @@
+/**
+ * Copyright (C) 2015 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 "mongo/base/secure_allocator.h"
+
+#include "mongo/unittest/unittest.h"
+
+namespace mongo {
+
+TEST(SecureAllocator, SecureVector) {
+ SecureVector<int> vec;
+
+ vec.push_back(1);
+ vec.push_back(2);
+
+ ASSERT_EQUALS(1, vec[0]);
+ ASSERT_EQUALS(2, vec[1]);
+
+ vec.resize(2000, 3);
+ ASSERT_EQUALS(3, vec[2]);
+}
+
+TEST(SecureAllocator, SecureString) {
+ SecureString str;
+
+ str.resize(2000, 'x');
+ ASSERT_EQUALS(0, str.compare(SecureString(2000, 'x')));
+}
+
+} // namespace mongo