summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_new.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/bson/bson_new.c')
-rw-r--r--tests/unit/bson/bson_new.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/unit/bson/bson_new.c b/tests/unit/bson/bson_new.c
new file mode 100644
index 0000000..3149027
--- /dev/null
+++ b/tests/unit/bson/bson_new.c
@@ -0,0 +1,28 @@
+#include "bson.h"
+#include "test.h"
+#include "tap.h"
+
+#include <string.h>
+
+void
+test_bson_new (void)
+{
+ bson *b;
+
+ ok ((b = bson_new ()) != NULL, "bson_new() works");
+ ok (bson_data (b) == NULL,
+ "bson_data() with an unfished object should fail");
+ ok (bson_size (b) == -1,
+ "bson_size() with an unfinished object should fail");
+ ok (bson_finish (b), "bson_finish() works");
+ ok (bson_finish (b),
+ "bson_finish() works on an already finished object too");
+ bson_free (b);
+
+ ok (bson_size (NULL) == -1, "bson_size(NULL) works correctly");
+ ok (bson_data (NULL) == NULL, "bson_data(NULL) works correctly");
+ ok (bson_finish (NULL) == FALSE, "bson_finish(NULL) works correctly");
+ bson_free (NULL);
+}
+
+RUN_TEST (8, bson_new);