summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync-pool/sync_pool_new.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/unit/mongo/sync-pool/sync_pool_new.c
Initial import of libmongo-client version 0.1.8-2
Diffstat (limited to 'tests/unit/mongo/sync-pool/sync_pool_new.c')
-rw-r--r--tests/unit/mongo/sync-pool/sync_pool_new.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/unit/mongo/sync-pool/sync_pool_new.c b/tests/unit/mongo/sync-pool/sync_pool_new.c
new file mode 100644
index 0000000..b9758d2
--- /dev/null
+++ b/tests/unit/mongo/sync-pool/sync_pool_new.c
@@ -0,0 +1,19 @@
+#include "test.h"
+#include "mongo.h"
+
+void
+test_mongo_sync_pool_new (void)
+{
+ ok (mongo_sync_pool_new ("example.com", 27017, 0, 0) == NULL,
+ "mongo_sync_pool_new() needs at least one connection");
+ ok (mongo_sync_pool_new (NULL, 27017, 1, 0) == NULL,
+ "mongo_sync_pool_new() should fail without a HOST");
+ ok (mongo_sync_pool_new ("example.com", -1, 1, 0) == NULL,
+ "mongo_sync_pool_new() should fail with an invalid port");
+ ok (mongo_sync_pool_new ("example.com", 27017, -1, 0) == NULL,
+ "mongo_sync_pool_new() should fail with an invalid number of masters");
+ ok (mongo_sync_pool_new ("example.com", 27017, 10, -1) == NULL,
+ "mongo_sync_pool_new() should fail with an invalid number of slaves");
+}
+
+RUN_TEST (5, mongo_sync_pool_new);