summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync/sync_cmd_index_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/mongo/sync/sync_cmd_index_create.c')
-rw-r--r--tests/unit/mongo/sync/sync_cmd_index_create.c62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/unit/mongo/sync/sync_cmd_index_create.c b/tests/unit/mongo/sync/sync_cmd_index_create.c
new file mode 100644
index 0000000..6603586
--- /dev/null
+++ b/tests/unit/mongo/sync/sync_cmd_index_create.c
@@ -0,0 +1,62 @@
+#include "test.h"
+#include "mongo.h"
+
+#include <sys/socket.h>
+#include "libmongo-private.h"
+
+void
+test_mongo_sync_cmd_index_create (void)
+{
+ mongo_sync_connection *c;
+ bson *doc, *indexes, *bad_index;
+
+ c = test_make_fake_sync_conn (-1, FALSE);
+ doc = test_bson_generate_full ();
+ indexes = bson_build (BSON_TYPE_INT32, "sex", 1,
+ BSON_TYPE_DOUBLE, "double", 1.0,
+ BSON_TYPE_BOOLEAN, "TRUE", TRUE,
+ BSON_TYPE_INT64, "print", (gint64)-1,
+ BSON_TYPE_INT32, "zero", 0,
+ BSON_TYPE_NONE);
+ bson_finish (indexes);
+
+ bad_index = bson_build (BSON_TYPE_STRING, "str", "teapot", -1,
+ BSON_TYPE_NONE);
+ bson_finish (bad_index);
+
+ ok (mongo_sync_cmd_index_create (NULL, "test.ns", indexes, 0) == FALSE,
+ "mongo_sync_cmd_index_create() fails with a NULL connection");
+ ok (mongo_sync_cmd_index_create (c, NULL, indexes, 0) == FALSE,
+ "mongo_sync_cmd_index_create() fails with a NULL namespace");
+ ok (mongo_sync_cmd_index_create (c, "test.ns", NULL, 0) == FALSE,
+ "mongo_sync_cmd_index_create() fails with NULL indexes");
+ ok (mongo_sync_cmd_index_create (c, "bogus", indexes, 0) == FALSE,
+ "mongo_sync_cmd_index_create() fails with a bogus namespace");
+ ok (mongo_sync_cmd_index_create (c, "test.ns", indexes, 0) == FALSE,
+ "mongo_sync_cmd_index_create() fails with a bogus FD");
+
+ mongo_sync_disconnect (c);
+
+ begin_network_tests (2);
+
+ c = mongo_sync_connect (config.primary_host, config.primary_port,
+ TRUE);
+ mongo_sync_cmd_insert (c, config.ns, doc, NULL);
+
+ ok (mongo_sync_cmd_index_create(c, config.ns, indexes,
+ MONGO_INDEX_UNIQUE | MONGO_INDEX_DROP_DUPS |
+ MONGO_INDEX_BACKGROUND | MONGO_INDEX_SPARSE),
+ "mongo_sync_cmd_index_create() works");
+
+ ok (mongo_sync_cmd_index_create(c, config.ns, bad_index, 0) == FALSE,
+ "mongo_sync_cmd_index_create() should refuse to work with an invalid index spec");
+
+ mongo_sync_disconnect (c);
+
+ bson_free (doc);
+ bson_free (indexes);
+
+ end_network_tests ();
+}
+
+RUN_TEST (7, mongo_sync_cmd_index_create);