summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_cursor_get_utc_datetime.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bson/bson_cursor_get_utc_datetime.c')
-rw-r--r--tests/unit/bson/bson_cursor_get_utc_datetime.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/unit/bson/bson_cursor_get_utc_datetime.c b/tests/unit/bson/bson_cursor_get_utc_datetime.c
new file mode 100644
index 0000000..70e1332
--- /dev/null
+++ b/tests/unit/bson/bson_cursor_get_utc_datetime.c
@@ -0,0 +1,43 @@
+#include "tap.h"
+#include "test.h"
+#include "bson.h"
+
+#include <string.h>
+
+void
+test_bson_cursor_get_utc_datetime (void)
+{
+ bson *b;
+ bson_cursor *c;
+ gint64 d = (gint64)987654;
+
+ ok (bson_cursor_get_utc_datetime (NULL, &d) == FALSE,
+ "bson_cursor_get_utc_datetime() with a NULL cursor fails");
+
+ b = test_bson_generate_full ();
+ c = bson_cursor_new (b);
+
+ ok (bson_cursor_get_utc_datetime (c, NULL) == FALSE,
+ "bson_cursor_get_utc_datetime() with a NULL destination fails");
+ ok (bson_cursor_get_utc_datetime (c, &d) == FALSE,
+ "bson_cursor_get_utc_datetime() at the initial position fails");
+ cmp_ok (d, "==", 987654,
+ "destination remains unchanged after failed cursor operations");
+ bson_cursor_free (c);
+
+ c = bson_find (b, "date");
+ ok (bson_cursor_get_utc_datetime (c, &d),
+ "bson_cursor_get_utc_datetime() works");
+ ok (d == 1294860709000,
+ "bson_cursor_get_utc_datetime() returns the correct result");
+
+ bson_cursor_next (c);
+ ok (bson_cursor_get_utc_datetime (c, &d) == FALSE,
+ "bson_cursor_get_utc_datetime() should fail when the cursor points to "
+ "non-datetime data");
+
+ bson_cursor_free (c);
+ bson_free (b);
+}
+
+RUN_TEST (7, bson_cursor_get_utc_datetime);