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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
/* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Libmemcached client and server library.
*
* Copyright (C) 2011 Data Differential, http://datadifferential.com/
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
*
* * The names of its contributors may not be used to endorse or
* promote products derived from this software without specific prior
* written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <config.h>
#include <libtest/test.hpp>
using namespace libtest;
#include <libmemcached/memcached.h>
#include <libmemcached/server_instance.h>
#include <tests/replication.h>
#include <tests/debug.h>
#include "tests/libmemcached-1.0/setup_and_teardowns.h"
test_return_t check_replication_sanity_TEST(memcached_st *memc)
{
test_true(memc);
test_compare(uint64_t(1),
memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
/*
* Make sure that we store the item on all servers
* (master + replicas == number of servers)
*/
test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS), uint64_t(memcached_server_count(memc) - 1));
return TEST_SUCCESS;
}
test_return_t replication_set_test(memcached_st *memc)
{
memcached_st *memc_clone= memcached_clone(NULL, memc);
test_true(memc_clone);
test_compare(MEMCACHED_SUCCESS,
memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 0));
test_compare(MEMCACHED_SUCCESS,
memcached_set(memc, "bubba", 5, "0", 1, 0, 0));
/*
** We are using the quiet commands to store the replicas, so we need
** to ensure that all of them are processed before we can continue.
** In the test we go directly from storing the object to trying to
** receive the object from all of the different servers, so we
** could end up in a race condition (the memcached server hasn't yet
** processed the quiet command from the replication set when it process
** the request from the other client (created by the clone)). As a
** workaround for that we call memcached_quit to send the quit command
** to the server and wait for the response ;-) If you use the test code
** as an example for your own code, please note that you shouldn't need
** to do this ;-)
*/
memcached_quit(memc);
/*
** "bubba" should now be stored on all of our servers. We don't have an
** easy to use API to address each individual server, so I'll just iterate
** through a bunch of "master keys" and I should most likely hit all of the
** servers...
*/
for (int x= 'a'; x <= 'z'; ++x)
{
const char key[2]= { (char)x, 0 };
size_t len;
uint32_t flags;
memcached_return_t rc;
char *val= memcached_get_by_key(memc_clone, key, 1, "bubba", 5,
&len, &flags, &rc);
test_compare(MEMCACHED_SUCCESS, rc);
test_true(val);
free(val);
}
memcached_free(memc_clone);
return TEST_SUCCESS;
}
test_return_t replication_get_test(memcached_st *memc)
{
/*
* Don't do the following in your code. I am abusing the internal details
* within the library, and this is not a supported interface.
* This is to verify correct behavior in the library
*/
for (uint32_t host= 0; host < memcached_server_count(memc); ++host)
{
memcached_st *memc_clone= memcached_clone(NULL, memc);
memcached_server_instance_st instance=
memcached_server_instance_by_position(memc_clone, host);
((memcached_server_write_instance_st)instance)->port= 0;
for (int x= 'a'; x <= 'z'; ++x)
{
const char key[2]= { (char)x, 0 };
size_t len;
uint32_t flags;
memcached_return_t rc;
char *val= memcached_get_by_key(memc_clone, key, 1, "bubba", 5,
&len, &flags, &rc);
test_compare(MEMCACHED_SUCCESS, rc);
test_true(val);
free(val);
}
memcached_free(memc_clone);
}
return TEST_SUCCESS;
}
test_return_t replication_mget_test(memcached_st *memc)
{
memcached_st *memc_clone= memcached_clone(NULL, memc);
test_true(memc_clone);
test_compare(MEMCACHED_SUCCESS,
memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 0));
const char *keys[]= { "bubba", "key1", "key2", "key3" };
size_t len[]= { 5, 4, 4, 4 };
for (size_t x= 0; x< 4; ++x)
{
test_compare(MEMCACHED_SUCCESS, memcached_set(memc, keys[x], len[x], "0", 1, 0, 0));
}
/*
** We are using the quiet commands to store the replicas, so we need
** to ensure that all of them are processed before we can continue.
** In the test we go directly from storing the object to trying to
** receive the object from all of the different servers, so we
** could end up in a race condition (the memcached server hasn't yet
** processed the quiet command from the replication set when it process
** the request from the other client (created by the clone)). As a
** workaround for that we call memcached_quit to send the quit command
** to the server and wait for the response ;-) If you use the test code
** as an example for your own code, please note that you shouldn't need
** to do this ;-)
*/
memcached_quit(memc);
/*
* Don't do the following in your code. I am abusing the internal details
* within the library, and this is not a supported interface.
* This is to verify correct behavior in the library
*/
memcached_result_st result_obj;
for (uint32_t host= 0; host < memcached_server_count(memc_clone); host++)
{
memcached_st *new_clone= memcached_clone(NULL, memc);
memcached_server_instance_st instance=
memcached_server_instance_by_position(new_clone, host);
((memcached_server_write_instance_st)instance)->port= 0;
for (int x= 'a'; x <= 'z'; ++x)
{
char key[2]= { (char)x, 0 };
test_compare(MEMCACHED_SUCCESS,
memcached_mget_by_key(new_clone, key, 1, keys, len, 4));
memcached_result_st *results= memcached_result_create(new_clone, &result_obj);
test_true(results);
int hits= 0;
memcached_return_t rc;
while ((results= memcached_fetch_result(new_clone, &result_obj, &rc)) != NULL)
{
hits++;
}
test_compare(4, hits);
memcached_result_free(&result_obj);
}
memcached_free(new_clone);
}
memcached_free(memc_clone);
return TEST_SUCCESS;
}
test_return_t replication_randomize_mget_test(memcached_st *memc)
{
memcached_result_st result_obj;
memcached_st *memc_clone= memcached_clone(NULL, memc);
memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 3);
memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ, 1);
const char *keys[]= { "key1", "key2", "key3", "key4", "key5", "key6", "key7" };
size_t len[]= { 4, 4, 4, 4, 4, 4, 4 };
for (size_t x= 0; x< 7; ++x)
{
test_compare(MEMCACHED_SUCCESS,
memcached_set(memc, keys[x], len[x], "1", 1, 0, 0));
}
memcached_quit(memc);
for (size_t x= 0; x< 7; ++x)
{
const char key[2]= { (char)x, 0 };
test_compare(MEMCACHED_SUCCESS,
memcached_mget_by_key(memc_clone, key, 1, keys, len, 7));
memcached_result_st *results= memcached_result_create(memc_clone, &result_obj);
test_true(results);
int hits= 0;
memcached_return_t rc;
while ((results= memcached_fetch_result(memc_clone, &result_obj, &rc)) != NULL)
{
++hits;
}
test_compare(hits, 7);
memcached_result_free(&result_obj);
}
memcached_free(memc_clone);
return TEST_SUCCESS;
}
test_return_t replication_delete_test(memcached_st *memc_just_cloned)
{
memcached_flush(memc_just_cloned, 0);
memcached_st *memc_not_replicate= memcached_clone(NULL, memc_just_cloned);
memcached_st *memc_replicated= memcached_clone(NULL, memc_just_cloned);
const char *keys[]= { "bubba", "key1", "key2", "key3", "key4" };
test_compare(uint64_t(1), memcached_behavior_get(memc_replicated, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc_replicated, MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ, false));
// Make one copy
test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc_replicated, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 1UL));
test_compare(uint64_t(1), memcached_behavior_get(memc_replicated, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS));
test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc_not_replicate, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 0UL));
test_compare(uint64_t(0), memcached_behavior_get(memc_not_replicate, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS));
for (size_t x= 0; x < test_array_length(keys); ++x)
{
memcached_set(memc_replicated,
test_string_make_from_cstr(keys[x]), // Keys
test_string_make_from_cstr(keys[x]), // We use the keys as values
0, 0);
}
memcached_flush_buffers(memc_replicated);
// Confirm keys with replication read
test_compare(TEST_SUCCESS, confirm_keys_exist(memc_replicated, keys, test_array_length(keys), true, true));
test_compare(TEST_SUCCESS, confirm_keys_exist(memc_not_replicate, keys, test_array_length(keys), true, true));
/* Delete the items from all of the servers except 1, we use the non replicated memc so that we know we deleted the keys */
for (size_t x= 0; x < test_array_length(keys); ++x)
{
test_compare(MEMCACHED_SUCCESS,
memcached_delete(memc_replicated,
test_string_make_from_cstr(keys[x]), // Keys
0));
}
test_compare(TEST_SUCCESS, confirm_keys_dont_exist(memc_replicated, keys, test_array_length(keys)));
test_compare(TEST_SUCCESS, confirm_keys_dont_exist(memc_not_replicate, keys, test_array_length(keys)));
#if 0
test_zero(confirm_key_count(memc_not_replicate));
#endif
memcached_free(memc_not_replicate);
memcached_free(memc_replicated);
return TEST_SUCCESS;
}
test_return_t replication_randomize_mget_fail_test(memcached_st *memc)
{
memcached_st *memc_clone= memcached_clone(NULL, memc);
memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 3);
for (int x= int(MEMCACHED_SUCCESS); x < int(MEMCACHED_MAXIMUM_RETURN); ++x)
{
const char *key= memcached_strerror(NULL, memcached_return_t(x));
test_compare(MEMCACHED_SUCCESS,
memcached_set(memc,
key, strlen(key),
key, strlen(key), 0, 0));
}
memcached_flush_buffers(memc);
// We need to now cause a failure in one server, never do this in your own
// code.
close(memc_clone->servers[1].fd);
memc_clone->servers[1].port= 1;
memc_clone->servers[1].address_info_next= NULL;
for (int x= int(MEMCACHED_SUCCESS); x < int(MEMCACHED_MAXIMUM_RETURN); ++x)
{
const char *key= memcached_strerror(NULL, memcached_return_t(x));
uint32_t flags;
size_t value_length;
memcached_return_t rc;
char *value= memcached_get(memc_clone, key, strlen(key), &value_length, &flags, &rc);
test_compare(MEMCACHED_SUCCESS, rc);
test_compare(strlen(key), value_length);
test_strcmp(key, value);
free(value);
}
memcached_free(memc_clone);
return TEST_SUCCESS;
}
/* Test that single miss does not cause replica reads to fail */
test_return_t replication_miss_test(memcached_st *memc)
{
test_skip(true, false);
memcached_st *memc_repl= memcached_clone(NULL, memc);
test_true(memc_repl);
memcached_st *memc_single= memcached_clone(NULL, memc);
test_true(memc_single);
const char *value = "my_value";
size_t vlen;
uint32_t flags;
/* this test makes sense only with 2 or more servers */
test_true(memcached_server_count(memc_repl) > 1);
/* Consistent hash */
test_compare(MEMCACHED_SUCCESS,
memcached_behavior_set_distribution(memc_repl, MEMCACHED_DISTRIBUTION_CONSISTENT));
test_compare(MEMCACHED_SUCCESS,
memcached_behavior_set_distribution(memc_single, MEMCACHED_DISTRIBUTION_CONSISTENT));
/* The first clone writes to all servers */
test_compare(MEMCACHED_SUCCESS,
memcached_behavior_set(memc_repl, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, true));
test_compare(MEMCACHED_SUCCESS,
memcached_behavior_set(memc_repl, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS,
memcached_server_count(memc_repl)));
/* Write to servers */
{
memcached_return_t rc= memcached_set(memc_repl,
test_literal_param(__func__),
value, strlen(value),
time_t(1200), uint32_t(0));
test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
}
/* Use the second clone to remove the key from primary server.
This should remove the key from only one server */
{
memcached_return_t rc= memcached_delete(memc_single,
test_literal_param(__func__),
0);
test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
}
/* Remove the server where the key was deleted */
{
#if 0
memcached_return_t rc;
const memcached_server_st *instance= memcached_server_by_key(memc_single,
test_literal_param(__func__),
&rc);
test_compare(MEMCACHED_SUCCESS, rc);
test_compare(MEMCACHED_SUCCESS,
memcached_server_remove(instance));
#endif
}
/* Test that others still have it */
{
memcached_return_t rc;
char *get_value= memcached_get(memc_single,
test_literal_param(__func__),
&vlen, &flags, &rc);
test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
test_true(get_value and strcmp(get_value, value) == 0);
free(get_value);
}
/* This read should still return the value as we have it on other servers */
{
memcached_return_t rc;
char *get_value= memcached_get(memc_repl,
test_literal_param(__func__),
&vlen, &flags, &rc);
test_true(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_BUFFERED);
test_true(get_value and strcmp(get_value, value) == 0);
free(get_value);
}
memcached_free(memc_repl);
memcached_free(memc_single);
return TEST_SUCCESS;
}
|