summaryrefslogtreecommitdiff
path: root/tests/unit/bson/bson_cursor_get_regex.c
blob: 59edefd2493211cc9f058ca6fa873350ed3ba158 (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
#include "tap.h"
#include "test.h"
#include "bson.h"

#include <string.h>

void
test_bson_cursor_get_regex (void)
{
  bson *b;
  bson_cursor *c;
  const gchar *r = "deadbeef";
  const gchar *o = "g";

  ok (bson_cursor_get_regex (NULL, &r, &o) == FALSE,
      "bson_cursor_get_regex() with a NULL cursor fails");

  b = test_bson_generate_full ();
  c = bson_cursor_new (b);

  ok (bson_cursor_get_regex (c, NULL, NULL) == FALSE,
      "bson_cursor_get_regex() with NULL destinations fails");
  ok (bson_cursor_get_regex (c, &r, NULL) == FALSE,
      "bson_cursor_get_regex() with a NULL option destination fails");
  ok (bson_cursor_get_regex (c, NULL, &o) == FALSE,
      "bson_cursor_get_regex() with a NULL regex destination fails");
  ok (bson_cursor_get_regex (c, &r, &o) == FALSE,
      "bson_cursor_get_regex() at the initial position fails");
  is (r, "deadbeef",
      "regex destination remains unchanged after failed cursor operations");
  is (o, "g",
      "options destination remains unchanged after failed cursor operations");
  bson_cursor_free (c);

  c = bson_find (b, "foobar");
  ok (bson_cursor_get_regex (c, &r, &o),
      "bson_cursor_get_regex() works");
  is (r, "s/foo.*bar/",
      "bson_cursor_get_regex() returns the correct result");
  is (o, "i",
      "bson_cursor_get_regex() returns the correct result");

  bson_cursor_next (c);
  ok (bson_cursor_get_regex (c, &r, &o) == FALSE,
      "bson_cursor_get_regex() should fail when the cursor points to "
      "non-regex data");

  bson_cursor_free (c);
  bson_free (b);
}

RUN_TEST (11, bson_cursor_get_regex);