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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
#include <mongoc.h>
#include "mongoc-client-pool-private.h"
#include "mongoc-array-private.h"
#include "TestSuite.h"
static void
test_mongoc_client_pool_basic (void)
{
mongoc_client_pool_t *pool;
mongoc_client_t *client;
mongoc_uri_t *uri;
uri = mongoc_uri_new("mongodb://127.0.0.1?maxpoolsize=1&minpoolsize=1");
pool = mongoc_client_pool_new(uri);
client = mongoc_client_pool_pop(pool);
assert(client);
mongoc_client_pool_push(pool, client);
mongoc_uri_destroy(uri);
mongoc_client_pool_destroy(pool);
}
static void
test_mongoc_client_pool_try_pop (void)
{
mongoc_client_pool_t *pool;
mongoc_client_t *client;
mongoc_uri_t *uri;
uri = mongoc_uri_new("mongodb://127.0.0.1?maxpoolsize=1&minpoolsize=1");
pool = mongoc_client_pool_new(uri);
client = mongoc_client_pool_pop(pool);
assert(client);
assert(!mongoc_client_pool_try_pop(pool));
mongoc_client_pool_push(pool, client);
mongoc_uri_destroy(uri);
mongoc_client_pool_destroy(pool);
}
static void
test_mongoc_client_pool_min_size_dispose (void)
{
mongoc_client_pool_t *pool;
mongoc_client_t *client;
mongoc_uri_t *uri;
mongoc_array_t conns;
int i;
_mongoc_array_init (&conns, sizeof client);
uri = mongoc_uri_new ("mongodb://127.0.0.1?maxpoolsize=10&minpoolsize=3");
pool = mongoc_client_pool_new (uri);
for (i = 0; i < 10; i++) {
client = mongoc_client_pool_pop (pool);
assert (client);
_mongoc_array_append_val (&conns, client);
assert (mongoc_client_pool_get_size (pool) == i + 1);
}
for (i = 0; i < 10; i++) {
client = _mongoc_array_index (&conns, mongoc_client_t *, i);
assert (client);
mongoc_client_pool_push (pool, client);
}
assert (mongoc_client_pool_get_size (pool) == 3);
_mongoc_array_clear (&conns);
_mongoc_array_destroy (&conns);
mongoc_uri_destroy (uri);
mongoc_client_pool_destroy (pool);
}
static void
test_mongoc_client_pool_set_max_size (void)
{
mongoc_client_pool_t *pool;
mongoc_client_t *client;
mongoc_uri_t *uri;
mongoc_array_t conns;
int i;
_mongoc_array_init (&conns, sizeof client);
uri = mongoc_uri_new ("mongodb://127.0.0.1?maxpoolsize=10&minpoolsize=3");
pool = mongoc_client_pool_new (uri);
for (i = 0; i < 5; i++) {
client = mongoc_client_pool_pop (pool);
assert (client);
_mongoc_array_append_val (&conns, client);
assert (mongoc_client_pool_get_size (pool) == i + 1);
}
mongoc_client_pool_max_size(pool,3);
assert(mongoc_client_pool_try_pop(pool) == NULL);
for (i = 0; i < 5; i++) {
client = _mongoc_array_index (&conns, mongoc_client_t *, i);
assert (client);
mongoc_client_pool_push (pool, client);
}
_mongoc_array_clear (&conns);
_mongoc_array_destroy (&conns);
mongoc_uri_destroy (uri);
mongoc_client_pool_destroy (pool);
}
static void
test_mongoc_client_pool_set_min_size (void)
{
mongoc_client_pool_t *pool;
mongoc_client_t *client;
mongoc_uri_t *uri;
mongoc_array_t conns;
int i;
_mongoc_array_init (&conns, sizeof client);
uri = mongoc_uri_new ("mongodb://127.0.0.1?maxpoolsize=10&minpoolsize=3");
pool = mongoc_client_pool_new (uri);
for (i = 0; i < 10; i++) {
client = mongoc_client_pool_pop (pool);
assert (client);
_mongoc_array_append_val (&conns, client);
assert (mongoc_client_pool_get_size (pool) == i + 1);
}
mongoc_client_pool_min_size(pool,7);
for (i = 0; i < 10; i++) {
client = _mongoc_array_index (&conns, mongoc_client_t *, i);
assert (client);
mongoc_client_pool_push (pool, client);
}
assert (mongoc_client_pool_get_size (pool) == 7);
_mongoc_array_clear (&conns);
_mongoc_array_destroy (&conns);
mongoc_uri_destroy (uri);
mongoc_client_pool_destroy (pool);
}
void
test_client_pool_install (TestSuite *suite)
{
TestSuite_Add (suite, "/ClientPool/basic", test_mongoc_client_pool_basic);
TestSuite_Add (suite, "/ClientPool/try_pop", test_mongoc_client_pool_try_pop);
TestSuite_Add (suite, "/ClientPool/min_size_dispose", test_mongoc_client_pool_min_size_dispose);
TestSuite_Add (suite, "/ClientPool/set_max_size", test_mongoc_client_pool_set_max_size);
TestSuite_Add (suite, "/ClientPool/set_min_size", test_mongoc_client_pool_set_min_size);
}
|