summaryrefslogtreecommitdiff
path: root/tests/test_cleanup.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_cleanup.c')
-rw-r--r--tests/test_cleanup.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/test_cleanup.c b/tests/test_cleanup.c
new file mode 100644
index 0000000..bef203a
--- /dev/null
+++ b/tests/test_cleanup.c
@@ -0,0 +1,31 @@
+#include "test.h"
+#include <mongo.h>
+
+int
+main (void)
+{
+ mongo_sync_connection *conn;
+ gchar *c;
+
+ if (!test_env_setup ())
+ return 0;
+
+ conn = mongo_sync_connect (config.primary_host, config.primary_port, FALSE);
+ mongo_sync_cmd_drop (conn, config.db, config.coll);
+
+ c = g_strconcat (config.coll, ".grid.files", NULL);
+ mongo_sync_cmd_drop (conn, config.db, c);
+ g_free (c);
+
+ c = g_strconcat (config.coll, ".grid.chunks", NULL);
+ mongo_sync_cmd_drop (conn, config.db, c);
+ g_free (c);
+
+ c = g_strconcat (config.coll, ".capped", NULL);
+ mongo_sync_cmd_drop (conn, config.db, c);
+ g_free (c);
+
+ test_env_free ();
+
+ return 0;
+}