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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
#include "test.h"
#include "mongo.h"
#include <errno.h>
#include <sys/socket.h>
#include "libmongo-private.h"
void
test_mongo_sync_cmd_get_more_net_secondary (void)
{
mongo_packet *p;
mongo_sync_connection *conn;
bson *b;
mongo_reply_packet_header rh;
gint64 cid;
skip (!config.secondary_host, 2,
"Secondary server not configured");
conn = mongo_sync_connect (config.secondary_host, config.secondary_port,
TRUE);
b = bson_new ();
bson_append_string (b, "test-name", __FILE__, -1);
bson_finish (b);
p = mongo_sync_cmd_query (conn, config.ns,
MONGO_WIRE_FLAG_QUERY_NO_CURSOR_TIMEOUT,
0, 2, b, NULL);
bson_free (b);
mongo_wire_reply_packet_get_header (p, &rh);
cid = rh.cursor_id;
mongo_wire_packet_free (p);
p = mongo_sync_cmd_get_more (conn, config.db, 3, cid);
ok (p != NULL,
"mongo_sync_cmd_get_more() works on secondary too");
mongo_wire_packet_free (p);
mongo_sync_reconnect (conn, TRUE);
p = mongo_sync_cmd_get_more (conn, config.db, 10, cid);
ok (p == NULL && errno == EPROTO,
"mongo_sync_cmd_get_more() can't jump servers");
mongo_wire_packet_free (p);
mongo_sync_disconnect (conn);
endskip;
}
void
test_mongo_sync_cmd_get_more_net (void)
{
mongo_packet *p;
mongo_sync_connection *conn;
bson *b;
gint i;
mongo_reply_packet_header rh;
gint64 cid;
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);
p = mongo_sync_cmd_query (conn, config.ns,
MONGO_WIRE_FLAG_QUERY_NO_CURSOR_TIMEOUT,
0, 2, b, NULL);
bson_free (b);
mongo_wire_reply_packet_get_header (p, &rh);
cid = rh.cursor_id;
mongo_wire_packet_free (p);
p = mongo_sync_cmd_get_more (conn, config.db, 3, cid);
ok (p != NULL,
"mongo_sync_cmd_get_more() works");
mongo_wire_packet_free (p);
errno = 0;
shutdown (conn->super.fd, SHUT_RDWR);
sleep (3);
p = mongo_sync_cmd_get_more (conn, config.db, 10, cid);
ok (p != NULL,
"mongo_sync_cmd_get_more() automatically reconnects");
mongo_wire_packet_free (p);
mongo_sync_disconnect (conn);
test_mongo_sync_cmd_get_more_net_secondary ();
end_network_tests ();
}
void
test_mongo_sync_cmd_get_more (void)
{
mongo_sync_connection *c;
c = test_make_fake_sync_conn (-1, FALSE);
ok (mongo_sync_cmd_get_more (NULL, "test.ns", 1, 1234) == NULL,
"mongo_sync_cmd_get_more() fails with a NULL connection");
ok (mongo_sync_cmd_get_more (c, NULL, 1, 1234) == NULL,
"mongo_sync_cmd_get_more() fails with a NULL namespace");
ok (mongo_sync_cmd_get_more (c, "test.ns", 1, 1234) == NULL,
"mongo_sync_cmd_get_more() fails with a bogus FD");
mongo_sync_conn_set_slaveok (c, TRUE);
ok (mongo_sync_cmd_get_more (c, "test.ns", 1, 1234) == NULL,
"mongo_sync_cmd_get_more() fails with a bogus FD");
mongo_sync_disconnect (c);
test_mongo_sync_cmd_get_more_net ();
}
RUN_TEST (8, mongo_sync_cmd_get_more);
|