summaryrefslogtreecommitdiff
path: root/src/mongo/db/ftdc/ftdc_test.h
diff options
context:
space:
mode:
authorMark Benvenuto <mark.benvenuto@mongodb.com>2015-08-17 11:54:51 -0400
committerMark Benvenuto <mark.benvenuto@mongodb.com>2015-09-08 21:01:42 -0400
commit4dc43cd451f58d59d63e1516f9b0c52f3bb1dd9d (patch)
tree8fb4179ca0f88d3bfedb537428684197cde70252 /src/mongo/db/ftdc/ftdc_test.h
parent9271c08121a0f511b3326a8a2eca449a6a523309 (diff)
downloadmongo-4dc43cd451f58d59d63e1516f9b0c52f3bb1dd9d.tar.gz
SERVER-19585: Implement full-time diagnostic data capture MongoD integration
Diffstat (limited to 'src/mongo/db/ftdc/ftdc_test.h')
-rw-r--r--src/mongo/db/ftdc/ftdc_test.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/mongo/db/ftdc/ftdc_test.h b/src/mongo/db/ftdc/ftdc_test.h
new file mode 100644
index 00000000000..afbca103b4f
--- /dev/null
+++ b/src/mongo/db/ftdc/ftdc_test.h
@@ -0,0 +1,65 @@
+/**
+ * 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 <boost/filesystem.hpp>
+#include <vector>
+
+#include "mongo/db/jsobj.h"
+
+namespace mongo {
+
+/**
+ * Validate the documents in a file match the specified vector.
+ *
+ * Unit Test ASSERTs if there is mismatch.
+ */
+void ValidateDocumentList(const boost::filesystem::path& p, const std::vector<BSONObj>& docs);
+
+/**
+ * Validate that two lists of documents are equal.
+ *
+ * Unit Test ASSERTs if there is mismatch.
+ */
+void ValidateDocumentList(const std::vector<BSONObj>& docs1, const std::vector<BSONObj>& docs2);
+
+/**
+ * Delete a file if it exists.
+ */
+void deleteFileIfNeeded(const boost::filesystem::path& p);
+
+/**
+ * Get a list of files in a directory.
+ */
+std::vector<boost::filesystem::path> scanDirectory(const boost::filesystem::path& path);
+
+/**
+ * Create a new directory, and ensure it is empty.
+ */
+void createDirectoryClean(const boost::filesystem::path& dir);
+
+} // namespace mongo