summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_build.c
blob: 29693db7cb67fd3e736a79daa88e94395004f98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include "bson.h"
#include "tap.h"
#include "test.h"

#include <string.h>
#include <glib.h>

void
test_bson_build (void)
{
  bson *b, *o, *d, *a, *scope;
  guint8 oid[] = "1234567890ab";

  a = bson_build (BSON_TYPE_INT32, "0", 32,
                  BSON_TYPE_INT64, "1", (gint64)-42,
                  BSON_TYPE_NONE);
  bson_finish (a);
  d = bson_build (BSON_TYPE_STRING, "name", "sub-document", -1,
                  BSON_TYPE_INT32, "answer", 42,
                  BSON_TYPE_NONE);
  bson_finish (d);

  scope = bson_build (BSON_TYPE_STRING, "v", "hello world", -1,
                      BSON_TYPE_NONE);
  bson_finish (scope);

  b = bson_build (BSON_TYPE_DOUBLE, "double", 3.14,
                  BSON_TYPE_STRING, "str", "hello world", -1,
                  BSON_TYPE_DOCUMENT, "doc", d,
                  BSON_TYPE_ARRAY, "array", a,
                  BSON_TYPE_BINARY, "binary0", BSON_BINARY_SUBTYPE_GENERIC,
                  (guint8 *)"foo\0bar", 7,
                  BSON_TYPE_OID, "_id", oid,
                  BSON_TYPE_BOOLEAN, "TRUE", FALSE,
                  BSON_TYPE_UTC_DATETIME, "date", 1294860709000,
                  BSON_TYPE_TIMESTAMP, "ts", 1294860709000,
                  BSON_TYPE_NULL, "null",
                  BSON_TYPE_REGEXP, "foobar", "s/foo.*bar/", "i",
                  BSON_TYPE_JS_CODE, "alert", "alert (\"hello world!\");", -1,
                  BSON_TYPE_SYMBOL, "sex", "Marilyn Monroe", -1,
                  BSON_TYPE_JS_CODE_W_SCOPE, "print", "alert (v);", -1, scope,
                  BSON_TYPE_INT32, "int32", 32,
                  BSON_TYPE_INT64, "int64", (gint64)-42,
                  BSON_TYPE_NONE);
  bson_finish (b);
  bson_free (d);
  bson_free (a);
  bson_free (scope);

  o = test_bson_generate_full ();

  cmp_ok (bson_size (b), "==", bson_size (o),
          "bson_build() and hand crafted BSON object sizes match");
  ok (memcmp (bson_data (b), bson_data (o), bson_size (b)) == 0,
      "bson_build() and hand crafted BSON objects match");

  bson_free (b);
  bson_free (o);

  b = bson_build (BSON_TYPE_UNDEFINED, BSON_TYPE_NONE);
  ok (b == NULL,
      "bson_build() should fail with an unsupported element type");
  b = bson_build (BSON_TYPE_STRING, "str", "hello", -1,
                  BSON_TYPE_UNDEFINED,
                  BSON_TYPE_NONE);
  ok (b == NULL,
      "bson_build() should fail with an unsupported element type");
}

RUN_TEST (4, bson_build);