summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync/sync_cmd_count.c
blob: 2cb8645d072711b50a35a047a1947147923482a6 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include "test.h"
#include "mongo.h"

#include <sys/socket.h>
#include "libmongo-private.h"

void
test_mongo_sync_cmd_count_net_secondary (void)
{
  mongo_sync_connection *conn;
  bson *b;
  gdouble d;

  skip (!config.secondary_host, 2,
        "Secondary server not configured");

  conn = mongo_sync_connect (config.secondary_host, config.secondary_port,
                             TRUE);
  mongo_sync_cmd_is_master (conn);
  mongo_sync_conn_set_auto_reconnect (conn, TRUE);

  b = bson_new ();
  bson_append_string (b, "test-name", __FILE__, -1);
  bson_finish (b);

  d = mongo_sync_cmd_count (conn, config.db, config.coll, b);
  ok (d > 0,
      "mongo_sync_cmd_count() works on the secondary too");

  shutdown (conn->super.fd, SHUT_RDWR);
  sleep (3);

  d = mongo_sync_cmd_count (conn, config.db, config.coll, b);
  ok (d > 0,
      "mongo_sync_cmd_count() automatically reconnects");

  bson_free (b);
  mongo_sync_disconnect (conn);

  endskip;
}

void
test_mongo_sync_cmd_count_net (void)
{
  mongo_sync_connection *conn;
  bson *b;
  gdouble d;
  gint i;

  begin_network_tests (4);

  conn = mongo_sync_connect (config.primary_host, config.primary_port, TRUE);
  mongo_sync_conn_set_auto_reconnect (conn, TRUE);

  b = bson_new ();
  for (i = 0; i < 40; i++)
    {
      bson_reset (b);
      bson_append_string (b, "test-name", __FILE__, -1);
      bson_append_int32 (b, "seq", i);
      bson_finish (b);

      mongo_sync_cmd_insert (conn, config.ns, b, NULL);
    }
  bson_free (b);

  b = bson_new ();
  bson_append_string (b, "test-name", __FILE__, -1);
  bson_finish (b);

  d = mongo_sync_cmd_count (conn, config.db, config.coll, b);
  ok (d > 0,
      "mongo_sync_cmd_count() works");

  shutdown (conn->super.fd, SHUT_RDWR);
  sleep (3);

  d = mongo_sync_cmd_count (conn, config.db, config.coll, b);
  ok (d > 0,
      "mongo_sync_cmd_count() automatically reconnects");

  bson_free (b);
  mongo_sync_disconnect (conn);

  test_mongo_sync_cmd_count_net_secondary ();

  end_network_tests ();
}

void
test_mongo_sync_cmd_count (void)
{
  mongo_sync_connection *c;
  bson *b;

  c = test_make_fake_sync_conn (-1, FALSE);
  b = test_bson_generate_full ();

  ok (mongo_sync_cmd_count (NULL, "test", "db", b) == -1,
      "mongo_sync_cmd_count() fails with a NULL connection");
  ok (mongo_sync_cmd_count (c, NULL, "db", b) == -1,
      "mongo_sync_cmd_count() fails with a NULL db");
  ok (mongo_sync_cmd_count (c, "test", NULL, b) == -1,
      "mongo_sync_cmd_count() fails with a NULL collection");

  ok (mongo_sync_cmd_count (c, "test", "db", b) == -1,
      "mongo_sync_cmd_count() fails with a bogus FD");
  mongo_sync_conn_set_slaveok (c, TRUE);
  ok (mongo_sync_cmd_count (c, "test", "db", b) == -1,
      "mongo_sync_cmd_count() fails with a bogus FD");

  bson_free (b);
  mongo_sync_disconnect (c);

  test_mongo_sync_cmd_count_net ();
}

RUN_TEST (9, mongo_sync_cmd_count);