summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_cursor_find_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/bson/bson_cursor_find_next.c
Initial import of libmongo-client version 0.1.8-2
Diffstat (limited to 'tests/unit/bson/bson_cursor_find_next.c')
-rw-r--r--tests/unit/bson/bson_cursor_find_next.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/unit/bson/bson_cursor_find_next.c b/tests/unit/bson/bson_cursor_find_next.c
new file mode 100644
index 0000000..96d7f0e
--- /dev/null
+++ b/tests/unit/bson/bson_cursor_find_next.c
@@ -0,0 +1,33 @@
+#include "test.h"
+#include "mongo.h"
+
+#include <string.h>
+
+void
+test_bson_cursor_find_next (void)
+{
+ bson *b;
+ bson_cursor *c;
+
+ b = test_bson_generate_full ();
+ c = bson_find (b, "TRUE");
+
+ ok (bson_cursor_find_next (c, NULL) == FALSE,
+ "bson_cursor_find_next() should fail with a NULL key");
+ ok (bson_cursor_find_next (NULL, "int32") == FALSE,
+ "bson_cursor_find_next() should fail with a NULL cursor");
+
+ ok (bson_cursor_find_next (c, "sex") == TRUE,
+ "bson_cursor_find_next() works");
+
+ ok (bson_cursor_find_next (c, "str") == FALSE,
+ "bson_cursor_find_next() should fail when the key is not found");
+
+ ok (bson_cursor_find_next (c, "int64") == TRUE,
+ "bson_cursor_find_next() works, even after a previous failure");
+
+ bson_cursor_free (c);
+ bson_free (b);
+}
+
+RUN_TEST (5, bson_cursor_find_next);