summaryrefslogtreecommitdiff
path: root/tests/test_cleanup.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2014-12-02 10:06:21 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2014-12-02 10:06:21 +0100
commitfd841e416881cc0392e61ec312c1870f3a0004bd (patch)
tree8357ba56e79d614ba57f722e7878b853591dc339 /tests/test_cleanup.c
Initial import of libmongo-client version 0.1.8-2
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;
+}