summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_append_utc_datetime.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bson/bson_append_utc_datetime.c')
-rw-r--r--tests/unit/bson/bson_append_utc_datetime.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/unit/bson/bson_append_utc_datetime.c b/tests/unit/bson/bson_append_utc_datetime.c
new file mode 100644
index 0000000..b2e38fb
--- /dev/null
+++ b/tests/unit/bson/bson_append_utc_datetime.c
@@ -0,0 +1,41 @@
+#include "tap.h"
+#include "test.h"
+#include "bson.h"
+
+#include <string.h>
+
+void
+test_bson_utc_datetime (void)
+{
+ bson *b;
+
+ b = bson_new ();
+ ok (bson_append_utc_datetime (b, "date", 1294860709000),
+ "bson_append_utc_datetime() works");
+ bson_finish (b);
+
+ cmp_ok (bson_size (b), "==", 19, "BSON UTC datetime element size check");
+ ok (memcmp (bson_data (b),
+ "\023\000\000\000\011\144\141\164\145\000\210\154\266\173\055"
+ "\001\000\000\000",
+ bson_size (b)) == 0,
+ "BSON UTC datetime element contents check");
+
+ bson_free (b);
+
+ b = bson_new ();
+ ok (bson_append_utc_datetime (b, NULL, 1294860709000) == FALSE,
+ "bson_append_utc_datetime() with a NULL key should fail");
+ ok (bson_append_utc_datetime (NULL, "date", 1294860709000) == FALSE,
+ "bson_append_utc_datetime() without a BSON object should fail");
+ bson_finish (b);
+ cmp_ok (bson_size (b), "==", 5,
+ "BSON object should be empty");
+
+ ok (bson_append_utc_datetime (b, "date", 1294860709000) == FALSE,
+ "Appending to a finished element should fail");
+
+ bson_free (b);
+}
+
+RUN_TEST (7, bson_utc_datetime);