summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_append_timestamp.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bson/bson_append_timestamp.c')
-rw-r--r--tests/unit/bson/bson_append_timestamp.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/unit/bson/bson_append_timestamp.c b/tests/unit/bson/bson_append_timestamp.c
new file mode 100644
index 0000000..4864ef4
--- /dev/null
+++ b/tests/unit/bson/bson_append_timestamp.c
@@ -0,0 +1,41 @@
+#include "tap.h"
+#include "test.h"
+#include "bson.h"
+
+#include <string.h>
+
+void
+test_bson_timestamp (void)
+{
+ bson *b;
+ gint64 l = 9876543210;
+
+ b = bson_new ();
+ ok (bson_append_timestamp (b, "ts", l), "bson_append_timestamp() works");
+ bson_finish (b);
+
+ cmp_ok (bson_size (b), "==", 17, "BSON timestamp element size check");
+ ok (memcmp (bson_data (b),
+ "\021\000\000\000\021\164\163\000\352\026\260\114\002\000\000"
+ "\000\000",
+ bson_size (b)) == 0,
+ "BSON timestamp element contents check");
+
+ bson_free (b);
+
+ b = bson_new ();
+ ok (bson_append_timestamp (b, NULL, l) == FALSE,
+ "bson_append_timestamp() with a NULL key should fail");
+ ok (bson_append_timestamp (NULL, "ts", l) == FALSE,
+ "bson_append_timestamp() without a BSON object should fail");
+ bson_finish (b);
+ cmp_ok (bson_size (b), "==", 5,
+ "BSON object should be empty");
+
+ ok (bson_append_timestamp (b, "ts", l) == FALSE,
+ "Appending to a finished element should fail");
+
+ bson_free (b);
+}
+
+RUN_TEST (7, bson_timestamp);