summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync-cursor/sync_cursor_next.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-cursor/sync_cursor_next.c
Initial import of libmongo-client version 0.1.8-2
Diffstat (limited to 'tests/unit/mongo/sync-cursor/sync_cursor_next.c')
-rw-r--r--tests/unit/mongo/sync-cursor/sync_cursor_next.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/unit/mongo/sync-cursor/sync_cursor_next.c b/tests/unit/mongo/sync-cursor/sync_cursor_next.c
new file mode 100644
index 0000000..442df96
--- /dev/null
+++ b/tests/unit/mongo/sync-cursor/sync_cursor_next.c
@@ -0,0 +1,40 @@
+#include "test.h"
+#include "mongo.h"
+#include "config.h"
+
+#include "libmongo-private.h"
+
+#include <errno.h>
+
+void
+test_mongo_sync_cursor_next (void)
+{
+ mongo_sync_connection *conn;
+ mongo_packet *p;
+ mongo_sync_cursor *c;
+ gboolean r = TRUE;
+ gint i;
+
+ test_env_setup ();
+
+ p = test_mongo_wire_generate_reply (TRUE, 2, TRUE);
+ conn = test_make_fake_sync_conn (-1, FALSE);
+
+ c = mongo_sync_cursor_new (conn, config.ns, p);
+
+ ok (mongo_sync_cursor_next (NULL) == FALSE,
+ "mongo_sync_cursor_next() should fail with a NULL cursor");
+ for (i = 0; i < 2; i++)
+ r &= mongo_sync_cursor_next (c);
+
+ ok (r == TRUE,
+ "mongo_sync_cursor_next() works");
+ ok (mongo_sync_cursor_next (c) == FALSE,
+ "mongo_sync_cursor_next() should fail past the end of the resultset");
+
+ mongo_sync_cursor_free (c);
+ mongo_sync_disconnect (conn);
+ test_env_free ();
+}
+
+RUN_TEST (3, mongo_sync_cursor_next);