blob: 54e8767cd54c245500c56fb6795cb833bb084a9f (
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
|
#include "tap.h"
#include "test.h"
#include "bson.h"
#include <string.h>
void
test_bson_find (void)
{
bson *b;
bson_cursor *c;
ok (bson_find (NULL, NULL) == NULL,
"bson_find() with NULL parameters should fail");
ok (bson_find (NULL, "key") == NULL,
"bson_find() with a NULL BSON object should fail");
b = bson_new ();
ok (bson_find (b, "key") == NULL,
"bson_find() with an unfinished BSON object should fail");
bson_free (b);
b = test_bson_generate_full ();
ok (bson_find (b, NULL) == FALSE,
"bson_find() with a NULL key should fail");
ok (bson_find (b, "__invalid__") == FALSE,
"bson_find() with a non-existent key should fail");
ok ((c = bson_find (b, "alert")) != NULL,
"bson_find() works");
bson_cursor_free (c);
bson_free (b);
}
RUN_TEST (6, bson_find);
|