1 /* libMemcached Functions Test
2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
10 Sample test application.
13 #include "libmemcached/common.h"
20 #include <sys/types.h>
26 #include "clients/generator.h"
27 #include "clients/execute.h"
30 #define INT64_MAX LONG_MAX
33 #define INT32_MAX INT_MAX
39 #ifdef HAVE_LIBMEMCACHEDUTIL
41 #include "libmemcached/memcached_util.h"
44 #include "hash_results.h"
46 #define GLOBAL_COUNT 10000
47 #define GLOBAL2_COUNT 100
48 #define SERVERS_TO_CREATE 5
49 static uint32_t global_count
;
51 static pairs_st
*global_pairs
;
52 static const char *global_keys
[GLOBAL_COUNT
];
53 static size_t global_keys_length
[GLOBAL_COUNT
];
55 static test_return_t
init_test(memcached_st
*not_used
__attribute__((unused
)))
59 (void)memcached_create(&memc
);
60 memcached_free(&memc
);
65 static test_return_t
server_list_null_test(memcached_st
*ptr
__attribute__((unused
)))
67 memcached_server_st
*server_list
;
68 memcached_return_t rc
;
70 server_list
= memcached_server_list_append_with_weight(NULL
, NULL
, 0, 0, NULL
);
71 test_truth(server_list
== NULL
);
73 server_list
= memcached_server_list_append_with_weight(NULL
, "localhost", 0, 0, NULL
);
74 test_truth(server_list
== NULL
);
76 server_list
= memcached_server_list_append_with_weight(NULL
, NULL
, 0, 0, &rc
);
77 test_truth(server_list
== NULL
);
82 #define TEST_PORT_COUNT 7
83 in_port_t test_ports
[TEST_PORT_COUNT
];
85 static memcached_return_t
server_display_function(memcached_st
*ptr
__attribute__((unused
)), memcached_server_st
*server
, void *context
)
88 size_t bigger
= *((size_t *)(context
));
89 assert(bigger
<= server
->port
);
90 *((size_t *)(context
))= server
->port
;
92 return MEMCACHED_SUCCESS
;
95 static test_return_t
server_sort_test(memcached_st
*ptr
__attribute__((unused
)))
97 size_t bigger
= 0; /* Prime the value for the test_truth in server_display_function */
99 memcached_return_t rc
;
100 memcached_server_fn callbacks
[1];
101 memcached_st
*local_memc
;
103 local_memc
= memcached_create(NULL
);
104 test_truth(local_memc
);
105 memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SORT_HOSTS
, 1);
107 for (size_t x
= 0; x
< TEST_PORT_COUNT
; x
++)
109 test_ports
[x
]= (in_port_t
)random() % 64000;
110 rc
= memcached_server_add_with_weight(local_memc
, "localhost", test_ports
[x
], 0);
111 test_truth(memcached_server_count(local_memc
) == x
+ 1);
112 test_truth(memcached_servers_count(memcached_server_list(local_memc
)) == x
+1);
113 test_truth(rc
== MEMCACHED_SUCCESS
);
116 callbacks
[0]= server_display_function
;
117 memcached_server_cursor(local_memc
, callbacks
, (void *)&bigger
, 1);
120 memcached_free(local_memc
);
125 static test_return_t
server_sort2_test(memcached_st
*ptr
__attribute__((unused
)))
127 size_t bigger
= 0; /* Prime the value for the test_truth in server_display_function */
128 memcached_return_t rc
;
129 memcached_server_fn callbacks
[1];
130 memcached_st
*local_memc
;
131 memcached_server_instance_st
*instance
;
133 local_memc
= memcached_create(NULL
);
134 test_truth(local_memc
);
135 rc
= memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SORT_HOSTS
, 1);
136 test_truth(rc
== MEMCACHED_SUCCESS
);
138 rc
= memcached_server_add_with_weight(local_memc
, "MEMCACHED_BEHAVIOR_SORT_HOSTS", 43043, 0);
139 test_truth(rc
== MEMCACHED_SUCCESS
);
140 instance
= memcached_server_instance_fetch(local_memc
, 0);
141 test_truth(instance
->port
== 43043);
143 rc
= memcached_server_add_with_weight(local_memc
, "MEMCACHED_BEHAVIOR_SORT_HOSTS", 43042, 0);
144 test_truth(rc
== MEMCACHED_SUCCESS
);
146 instance
= memcached_server_instance_fetch(local_memc
, 0);
147 test_truth(instance
->port
== 43042);
149 instance
= memcached_server_instance_fetch(local_memc
, 1);
150 test_truth(instance
->port
== 43043);
152 callbacks
[0]= server_display_function
;
153 memcached_server_cursor(local_memc
, callbacks
, (void *)&bigger
, 1);
156 memcached_free(local_memc
);
161 static memcached_return_t
server_display_unsort_function(memcached_st
*ptr
__attribute__((unused
)), memcached_server_st
*server
, void *context
)
164 uint32_t x
= *((uint32_t *)(context
));
166 assert(test_ports
[x
] == server
->port
);
167 *((uint32_t *)(context
))= ++x
;
169 return MEMCACHED_SUCCESS
;
172 static test_return_t
server_unsort_test(memcached_st
*ptr
__attribute__((unused
)))
174 size_t counter
= 0; /* Prime the value for the test_truth in server_display_function */
175 size_t bigger
= 0; /* Prime the value for the test_truth in server_display_function */
176 memcached_return_t rc
;
177 memcached_server_fn callbacks
[1];
178 memcached_st
*local_memc
;
180 local_memc
= memcached_create(NULL
);
181 test_truth(local_memc
);
183 for (size_t x
= 0; x
< TEST_PORT_COUNT
; x
++)
185 test_ports
[x
]= (in_port_t
)(random() % 64000);
186 rc
= memcached_server_add_with_weight(local_memc
, "localhost", test_ports
[x
], 0);
187 test_truth(memcached_server_count(local_memc
) == x
+1);
188 test_truth(memcached_servers_count(memcached_server_list(local_memc
)) == x
+1);
189 test_truth(rc
== MEMCACHED_SUCCESS
);
192 callbacks
[0]= server_display_unsort_function
;
193 memcached_server_cursor(local_memc
, callbacks
, (void *)&counter
, 1);
195 /* Now we sort old data! */
196 memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SORT_HOSTS
, 1);
197 callbacks
[0]= server_display_function
;
198 memcached_server_cursor(local_memc
, callbacks
, (void *)&bigger
, 1);
201 memcached_free(local_memc
);
206 static test_return_t
allocation_test(memcached_st
*not_used
__attribute__((unused
)))
209 memc
= memcached_create(NULL
);
211 memcached_free(memc
);
216 static test_return_t
clone_test(memcached_st
*memc
)
220 memcached_st
*memc_clone
;
221 memc_clone
= memcached_clone(NULL
, NULL
);
222 test_truth(memc_clone
);
223 memcached_free(memc_clone
);
226 /* Can we init from null? */
228 memcached_st
*memc_clone
;
229 memc_clone
= memcached_clone(NULL
, memc
);
230 test_truth(memc_clone
);
232 test_truth(memc_clone
->call_free
== memc
->call_free
);
233 test_truth(memc_clone
->call_malloc
== memc
->call_malloc
);
234 test_truth(memc_clone
->call_realloc
== memc
->call_realloc
);
235 test_truth(memc_clone
->call_calloc
== memc
->call_calloc
);
236 test_truth(memc_clone
->connect_timeout
== memc
->connect_timeout
);
237 test_truth(memc_clone
->delete_trigger
== memc
->delete_trigger
);
238 test_truth(memc_clone
->distribution
== memc
->distribution
);
239 { // Test all of the flags
240 test_truth(memc_clone
->flags
.no_block
== memc
->flags
.no_block
);
241 test_truth(memc_clone
->flags
.tcp_nodelay
== memc
->flags
.tcp_nodelay
);
242 test_truth(memc_clone
->flags
.reuse_memory
== memc
->flags
.reuse_memory
);
243 test_truth(memc_clone
->flags
.use_cache_lookups
== memc
->flags
.use_cache_lookups
);
244 test_truth(memc_clone
->flags
.support_cas
== memc
->flags
.support_cas
);
245 test_truth(memc_clone
->flags
.buffer_requests
== memc
->flags
.buffer_requests
);
246 test_truth(memc_clone
->flags
.use_sort_hosts
== memc
->flags
.use_sort_hosts
);
247 test_truth(memc_clone
->flags
.verify_key
== memc
->flags
.verify_key
);
248 test_truth(memc_clone
->flags
.ketama_weighted
== memc
->flags
.ketama_weighted
);
249 test_truth(memc_clone
->flags
.binary_protocol
== memc
->flags
.binary_protocol
);
250 test_truth(memc_clone
->flags
.hash_with_prefix_key
== memc
->flags
.hash_with_prefix_key
);
251 test_truth(memc_clone
->flags
.no_reply
== memc
->flags
.no_reply
);
252 test_truth(memc_clone
->flags
.use_udp
== memc
->flags
.use_udp
);
253 test_truth(memc_clone
->flags
.auto_eject_hosts
== memc
->flags
.auto_eject_hosts
);
254 test_truth(memc_clone
->flags
.randomize_replica_read
== memc
->flags
.randomize_replica_read
);
256 test_truth(memc_clone
->get_key_failure
== memc
->get_key_failure
);
257 test_truth(memc_clone
->hash
== memc
->hash
);
258 test_truth(memc_clone
->distribution_hash
== memc
->distribution_hash
);
259 test_truth(memc_clone
->io_bytes_watermark
== memc
->io_bytes_watermark
);
260 test_truth(memc_clone
->io_msg_watermark
== memc
->io_msg_watermark
);
261 test_truth(memc_clone
->io_key_prefetch
== memc
->io_key_prefetch
);
262 test_truth(memc_clone
->on_cleanup
== memc
->on_cleanup
);
263 test_truth(memc_clone
->on_clone
== memc
->on_clone
);
264 test_truth(memc_clone
->poll_timeout
== memc
->poll_timeout
);
265 test_truth(memc_clone
->rcv_timeout
== memc
->rcv_timeout
);
266 test_truth(memc_clone
->recv_size
== memc
->recv_size
);
267 test_truth(memc_clone
->retry_timeout
== memc
->retry_timeout
);
268 test_truth(memc_clone
->send_size
== memc
->send_size
);
269 test_truth(memc_clone
->server_failure_limit
== memc
->server_failure_limit
);
270 test_truth(memc_clone
->snd_timeout
== memc
->snd_timeout
);
271 test_truth(memc_clone
->user_data
== memc
->user_data
);
273 memcached_free(memc_clone
);
276 /* Can we init from struct? */
278 memcached_st declared_clone
;
279 memcached_st
*memc_clone
;
280 memset(&declared_clone
, 0 , sizeof(memcached_st
));
281 memc_clone
= memcached_clone(&declared_clone
, NULL
);
282 test_truth(memc_clone
);
283 memcached_free(memc_clone
);
286 /* Can we init from struct? */
288 memcached_st declared_clone
;
289 memcached_st
*memc_clone
;
290 memset(&declared_clone
, 0 , sizeof(memcached_st
));
291 memc_clone
= memcached_clone(&declared_clone
, memc
);
292 test_truth(memc_clone
);
293 memcached_free(memc_clone
);
299 static test_return_t
userdata_test(memcached_st
*memc
)
302 test_truth(memcached_set_user_data(memc
, foo
) == NULL
);
303 test_truth(memcached_get_user_data(memc
) == foo
);
304 test_truth(memcached_set_user_data(memc
, NULL
) == foo
);
309 static test_return_t
connection_test(memcached_st
*memc
)
311 memcached_return_t rc
;
313 rc
= memcached_server_add_with_weight(memc
, "localhost", 0, 0);
314 test_truth(rc
== MEMCACHED_SUCCESS
);
319 static test_return_t
error_test(memcached_st
*memc
)
321 memcached_return_t rc
;
322 uint32_t values
[] = { 851992627U, 2337886783U, 3196981036U, 4001849190U,
323 982370485U, 1263635348U, 4242906218U, 3829656100U,
324 1891735253U, 334139633U, 2257084983U, 3088286104U,
325 13199785U, 2542027183U, 1097051614U, 199566778U,
326 2748246961U, 2465192557U, 1664094137U, 2405439045U,
327 1842224848U, 692413798U, 3479807801U, 919913813U,
328 4269430871U, 610793021U, 527273862U, 1437122909U,
329 2300930706U, 2943759320U, 674306647U, 2400528935U,
330 54481931U, 4186304426U, 1741088401U, 2979625118U,
331 4159057246U, 3425930182U, 2593724503U};
333 // You have updated the memcache_error messages but not updated docs/tests.
334 test_truth(MEMCACHED_MAXIMUM_RETURN
== 39);
335 for (rc
= MEMCACHED_SUCCESS
; rc
< MEMCACHED_MAXIMUM_RETURN
; rc
++)
338 const char *msg
= memcached_strerror(memc
, rc
);
339 hash_val
= memcached_generate_hash_value(msg
, strlen(msg
),
340 MEMCACHED_HASH_JENKINS
);
341 test_truth(values
[rc
] == hash_val
);
347 static test_return_t
set_test(memcached_st
*memc
)
349 memcached_return_t rc
;
350 const char *key
= "foo";
351 const char *value
= "when we sanitize";
353 rc
= memcached_set(memc
, key
, strlen(key
),
354 value
, strlen(value
),
355 (time_t)0, (uint32_t)0);
356 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
361 static test_return_t
append_test(memcached_st
*memc
)
363 memcached_return_t rc
;
364 const char *key
= "fig";
365 const char *in_value
= "we";
366 char *out_value
= NULL
;
370 rc
= memcached_flush(memc
, 0);
371 test_truth(rc
== MEMCACHED_SUCCESS
);
373 rc
= memcached_set(memc
, key
, strlen(key
),
374 in_value
, strlen(in_value
),
375 (time_t)0, (uint32_t)0);
376 test_truth(rc
== MEMCACHED_SUCCESS
);
378 rc
= memcached_append(memc
, key
, strlen(key
),
379 " the", strlen(" the"),
380 (time_t)0, (uint32_t)0);
381 test_truth(rc
== MEMCACHED_SUCCESS
);
383 rc
= memcached_append(memc
, key
, strlen(key
),
384 " people", strlen(" people"),
385 (time_t)0, (uint32_t)0);
386 test_truth(rc
== MEMCACHED_SUCCESS
);
388 out_value
= memcached_get(memc
, key
, strlen(key
),
389 &value_length
, &flags
, &rc
);
390 test_truth(!memcmp(out_value
, "we the people", strlen("we the people")));
391 test_truth(strlen("we the people") == value_length
);
392 test_truth(rc
== MEMCACHED_SUCCESS
);
398 static test_return_t
append_binary_test(memcached_st
*memc
)
400 memcached_return_t rc
;
401 const char *key
= "numbers";
402 unsigned int *store_ptr
;
403 unsigned int store_list
[] = { 23, 56, 499, 98, 32847, 0 };
409 rc
= memcached_flush(memc
, 0);
410 test_truth(rc
== MEMCACHED_SUCCESS
);
412 rc
= memcached_set(memc
,
415 (time_t)0, (uint32_t)0);
416 test_truth(rc
== MEMCACHED_SUCCESS
);
418 for (x
= 0; store_list
[x
] ; x
++)
420 rc
= memcached_append(memc
,
422 (char *)&store_list
[x
], sizeof(unsigned int),
423 (time_t)0, (uint32_t)0);
424 test_truth(rc
== MEMCACHED_SUCCESS
);
427 value
= memcached_get(memc
, key
, strlen(key
),
428 &value_length
, &flags
, &rc
);
429 test_truth((value_length
== (sizeof(unsigned int) * x
)));
430 test_truth(rc
== MEMCACHED_SUCCESS
);
432 store_ptr
= (unsigned int *)value
;
434 while ((size_t)store_ptr
< (size_t)(value
+ value_length
))
436 test_truth(*store_ptr
== store_list
[x
++]);
444 static test_return_t
cas2_test(memcached_st
*memc
)
446 memcached_return_t rc
;
447 const char *keys
[]= {"fudge", "son", "food"};
448 size_t key_length
[]= {5, 3, 4};
449 const char *value
= "we the people";
450 size_t value_length
= strlen("we the people");
452 memcached_result_st results_obj
;
453 memcached_result_st
*results
;
456 rc
= memcached_flush(memc
, 0);
457 test_truth(rc
== MEMCACHED_SUCCESS
);
459 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, set
);
461 for (x
= 0; x
< 3; x
++)
463 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
464 keys
[x
], key_length
[x
],
465 (time_t)50, (uint32_t)9);
466 test_truth(rc
== MEMCACHED_SUCCESS
);
469 rc
= memcached_mget(memc
, keys
, key_length
, 3);
471 results
= memcached_result_create(memc
, &results_obj
);
473 results
= memcached_fetch_result(memc
, &results_obj
, &rc
);
475 test_truth(results
->cas
);
476 test_truth(rc
== MEMCACHED_SUCCESS
);
477 test_truth(memcached_result_cas(results
));
479 test_truth(!memcmp(value
, "we the people", strlen("we the people")));
480 test_truth(strlen("we the people") == value_length
);
481 test_truth(rc
== MEMCACHED_SUCCESS
);
483 memcached_result_free(&results_obj
);
488 static test_return_t
cas_test(memcached_st
*memc
)
490 memcached_return_t rc
;
491 const char *key
= "fun";
492 size_t key_length
= strlen(key
);
493 const char *value
= "we the people";
494 const char* keys
[2] = { key
, NULL
};
495 size_t keylengths
[2] = { strlen(key
), 0 };
496 size_t value_length
= strlen(value
);
497 const char *value2
= "change the value";
498 size_t value2_length
= strlen(value2
);
500 memcached_result_st results_obj
;
501 memcached_result_st
*results
;
504 rc
= memcached_flush(memc
, 0);
505 test_truth(rc
== MEMCACHED_SUCCESS
);
507 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, set
);
509 rc
= memcached_set(memc
, key
, strlen(key
),
510 value
, strlen(value
),
511 (time_t)0, (uint32_t)0);
512 test_truth(rc
== MEMCACHED_SUCCESS
);
514 rc
= memcached_mget(memc
, keys
, keylengths
, 1);
516 results
= memcached_result_create(memc
, &results_obj
);
518 results
= memcached_fetch_result(memc
, &results_obj
, &rc
);
520 test_truth(rc
== MEMCACHED_SUCCESS
);
521 test_truth(memcached_result_cas(results
));
522 test_truth(!memcmp(value
, memcached_result_value(results
), value_length
));
523 test_truth(strlen(memcached_result_value(results
)) == value_length
);
524 test_truth(rc
== MEMCACHED_SUCCESS
);
525 uint64_t cas
= memcached_result_cas(results
);
528 results
= memcached_fetch_result(memc
, &results_obj
, &rc
);
529 test_truth(rc
== MEMCACHED_END
);
530 test_truth(results
== NULL
);
533 rc
= memcached_cas(memc
, key
, key_length
, value2
, value2_length
, 0, 0, cas
);
534 test_truth(rc
== MEMCACHED_SUCCESS
);
537 * The item will have a new cas value, so try to set it again with the old
538 * value. This should fail!
540 rc
= memcached_cas(memc
, key
, key_length
, value2
, value2_length
, 0, 0, cas
);
541 test_truth(rc
== MEMCACHED_DATA_EXISTS
);
543 memcached_result_free(&results_obj
);
548 static test_return_t
prepend_test(memcached_st
*memc
)
550 memcached_return_t rc
;
551 const char *key
= "fig";
552 const char *value
= "people";
553 char *out_value
= NULL
;
557 rc
= memcached_flush(memc
, 0);
558 test_truth(rc
== MEMCACHED_SUCCESS
);
560 rc
= memcached_set(memc
, key
, strlen(key
),
561 value
, strlen(value
),
562 (time_t)0, (uint32_t)0);
563 test_truth(rc
== MEMCACHED_SUCCESS
);
565 rc
= memcached_prepend(memc
, key
, strlen(key
),
566 "the ", strlen("the "),
567 (time_t)0, (uint32_t)0);
568 test_truth(rc
== MEMCACHED_SUCCESS
);
570 rc
= memcached_prepend(memc
, key
, strlen(key
),
571 "we ", strlen("we "),
572 (time_t)0, (uint32_t)0);
573 test_truth(rc
== MEMCACHED_SUCCESS
);
575 out_value
= memcached_get(memc
, key
, strlen(key
),
576 &value_length
, &flags
, &rc
);
577 test_truth(!memcmp(out_value
, "we the people", strlen("we the people")));
578 test_truth(strlen("we the people") == value_length
);
579 test_truth(rc
== MEMCACHED_SUCCESS
);
586 Set the value, then quit to make sure it is flushed.
587 Come back in and test that add fails.
589 static test_return_t
add_test(memcached_st
*memc
)
591 memcached_return_t rc
;
592 const char *key
= "foo";
593 const char *value
= "when we sanitize";
594 unsigned long long setting_value
;
596 setting_value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
);
598 rc
= memcached_set(memc
, key
, strlen(key
),
599 value
, strlen(value
),
600 (time_t)0, (uint32_t)0);
601 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
602 memcached_quit(memc
);
603 rc
= memcached_add(memc
, key
, strlen(key
),
604 value
, strlen(value
),
605 (time_t)0, (uint32_t)0);
607 /* Too many broken OS'es have broken loopback in async, so we can't be sure of the result */
610 test_truth(rc
== MEMCACHED_NOTSTORED
|| rc
== MEMCACHED_STORED
);
614 test_truth(rc
== MEMCACHED_NOTSTORED
|| rc
== MEMCACHED_DATA_EXISTS
);
621 ** There was a problem of leaking filedescriptors in the initial release
622 ** of MacOSX 10.5. This test case triggers the problem. On some Solaris
623 ** systems it seems that the kernel is slow on reclaiming the resources
624 ** because the connects starts to time out (the test doesn't do much
625 ** anyway, so just loop 10 iterations)
627 static test_return_t
add_wrapper(memcached_st
*memc
)
630 unsigned int max
= 10000;
638 for (x
= 0; x
< max
; x
++)
644 static test_return_t
replace_test(memcached_st
*memc
)
646 memcached_return_t rc
;
647 const char *key
= "foo";
648 const char *value
= "when we sanitize";
649 const char *original
= "first we insert some data";
651 rc
= memcached_set(memc
, key
, strlen(key
),
652 original
, strlen(original
),
653 (time_t)0, (uint32_t)0);
654 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
656 rc
= memcached_replace(memc
, key
, strlen(key
),
657 value
, strlen(value
),
658 (time_t)0, (uint32_t)0);
659 test_truth(rc
== MEMCACHED_SUCCESS
);
664 static test_return_t
delete_test(memcached_st
*memc
)
666 memcached_return_t rc
;
667 const char *key
= "foo";
668 const char *value
= "when we sanitize";
670 rc
= memcached_set(memc
, key
, strlen(key
),
671 value
, strlen(value
),
672 (time_t)0, (uint32_t)0);
673 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
675 rc
= memcached_delete(memc
, key
, strlen(key
), (time_t)0);
676 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
681 static test_return_t
flush_test(memcached_st
*memc
)
683 memcached_return_t rc
;
685 rc
= memcached_flush(memc
, 0);
686 test_truth(rc
== MEMCACHED_SUCCESS
);
691 static memcached_return_t
server_function(memcached_st
*ptr
__attribute__((unused
)),
692 memcached_server_st
*server
__attribute__((unused
)),
693 void *context
__attribute__((unused
)))
697 return MEMCACHED_SUCCESS
;
700 static test_return_t
memcached_server_cursor_test(memcached_st
*memc
)
703 strcpy(context
, "foo bad");
704 memcached_server_fn callbacks
[1];
706 callbacks
[0]= server_function
;
707 memcached_server_cursor(memc
, callbacks
, context
, 1);
711 static test_return_t
bad_key_test(memcached_st
*memc
)
713 memcached_return_t rc
;
714 const char *key
= "foo bad";
716 size_t string_length
;
718 memcached_st
*memc_clone
;
720 size_t max_keylen
= 0xffff;
722 // Just skip if we are in binary mode.
723 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
))
726 memc_clone
= memcached_clone(NULL
, memc
);
727 test_truth(memc_clone
);
729 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
730 test_truth(rc
== MEMCACHED_SUCCESS
);
732 /* All keys are valid in the binary protocol (except for length) */
733 if (memcached_behavior_get(memc_clone
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 0)
735 string
= memcached_get(memc_clone
, key
, strlen(key
),
736 &string_length
, &flags
, &rc
);
737 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
738 test_truth(string_length
== 0);
742 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
743 test_truth(rc
== MEMCACHED_SUCCESS
);
744 string
= memcached_get(memc_clone
, key
, strlen(key
),
745 &string_length
, &flags
, &rc
);
746 test_truth(rc
== MEMCACHED_NOTFOUND
);
747 test_truth(string_length
== 0);
750 /* Test multi key for bad keys */
751 const char *keys
[] = { "GoodKey", "Bad Key", "NotMine" };
752 size_t key_lengths
[] = { 7, 7, 7 };
754 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
755 test_truth(rc
== MEMCACHED_SUCCESS
);
757 rc
= memcached_mget(memc_clone
, keys
, key_lengths
, 3);
758 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
760 rc
= memcached_mget_by_key(memc_clone
, "foo daddy", 9, keys
, key_lengths
, 1);
761 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
765 /* The following test should be moved to the end of this function when the
766 memcached server is updated to allow max size length of the keys in the
769 rc
= memcached_callback_set(memc_clone
, MEMCACHED_CALLBACK_PREFIX_KEY
, NULL
);
770 test_truth(rc
== MEMCACHED_SUCCESS
);
772 char *longkey
= malloc(max_keylen
+ 1);
775 memset(longkey
, 'a', max_keylen
+ 1);
776 string
= memcached_get(memc_clone
, longkey
, max_keylen
,
777 &string_length
, &flags
, &rc
);
778 test_truth(rc
== MEMCACHED_NOTFOUND
);
779 test_truth(string_length
== 0);
782 string
= memcached_get(memc_clone
, longkey
, max_keylen
+ 1,
783 &string_length
, &flags
, &rc
);
784 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
785 test_truth(string_length
== 0);
792 /* Make sure zero length keys are marked as bad */
794 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
795 test_truth(rc
== MEMCACHED_SUCCESS
);
796 string
= memcached_get(memc_clone
, key
, 0,
797 &string_length
, &flags
, &rc
);
798 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
799 test_truth(string_length
== 0);
802 memcached_free(memc_clone
);
807 #define READ_THROUGH_VALUE "set for me"
808 static memcached_return_t
read_through_trigger(memcached_st
*memc
__attribute__((unused
)),
809 char *key
__attribute__((unused
)),
810 size_t key_length
__attribute__((unused
)),
811 memcached_result_st
*result
)
814 return memcached_result_set_value(result
, READ_THROUGH_VALUE
, strlen(READ_THROUGH_VALUE
));
817 static test_return_t
read_through(memcached_st
*memc
)
819 memcached_return_t rc
;
820 const char *key
= "foo";
822 size_t string_length
;
824 memcached_trigger_key_fn cb
= (memcached_trigger_key_fn
)read_through_trigger
;
826 string
= memcached_get(memc
, key
, strlen(key
),
827 &string_length
, &flags
, &rc
);
829 test_truth(rc
== MEMCACHED_NOTFOUND
);
830 test_false(string_length
);
833 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_GET_FAILURE
,
835 test_truth(rc
== MEMCACHED_SUCCESS
);
837 string
= memcached_get(memc
, key
, strlen(key
),
838 &string_length
, &flags
, &rc
);
840 test_truth(rc
== MEMCACHED_SUCCESS
);
841 test_truth(string_length
== strlen(READ_THROUGH_VALUE
));
842 test_strcmp(READ_THROUGH_VALUE
, string
);
845 string
= memcached_get(memc
, key
, strlen(key
),
846 &string_length
, &flags
, &rc
);
848 test_truth(rc
== MEMCACHED_SUCCESS
);
849 test_truth(string_length
== strlen(READ_THROUGH_VALUE
));
850 test_truth(!strcmp(READ_THROUGH_VALUE
, string
));
856 static memcached_return_t
delete_trigger(memcached_st
*ptr
__attribute__((unused
)),
858 size_t key_length
__attribute__((unused
)))
862 return MEMCACHED_SUCCESS
;
865 static test_return_t
delete_through(memcached_st
*memc
)
867 memcached_trigger_delete_key_fn callback
;
868 memcached_return_t rc
;
870 callback
= (memcached_trigger_delete_key_fn
)delete_trigger
;
872 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_DELETE_TRIGGER
, *(void**)&callback
);
873 test_truth(rc
== MEMCACHED_SUCCESS
);
878 static test_return_t
get_test(memcached_st
*memc
)
880 memcached_return_t rc
;
881 const char *key
= "foo";
883 size_t string_length
;
886 rc
= memcached_delete(memc
, key
, strlen(key
), (time_t)0);
887 test_truth(rc
== MEMCACHED_BUFFERED
|| rc
== MEMCACHED_NOTFOUND
);
889 string
= memcached_get(memc
, key
, strlen(key
),
890 &string_length
, &flags
, &rc
);
892 test_truth(rc
== MEMCACHED_NOTFOUND
);
893 test_false(string_length
);
899 static test_return_t
get_test2(memcached_st
*memc
)
901 memcached_return_t rc
;
902 const char *key
= "foo";
903 const char *value
= "when we sanitize";
905 size_t string_length
;
908 rc
= memcached_set(memc
, key
, strlen(key
),
909 value
, strlen(value
),
910 (time_t)0, (uint32_t)0);
911 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
913 string
= memcached_get(memc
, key
, strlen(key
),
914 &string_length
, &flags
, &rc
);
917 test_truth(rc
== MEMCACHED_SUCCESS
);
918 test_truth(string_length
== strlen(value
));
919 test_truth(!memcmp(string
, value
, string_length
));
926 static test_return_t
set_test2(memcached_st
*memc
)
928 memcached_return_t rc
;
929 const char *key
= "foo";
930 const char *value
= "train in the brain";
931 size_t value_length
= strlen(value
);
934 for (x
= 0; x
< 10; x
++)
936 rc
= memcached_set(memc
, key
, strlen(key
),
938 (time_t)0, (uint32_t)0);
939 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
945 static test_return_t
set_test3(memcached_st
*memc
)
947 memcached_return_t rc
;
949 size_t value_length
= 8191;
952 value
= (char*)malloc(value_length
);
955 for (x
= 0; x
< value_length
; x
++)
956 value
[x
] = (char) (x
% 127);
958 /* The dump test relies on there being at least 32 items in memcached */
959 for (x
= 0; x
< 32; x
++)
963 sprintf(key
, "foo%u", x
);
965 rc
= memcached_set(memc
, key
, strlen(key
),
967 (time_t)0, (uint32_t)0);
968 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
976 static test_return_t
get_test3(memcached_st
*memc
)
978 memcached_return_t rc
;
979 const char *key
= "foo";
981 size_t value_length
= 8191;
983 size_t string_length
;
987 value
= (char*)malloc(value_length
);
990 for (x
= 0; x
< value_length
; x
++)
991 value
[x
] = (char) (x
% 127);
993 rc
= memcached_set(memc
, key
, strlen(key
),
995 (time_t)0, (uint32_t)0);
996 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
998 string
= memcached_get(memc
, key
, strlen(key
),
999 &string_length
, &flags
, &rc
);
1001 test_truth(rc
== MEMCACHED_SUCCESS
);
1003 test_truth(string_length
== value_length
);
1004 test_truth(!memcmp(string
, value
, string_length
));
1009 return TEST_SUCCESS
;
1012 static test_return_t
get_test4(memcached_st
*memc
)
1014 memcached_return_t rc
;
1015 const char *key
= "foo";
1017 size_t value_length
= 8191;
1019 size_t string_length
;
1023 value
= (char*)malloc(value_length
);
1026 for (x
= 0; x
< value_length
; x
++)
1027 value
[x
] = (char) (x
% 127);
1029 rc
= memcached_set(memc
, key
, strlen(key
),
1030 value
, value_length
,
1031 (time_t)0, (uint32_t)0);
1032 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1034 for (x
= 0; x
< 10; x
++)
1036 string
= memcached_get(memc
, key
, strlen(key
),
1037 &string_length
, &flags
, &rc
);
1039 test_truth(rc
== MEMCACHED_SUCCESS
);
1041 test_truth(string_length
== value_length
);
1042 test_truth(!memcmp(string
, value
, string_length
));
1048 return TEST_SUCCESS
;
1052 * This test verifies that memcached_read_one_response doesn't try to
1053 * dereference a NIL-pointer if you issue a multi-get and don't read out all
1054 * responses before you execute a storage command.
1056 static test_return_t
get_test5(memcached_st
*memc
)
1059 ** Request the same key twice, to ensure that we hash to the same server
1060 ** (so that we have multiple response values queued up) ;-)
1062 const char *keys
[]= { "key", "key" };
1063 size_t lengths
[]= { 3, 3 };
1067 memcached_return_t rc
= memcached_set(memc
, keys
[0], lengths
[0],
1068 keys
[0], lengths
[0], 0, 0);
1069 test_truth(rc
== MEMCACHED_SUCCESS
);
1070 rc
= memcached_mget(memc
, keys
, lengths
, 2);
1072 memcached_result_st results_obj
;
1073 memcached_result_st
*results
;
1074 results
=memcached_result_create(memc
, &results_obj
);
1075 test_truth(results
);
1076 results
=memcached_fetch_result(memc
, &results_obj
, &rc
);
1077 test_truth(results
);
1078 memcached_result_free(&results_obj
);
1080 /* Don't read out the second result, but issue a set instead.. */
1081 rc
= memcached_set(memc
, keys
[0], lengths
[0], keys
[0], lengths
[0], 0, 0);
1082 test_truth(rc
== MEMCACHED_SUCCESS
);
1084 char *val
= memcached_get_by_key(memc
, keys
[0], lengths
[0], "yek", 3,
1085 &rlen
, &flags
, &rc
);
1086 test_truth(val
== NULL
);
1087 test_truth(rc
== MEMCACHED_NOTFOUND
);
1088 val
= memcached_get(memc
, keys
[0], lengths
[0], &rlen
, &flags
, &rc
);
1089 test_truth(val
!= NULL
);
1090 test_truth(rc
== MEMCACHED_SUCCESS
);
1093 return TEST_SUCCESS
;
1096 static test_return_t
mget_end(memcached_st
*memc
)
1098 const char *keys
[]= { "foo", "foo2" };
1099 size_t lengths
[]= { 3, 4 };
1100 const char *values
[]= { "fjord", "41" };
1102 memcached_return_t rc
;
1105 for (int i
= 0; i
< 2; i
++)
1107 rc
= memcached_set(memc
, keys
[i
], lengths
[i
], values
[i
], strlen(values
[i
]),
1108 (time_t)0, (uint32_t)0);
1109 test_truth(rc
== MEMCACHED_SUCCESS
);
1113 size_t string_length
;
1116 // retrieve both via mget
1117 rc
= memcached_mget(memc
, keys
, lengths
, 2);
1118 test_truth(rc
== MEMCACHED_SUCCESS
);
1120 char key
[MEMCACHED_MAX_KEY
];
1123 // this should get both
1124 for (int i
= 0; i
< 2; i
++)
1126 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
,
1128 test_truth(rc
== MEMCACHED_SUCCESS
);
1130 if (key_length
== 4)
1132 test_truth(string_length
== strlen(values
[val
]));
1133 test_truth(strncmp(values
[val
], string
, string_length
) == 0);
1137 // this should indicate end
1138 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
, &flags
, &rc
);
1139 test_truth(rc
== MEMCACHED_END
);
1142 rc
= memcached_mget(memc
, keys
, lengths
, 1);
1143 test_truth(rc
== MEMCACHED_SUCCESS
);
1145 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
, &flags
, &rc
);
1146 test_truth(key_length
== lengths
[0]);
1147 test_truth(strncmp(keys
[0], key
, key_length
) == 0);
1148 test_truth(string_length
== strlen(values
[0]));
1149 test_truth(strncmp(values
[0], string
, string_length
) == 0);
1150 test_truth(rc
== MEMCACHED_SUCCESS
);
1153 // this should indicate end
1154 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
, &flags
, &rc
);
1155 test_truth(rc
== MEMCACHED_END
);
1157 return TEST_SUCCESS
;
1160 /* Do not copy the style of this code, I just access hosts to testthis function */
1161 static test_return_t
stats_servername_test(memcached_st
*memc
)
1163 memcached_return_t rc
;
1164 memcached_stat_st memc_stat
;
1165 memcached_server_instance_st
*instance
=
1166 memcached_server_instance_fetch(memc
, 0);
1168 rc
= memcached_stat_servername(&memc_stat
, NULL
,
1172 return TEST_SUCCESS
;
1175 static test_return_t
increment_test(memcached_st
*memc
)
1177 uint64_t new_number
;
1178 memcached_return_t rc
;
1179 const char *key
= "number";
1180 const char *value
= "0";
1182 rc
= memcached_set(memc
, key
, strlen(key
),
1183 value
, strlen(value
),
1184 (time_t)0, (uint32_t)0);
1185 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1187 rc
= memcached_increment(memc
, key
, strlen(key
),
1189 test_truth(rc
== MEMCACHED_SUCCESS
);
1190 test_truth(new_number
== 1);
1192 rc
= memcached_increment(memc
, key
, strlen(key
),
1194 test_truth(rc
== MEMCACHED_SUCCESS
);
1195 test_truth(new_number
== 2);
1197 return TEST_SUCCESS
;
1200 static test_return_t
increment_with_initial_test(memcached_st
*memc
)
1202 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1204 uint64_t new_number
;
1205 memcached_return_t rc
;
1206 const char *key
= "number";
1207 uint64_t initial
= 0;
1209 rc
= memcached_increment_with_initial(memc
, key
, strlen(key
),
1210 1, initial
, 0, &new_number
);
1211 test_truth(rc
== MEMCACHED_SUCCESS
);
1212 test_truth(new_number
== initial
);
1214 rc
= memcached_increment_with_initial(memc
, key
, strlen(key
),
1215 1, initial
, 0, &new_number
);
1216 test_truth(rc
== MEMCACHED_SUCCESS
);
1217 test_truth(new_number
== (initial
+ 1));
1219 return TEST_SUCCESS
;
1222 static test_return_t
decrement_test(memcached_st
*memc
)
1224 uint64_t new_number
;
1225 memcached_return_t rc
;
1226 const char *key
= "number";
1227 const char *value
= "3";
1229 rc
= memcached_set(memc
, key
, strlen(key
),
1230 value
, strlen(value
),
1231 (time_t)0, (uint32_t)0);
1232 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1234 rc
= memcached_decrement(memc
, key
, strlen(key
),
1236 test_truth(rc
== MEMCACHED_SUCCESS
);
1237 test_truth(new_number
== 2);
1239 rc
= memcached_decrement(memc
, key
, strlen(key
),
1241 test_truth(rc
== MEMCACHED_SUCCESS
);
1242 test_truth(new_number
== 1);
1244 return TEST_SUCCESS
;
1247 static test_return_t
decrement_with_initial_test(memcached_st
*memc
)
1249 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1251 uint64_t new_number
;
1252 memcached_return_t rc
;
1253 const char *key
= "number";
1254 uint64_t initial
= 3;
1256 rc
= memcached_decrement_with_initial(memc
, key
, strlen(key
),
1257 1, initial
, 0, &new_number
);
1258 test_truth(rc
== MEMCACHED_SUCCESS
);
1259 test_truth(new_number
== initial
);
1261 rc
= memcached_decrement_with_initial(memc
, key
, strlen(key
),
1262 1, initial
, 0, &new_number
);
1263 test_truth(rc
== MEMCACHED_SUCCESS
);
1264 test_truth(new_number
== (initial
- 1));
1266 return TEST_SUCCESS
;
1269 static test_return_t
increment_by_key_test(memcached_st
*memc
)
1271 uint64_t new_number
;
1272 memcached_return_t rc
;
1273 const char *master_key
= "foo";
1274 const char *key
= "number";
1275 const char *value
= "0";
1277 rc
= memcached_set_by_key(memc
, master_key
, strlen(master_key
),
1279 value
, strlen(value
),
1280 (time_t)0, (uint32_t)0);
1281 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1283 rc
= memcached_increment_by_key(memc
, master_key
, strlen(master_key
), key
, strlen(key
),
1285 test_truth(rc
== MEMCACHED_SUCCESS
);
1286 test_truth(new_number
== 1);
1288 rc
= memcached_increment_by_key(memc
, master_key
, strlen(master_key
), key
, strlen(key
),
1290 test_truth(rc
== MEMCACHED_SUCCESS
);
1291 test_truth(new_number
== 2);
1293 return TEST_SUCCESS
;
1296 static test_return_t
increment_with_initial_by_key_test(memcached_st
*memc
)
1298 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1300 uint64_t new_number
;
1301 memcached_return_t rc
;
1302 const char *master_key
= "foo";
1303 const char *key
= "number";
1304 uint64_t initial
= 0;
1306 rc
= memcached_increment_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1308 1, initial
, 0, &new_number
);
1309 test_truth(rc
== MEMCACHED_SUCCESS
);
1310 test_truth(new_number
== initial
);
1312 rc
= memcached_increment_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1314 1, initial
, 0, &new_number
);
1315 test_truth(rc
== MEMCACHED_SUCCESS
);
1316 test_truth(new_number
== (initial
+ 1));
1318 return TEST_SUCCESS
;
1321 static test_return_t
decrement_by_key_test(memcached_st
*memc
)
1323 uint64_t new_number
;
1324 memcached_return_t rc
;
1325 const char *master_key
= "foo";
1326 const char *key
= "number";
1327 const char *value
= "3";
1329 rc
= memcached_set_by_key(memc
, master_key
, strlen(master_key
),
1331 value
, strlen(value
),
1332 (time_t)0, (uint32_t)0);
1333 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1335 rc
= memcached_decrement_by_key(memc
, master_key
, strlen(master_key
),
1338 test_truth(rc
== MEMCACHED_SUCCESS
);
1339 test_truth(new_number
== 2);
1341 rc
= memcached_decrement_by_key(memc
, master_key
, strlen(master_key
),
1344 test_truth(rc
== MEMCACHED_SUCCESS
);
1345 test_truth(new_number
== 1);
1347 return TEST_SUCCESS
;
1350 static test_return_t
decrement_with_initial_by_key_test(memcached_st
*memc
)
1352 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1354 uint64_t new_number
;
1355 memcached_return_t rc
;
1356 const char *master_key
= "foo";
1357 const char *key
= "number";
1358 uint64_t initial
= 3;
1360 rc
= memcached_decrement_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1362 1, initial
, 0, &new_number
);
1363 test_truth(rc
== MEMCACHED_SUCCESS
);
1364 test_truth(new_number
== initial
);
1366 rc
= memcached_decrement_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1368 1, initial
, 0, &new_number
);
1369 test_truth(rc
== MEMCACHED_SUCCESS
);
1370 test_truth(new_number
== (initial
- 1));
1372 return TEST_SUCCESS
;
1375 static test_return_t
quit_test(memcached_st
*memc
)
1377 memcached_return_t rc
;
1378 const char *key
= "fudge";
1379 const char *value
= "sanford and sun";
1381 rc
= memcached_set(memc
, key
, strlen(key
),
1382 value
, strlen(value
),
1383 (time_t)10, (uint32_t)3);
1384 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1385 memcached_quit(memc
);
1387 rc
= memcached_set(memc
, key
, strlen(key
),
1388 value
, strlen(value
),
1389 (time_t)50, (uint32_t)9);
1390 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1392 return TEST_SUCCESS
;
1395 static test_return_t
mget_result_test(memcached_st
*memc
)
1397 memcached_return_t rc
;
1398 const char *keys
[]= {"fudge", "son", "food"};
1399 size_t key_length
[]= {5, 3, 4};
1402 memcached_result_st results_obj
;
1403 memcached_result_st
*results
;
1405 results
= memcached_result_create(memc
, &results_obj
);
1406 test_truth(results
);
1407 test_truth(&results_obj
== results
);
1409 /* We need to empty the server before continueing test */
1410 rc
= memcached_flush(memc
, 0);
1411 test_truth(rc
== MEMCACHED_SUCCESS
);
1413 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1414 test_truth(rc
== MEMCACHED_SUCCESS
);
1416 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)) != NULL
)
1418 test_truth(results
);
1421 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)) != NULL
)
1422 test_truth(!results
);
1423 test_truth(rc
== MEMCACHED_END
);
1425 for (x
= 0; x
< 3; x
++)
1427 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1428 keys
[x
], key_length
[x
],
1429 (time_t)50, (uint32_t)9);
1430 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1433 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1434 test_truth(rc
== MEMCACHED_SUCCESS
);
1436 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)))
1438 test_truth(results
);
1439 test_truth(&results_obj
== results
);
1440 test_truth(rc
== MEMCACHED_SUCCESS
);
1441 test_truth(memcached_result_key_length(results
) == memcached_result_length(results
));
1442 test_truth(!memcmp(memcached_result_key_value(results
),
1443 memcached_result_value(results
),
1444 memcached_result_length(results
)));
1447 memcached_result_free(&results_obj
);
1449 return TEST_SUCCESS
;
1452 static test_return_t
mget_result_alloc_test(memcached_st
*memc
)
1454 memcached_return_t rc
;
1455 const char *keys
[]= {"fudge", "son", "food"};
1456 size_t key_length
[]= {5, 3, 4};
1459 memcached_result_st
*results
;
1461 /* We need to empty the server before continueing test */
1462 rc
= memcached_flush(memc
, 0);
1463 test_truth(rc
== MEMCACHED_SUCCESS
);
1465 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1466 test_truth(rc
== MEMCACHED_SUCCESS
);
1468 while ((results
= memcached_fetch_result(memc
, NULL
, &rc
)) != NULL
)
1470 test_truth(results
);
1472 test_truth(!results
);
1473 test_truth(rc
== MEMCACHED_END
);
1475 for (x
= 0; x
< 3; x
++)
1477 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1478 keys
[x
], key_length
[x
],
1479 (time_t)50, (uint32_t)9);
1480 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1483 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1484 test_truth(rc
== MEMCACHED_SUCCESS
);
1487 while ((results
= memcached_fetch_result(memc
, NULL
, &rc
)))
1489 test_truth(results
);
1490 test_truth(rc
== MEMCACHED_SUCCESS
);
1491 test_truth(memcached_result_key_length(results
) == memcached_result_length(results
));
1492 test_truth(!memcmp(memcached_result_key_value(results
),
1493 memcached_result_value(results
),
1494 memcached_result_length(results
)));
1495 memcached_result_free(results
);
1499 return TEST_SUCCESS
;
1502 /* Count the results */
1503 static memcached_return_t
callback_counter(memcached_st
*ptr
__attribute__((unused
)),
1504 memcached_result_st
*result
__attribute__((unused
)),
1507 size_t *counter
= (size_t *)context
;
1509 *counter
= *counter
+ 1;
1511 return MEMCACHED_SUCCESS
;
1514 static test_return_t
mget_result_function(memcached_st
*memc
)
1516 memcached_return_t rc
;
1517 const char *keys
[]= {"fudge", "son", "food"};
1518 size_t key_length
[]= {5, 3, 4};
1521 memcached_execute_fn callbacks
[1];
1523 /* We need to empty the server before continueing test */
1524 rc
= memcached_flush(memc
, 0);
1525 for (x
= 0; x
< 3; x
++)
1527 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1528 keys
[x
], key_length
[x
],
1529 (time_t)50, (uint32_t)9);
1530 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1533 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1534 test_truth(rc
== MEMCACHED_SUCCESS
);
1536 callbacks
[0]= &callback_counter
;
1538 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
1540 test_truth(counter
== 3);
1542 return TEST_SUCCESS
;
1545 static test_return_t
mget_test(memcached_st
*memc
)
1547 memcached_return_t rc
;
1548 const char *keys
[]= {"fudge", "son", "food"};
1549 size_t key_length
[]= {5, 3, 4};
1553 char return_key
[MEMCACHED_MAX_KEY
];
1554 size_t return_key_length
;
1556 size_t return_value_length
;
1558 /* We need to empty the server before continueing test */
1559 rc
= memcached_flush(memc
, 0);
1560 test_truth(rc
== MEMCACHED_SUCCESS
);
1562 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1563 test_truth(rc
== MEMCACHED_SUCCESS
);
1565 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
1566 &return_value_length
, &flags
, &rc
)) != NULL
)
1568 test_truth(return_value
);
1570 test_truth(!return_value
);
1571 test_truth(return_value_length
== 0);
1572 test_truth(rc
== MEMCACHED_END
);
1574 for (x
= 0; x
< 3; x
++)
1576 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1577 keys
[x
], key_length
[x
],
1578 (time_t)50, (uint32_t)9);
1579 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1582 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1583 test_truth(rc
== MEMCACHED_SUCCESS
);
1586 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
1587 &return_value_length
, &flags
, &rc
)))
1589 test_truth(return_value
);
1590 test_truth(rc
== MEMCACHED_SUCCESS
);
1591 test_truth(return_key_length
== return_value_length
);
1592 test_truth(!memcmp(return_value
, return_key
, return_value_length
));
1597 return TEST_SUCCESS
;
1600 static test_return_t
mget_execute(memcached_st
*memc
)
1604 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1608 * I only want to hit _one_ server so I know the number of requests I'm
1609 * sending in the pipeline.
1611 uint32_t number_of_hosts
= memc
->number_of_hosts
;
1612 memc
->number_of_hosts
= 1;
1614 size_t max_keys
= binary
? 20480 : 1;
1617 char **keys
= calloc(max_keys
, sizeof(char*));
1618 size_t *key_length
=calloc(max_keys
, sizeof(size_t));
1620 /* First add all of the items.. */
1621 char blob
[1024] = {0};
1622 memcached_return_t rc
;
1623 for (size_t x
= 0; x
< max_keys
; ++x
)
1627 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%zu", x
);
1629 test_truth(keys
[x
] != NULL
);
1630 rc
= memcached_add(memc
, keys
[x
], key_length
[x
], blob
, sizeof(blob
), 0, 0);
1631 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1634 /* Try to get all of them with a large multiget */
1636 memcached_execute_fn callbacks
[1]= { [0]= &callback_counter
};
1637 rc
= memcached_mget_execute(memc
, (const char**)keys
, key_length
,
1638 max_keys
, callbacks
, &counter
, 1);
1642 test_truth(rc
== MEMCACHED_SUCCESS
);
1644 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
1645 test_truth(rc
== MEMCACHED_END
);
1647 /* Verify that we got all of the items */
1648 test_truth(counter
== max_keys
);
1652 test_truth(rc
== MEMCACHED_NOT_SUPPORTED
);
1653 test_truth(counter
== 0);
1656 /* Release all allocated resources */
1657 for (size_t x
= 0; x
< max_keys
; ++x
)
1664 memc
->number_of_hosts
= number_of_hosts
;
1665 return TEST_SUCCESS
;
1668 static test_return_t
get_stats_keys(memcached_st
*memc
)
1672 memcached_stat_st memc_stat
;
1673 memcached_return_t rc
;
1675 stat_list
= memcached_stat_get_keys(memc
, &memc_stat
, &rc
);
1676 test_truth(rc
== MEMCACHED_SUCCESS
);
1677 for (ptr
= stat_list
; *ptr
; ptr
++)
1682 return TEST_SUCCESS
;
1685 static test_return_t
version_string_test(memcached_st
*memc
__attribute__((unused
)))
1687 const char *version_string
;
1689 version_string
= memcached_lib_version();
1691 test_truth(!strcmp(version_string
, LIBMEMCACHED_VERSION_STRING
));
1693 return TEST_SUCCESS
;
1696 static test_return_t
get_stats(memcached_st
*memc
)
1701 memcached_return_t rc
;
1702 memcached_stat_st
*memc_stat
;
1704 memc_stat
= memcached_stat(memc
, NULL
, &rc
);
1705 test_truth(rc
== MEMCACHED_SUCCESS
);
1707 test_truth(rc
== MEMCACHED_SUCCESS
);
1708 test_truth(memc_stat
);
1710 for (x
= 0; x
< memcached_server_count(memc
); x
++)
1712 stat_list
= memcached_stat_get_keys(memc
, memc_stat
+x
, &rc
);
1713 test_truth(rc
== MEMCACHED_SUCCESS
);
1714 for (ptr
= stat_list
; *ptr
; ptr
++);
1719 memcached_stat_free(NULL
, memc_stat
);
1721 return TEST_SUCCESS
;
1724 static test_return_t
add_host_test(memcached_st
*memc
)
1727 memcached_server_st
*servers
;
1728 memcached_return_t rc
;
1729 char servername
[]= "0.example.com";
1731 servers
= memcached_server_list_append_with_weight(NULL
, servername
, 400, 0, &rc
);
1732 test_truth(servers
);
1733 test_truth(1 == memcached_server_list_count(servers
));
1735 for (x
= 2; x
< 20; x
++)
1737 char buffer
[SMALL_STRING_LEN
];
1739 snprintf(buffer
, SMALL_STRING_LEN
, "%u.example.com", 400+x
);
1740 servers
= memcached_server_list_append_with_weight(servers
, buffer
, 401, 0,
1742 test_truth(rc
== MEMCACHED_SUCCESS
);
1743 test_truth(x
== memcached_server_list_count(servers
));
1746 rc
= memcached_server_push(memc
, servers
);
1747 test_truth(rc
== MEMCACHED_SUCCESS
);
1748 rc
= memcached_server_push(memc
, servers
);
1749 test_truth(rc
== MEMCACHED_SUCCESS
);
1751 memcached_server_list_free(servers
);
1753 return TEST_SUCCESS
;
1756 static memcached_return_t
clone_test_callback(memcached_st
*parent
__attribute__((unused
)), memcached_st
*memc_clone
__attribute__((unused
)))
1758 return MEMCACHED_SUCCESS
;
1761 static memcached_return_t
cleanup_test_callback(memcached_st
*ptr
__attribute__((unused
)))
1763 return MEMCACHED_SUCCESS
;
1766 static test_return_t
callback_test(memcached_st
*memc
)
1768 /* Test User Data */
1772 memcached_return_t rc
;
1774 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_USER_DATA
, &x
);
1775 test_truth(rc
== MEMCACHED_SUCCESS
);
1776 test_ptr
= (int *)memcached_callback_get(memc
, MEMCACHED_CALLBACK_USER_DATA
, &rc
);
1777 test_truth(*test_ptr
== x
);
1780 /* Test Clone Callback */
1782 memcached_clone_fn clone_cb
= (memcached_clone_fn
)clone_test_callback
;
1783 void *clone_cb_ptr
= *(void **)&clone_cb
;
1784 void *temp_function
= NULL
;
1785 memcached_return_t rc
;
1787 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
,
1789 test_truth(rc
== MEMCACHED_SUCCESS
);
1790 temp_function
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
, &rc
);
1791 test_truth(temp_function
== clone_cb_ptr
);
1794 /* Test Cleanup Callback */
1796 memcached_cleanup_fn cleanup_cb
=
1797 (memcached_cleanup_fn
)cleanup_test_callback
;
1798 void *cleanup_cb_ptr
= *(void **)&cleanup_cb
;
1799 void *temp_function
= NULL
;
1800 memcached_return_t rc
;
1802 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
,
1804 test_truth(rc
== MEMCACHED_SUCCESS
);
1805 temp_function
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
, &rc
);
1806 test_truth(temp_function
== cleanup_cb_ptr
);
1809 return TEST_SUCCESS
;
1812 /* We don't test the behavior itself, we test the switches */
1813 static test_return_t
behavior_test(memcached_st
*memc
)
1818 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
1819 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
);
1820 test_truth(value
== 1);
1822 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
1823 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
);
1824 test_truth(value
== 1);
1826 set
= MEMCACHED_HASH_MD5
;
1827 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, set
);
1828 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
1829 test_truth(value
== MEMCACHED_HASH_MD5
);
1833 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
1834 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
);
1835 test_truth(value
== 0);
1837 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
1838 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
);
1839 test_truth(value
== 0);
1841 set
= MEMCACHED_HASH_DEFAULT
;
1842 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, set
);
1843 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
1844 test_truth(value
== MEMCACHED_HASH_DEFAULT
);
1846 set
= MEMCACHED_HASH_CRC
;
1847 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, set
);
1848 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
1849 test_truth(value
== MEMCACHED_HASH_CRC
);
1851 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
);
1852 test_truth(value
> 0);
1854 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
);
1855 test_truth(value
> 0);
1857 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
);
1858 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, value
+ 1);
1859 test_truth((value
+ 1) == memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
));
1861 return TEST_SUCCESS
;
1864 static test_return_t
fetch_all_results(memcached_st
*memc
)
1866 memcached_return_t rc
= MEMCACHED_SUCCESS
;
1867 char return_key
[MEMCACHED_MAX_KEY
];
1868 size_t return_key_length
;
1870 size_t return_value_length
;
1873 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
1874 &return_value_length
, &flags
, &rc
)))
1876 test_truth(return_value
);
1877 test_truth(rc
== MEMCACHED_SUCCESS
);
1881 return ((rc
== MEMCACHED_END
) || (rc
== MEMCACHED_SUCCESS
)) ? TEST_SUCCESS
: TEST_FAILURE
;
1884 /* Test case provided by Cal Haldenbrand */
1885 static test_return_t
user_supplied_bug1(memcached_st
*memc
)
1887 unsigned int setter
= 1;
1890 unsigned long long total
= 0;
1893 char randomstuff
[6 * 1024];
1894 memcached_return_t rc
;
1896 memset(randomstuff
, 0, 6 * 1024);
1898 /* We just keep looking at the same values over and over */
1901 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, setter
);
1902 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
1906 for (x
= 0 ; total
< 20 * 1024576 ; x
++ )
1910 size
= (uint32_t)(rand() % ( 5 * 1024 ) ) + 400;
1911 memset(randomstuff
, 0, 6 * 1024);
1912 test_truth(size
< 6 * 1024); /* Being safe here */
1914 for (j
= 0 ; j
< size
;j
++)
1915 randomstuff
[j
] = (signed char) ((rand() % 26) + 97);
1918 sprintf(key
, "%d", x
);
1919 rc
= memcached_set(memc
, key
, strlen(key
),
1920 randomstuff
, strlen(randomstuff
), 10, 0);
1921 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1922 /* If we fail, lets try again */
1923 if (rc
!= MEMCACHED_SUCCESS
&& rc
!= MEMCACHED_BUFFERED
)
1924 rc
= memcached_set(memc
, key
, strlen(key
),
1925 randomstuff
, strlen(randomstuff
), 10, 0);
1926 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1929 return TEST_SUCCESS
;
1932 /* Test case provided by Cal Haldenbrand */
1933 static test_return_t
user_supplied_bug2(memcached_st
*memc
)
1936 unsigned int setter
;
1938 unsigned long long total
;
1941 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, setter
);
1942 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
1944 setter
= 20 * 1024576;
1945 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
, setter
);
1946 setter
= 20 * 1024576;
1947 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
, setter
);
1948 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
);
1949 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
);
1951 for (x
= 0, errors
= 0, total
= 0 ; total
< 20 * 1024576 ; x
++)
1954 for (x
= 0, errors
= 0, total
= 0 ; total
< 24576 ; x
++)
1956 memcached_return_t rc
= MEMCACHED_SUCCESS
;
1957 char buffer
[SMALL_STRING_LEN
];
1962 memset(buffer
, 0, SMALL_STRING_LEN
);
1964 snprintf(buffer
, SMALL_STRING_LEN
, "%u", x
);
1965 getval
= memcached_get(memc
, buffer
, strlen(buffer
),
1966 &val_len
, &flags
, &rc
);
1967 if (rc
!= MEMCACHED_SUCCESS
)
1969 if (rc
== MEMCACHED_NOTFOUND
)
1983 return TEST_SUCCESS
;
1986 /* Do a large mget() over all the keys we think exist */
1987 #define KEY_COUNT 3000 // * 1024576
1988 static test_return_t
user_supplied_bug3(memcached_st
*memc
)
1990 memcached_return_t rc
;
1991 unsigned int setter
;
1994 size_t key_lengths
[KEY_COUNT
];
1997 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, setter
);
1998 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
2000 setter
= 20 * 1024576;
2001 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
, setter
);
2002 setter
= 20 * 1024576;
2003 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
, setter
);
2004 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
);
2005 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
);
2008 keys
= calloc(KEY_COUNT
, sizeof(char *));
2010 for (x
= 0; x
< KEY_COUNT
; x
++)
2014 snprintf(buffer
, 30, "%u", x
);
2015 keys
[x
]= strdup(buffer
);
2016 key_lengths
[x
]= strlen(keys
[x
]);
2019 rc
= memcached_mget(memc
, (const char **)keys
, key_lengths
, KEY_COUNT
);
2020 test_truth(rc
== MEMCACHED_SUCCESS
);
2022 test_truth(fetch_all_results(memc
) == TEST_SUCCESS
);
2024 for (x
= 0; x
< KEY_COUNT
; x
++)
2028 return TEST_SUCCESS
;
2031 /* Make sure we behave properly if server list has no values */
2032 static test_return_t
user_supplied_bug4(memcached_st
*memc
)
2034 memcached_return_t rc
;
2035 const char *keys
[]= {"fudge", "son", "food"};
2036 size_t key_length
[]= {5, 3, 4};
2039 char return_key
[MEMCACHED_MAX_KEY
];
2040 size_t return_key_length
;
2042 size_t return_value_length
;
2044 /* Here we free everything before running a bunch of mget tests */
2045 memcached_servers_reset(memc
);
2048 /* We need to empty the server before continueing test */
2049 rc
= memcached_flush(memc
, 0);
2050 test_truth(rc
== MEMCACHED_NO_SERVERS
);
2052 rc
= memcached_mget(memc
, keys
, key_length
, 3);
2053 test_truth(rc
== MEMCACHED_NO_SERVERS
);
2055 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2056 &return_value_length
, &flags
, &rc
)) != NULL
)
2058 test_truth(return_value
);
2060 test_truth(!return_value
);
2061 test_truth(return_value_length
== 0);
2062 test_truth(rc
== MEMCACHED_NO_SERVERS
);
2064 for (x
= 0; x
< 3; x
++)
2066 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2067 keys
[x
], key_length
[x
],
2068 (time_t)50, (uint32_t)9);
2069 test_truth(rc
== MEMCACHED_NO_SERVERS
);
2072 rc
= memcached_mget(memc
, keys
, key_length
, 3);
2073 test_truth(rc
== MEMCACHED_NO_SERVERS
);
2076 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2077 &return_value_length
, &flags
, &rc
)))
2079 test_truth(return_value
);
2080 test_truth(rc
== MEMCACHED_SUCCESS
);
2081 test_truth(return_key_length
== return_value_length
);
2082 test_truth(!memcmp(return_value
, return_key
, return_value_length
));
2087 return TEST_SUCCESS
;
2090 #define VALUE_SIZE_BUG5 1048064
2091 static test_return_t
user_supplied_bug5(memcached_st
*memc
)
2093 memcached_return_t rc
;
2094 const char *keys
[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
2095 size_t key_length
[]= {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
2096 char return_key
[MEMCACHED_MAX_KEY
];
2097 size_t return_key_length
;
2099 size_t value_length
;
2103 char insert_data
[VALUE_SIZE_BUG5
];
2105 for (x
= 0; x
< VALUE_SIZE_BUG5
; x
++)
2106 insert_data
[x
]= (signed char)rand();
2108 memcached_flush(memc
, 0);
2109 value
= memcached_get(memc
, keys
[0], key_length
[0],
2110 &value_length
, &flags
, &rc
);
2111 test_truth(value
== NULL
);
2112 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2115 while ((value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2116 &value_length
, &flags
, &rc
)))
2118 test_truth(count
== 0);
2120 for (x
= 0; x
< 4; x
++)
2122 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2123 insert_data
, VALUE_SIZE_BUG5
,
2124 (time_t)0, (uint32_t)0);
2125 test_truth(rc
== MEMCACHED_SUCCESS
);
2128 for (x
= 0; x
< 10; x
++)
2130 value
= memcached_get(memc
, keys
[0], key_length
[0],
2131 &value_length
, &flags
, &rc
);
2135 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2137 while ((value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2138 &value_length
, &flags
, &rc
)))
2143 test_truth(count
== 4);
2146 return TEST_SUCCESS
;
2149 static test_return_t
user_supplied_bug6(memcached_st
*memc
)
2151 memcached_return_t rc
;
2152 const char *keys
[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
2153 size_t key_length
[]= {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
2154 char return_key
[MEMCACHED_MAX_KEY
];
2155 size_t return_key_length
;
2157 size_t value_length
;
2161 char insert_data
[VALUE_SIZE_BUG5
];
2163 for (x
= 0; x
< VALUE_SIZE_BUG5
; x
++)
2164 insert_data
[x
]= (signed char)rand();
2166 memcached_flush(memc
, 0);
2167 value
= memcached_get(memc
, keys
[0], key_length
[0],
2168 &value_length
, &flags
, &rc
);
2169 test_truth(value
== NULL
);
2170 test_truth(rc
== MEMCACHED_NOTFOUND
);
2171 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2172 test_truth(rc
== MEMCACHED_SUCCESS
);
2175 while ((value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2176 &value_length
, &flags
, &rc
)))
2178 test_truth(count
== 0);
2179 test_truth(rc
== MEMCACHED_END
);
2181 for (x
= 0; x
< 4; x
++)
2183 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2184 insert_data
, VALUE_SIZE_BUG5
,
2185 (time_t)0, (uint32_t)0);
2186 test_truth(rc
== MEMCACHED_SUCCESS
);
2189 for (x
= 0; x
< 2; x
++)
2191 value
= memcached_get(memc
, keys
[0], key_length
[0],
2192 &value_length
, &flags
, &rc
);
2196 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2197 test_truth(rc
== MEMCACHED_SUCCESS
);
2199 /* We test for purge of partial complete fetches */
2200 for (count
= 3; count
; count
--)
2202 value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2203 &value_length
, &flags
, &rc
);
2204 test_truth(rc
== MEMCACHED_SUCCESS
);
2205 test_truth(!(memcmp(value
, insert_data
, value_length
)));
2206 test_truth(value_length
);
2211 return TEST_SUCCESS
;
2214 static test_return_t
user_supplied_bug8(memcached_st
*memc
__attribute__((unused
)))
2216 memcached_return_t rc
;
2218 memcached_st
*memc_clone
;
2220 memcached_server_st
*servers
;
2221 const char *server_list
= "memcache1.memcache.bk.sapo.pt:11211, memcache1.memcache.bk.sapo.pt:11212, memcache1.memcache.bk.sapo.pt:11213, memcache1.memcache.bk.sapo.pt:11214, memcache2.memcache.bk.sapo.pt:11211, memcache2.memcache.bk.sapo.pt:11212, memcache2.memcache.bk.sapo.pt:11213, memcache2.memcache.bk.sapo.pt:11214";
2223 servers
= memcached_servers_parse(server_list
);
2224 test_truth(servers
);
2226 mine
= memcached_create(NULL
);
2227 rc
= memcached_server_push(mine
, servers
);
2228 test_truth(rc
== MEMCACHED_SUCCESS
);
2229 memcached_server_list_free(servers
);
2232 memc_clone
= memcached_clone(NULL
, mine
);
2234 memcached_quit(mine
);
2235 memcached_quit(memc_clone
);
2238 memcached_free(mine
);
2239 memcached_free(memc_clone
);
2241 return TEST_SUCCESS
;
2244 /* Test flag store/retrieve */
2245 static test_return_t
user_supplied_bug7(memcached_st
*memc
)
2247 memcached_return_t rc
;
2248 const char *keys
= "036790384900";
2249 size_t key_length
= strlen(keys
);
2250 char return_key
[MEMCACHED_MAX_KEY
];
2251 size_t return_key_length
;
2253 size_t value_length
;
2256 char insert_data
[VALUE_SIZE_BUG5
];
2258 for (x
= 0; x
< VALUE_SIZE_BUG5
; x
++)
2259 insert_data
[x
]= (signed char)rand();
2261 memcached_flush(memc
, 0);
2264 rc
= memcached_set(memc
, keys
, key_length
,
2265 insert_data
, VALUE_SIZE_BUG5
,
2267 test_truth(rc
== MEMCACHED_SUCCESS
);
2270 value
= memcached_get(memc
, keys
, key_length
,
2271 &value_length
, &flags
, &rc
);
2272 test_truth(flags
== 245);
2276 rc
= memcached_mget(memc
, &keys
, &key_length
, 1);
2279 value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2280 &value_length
, &flags
, &rc
);
2281 test_truth(flags
== 245);
2286 return TEST_SUCCESS
;
2289 static test_return_t
user_supplied_bug9(memcached_st
*memc
)
2291 memcached_return_t rc
;
2292 const char *keys
[]= {"UDATA:edevil@sapo.pt", "fudge&*@#", "for^#@&$not"};
2293 size_t key_length
[3];
2298 char return_key
[MEMCACHED_MAX_KEY
];
2299 size_t return_key_length
;
2301 size_t return_value_length
;
2304 key_length
[0]= strlen("UDATA:edevil@sapo.pt");
2305 key_length
[1]= strlen("fudge&*@#");
2306 key_length
[2]= strlen("for^#@&$not");
2309 for (x
= 0; x
< 3; x
++)
2311 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2312 keys
[x
], key_length
[x
],
2313 (time_t)50, (uint32_t)9);
2314 test_truth(rc
== MEMCACHED_SUCCESS
);
2317 rc
= memcached_mget(memc
, keys
, key_length
, 3);
2318 test_truth(rc
== MEMCACHED_SUCCESS
);
2320 /* We need to empty the server before continueing test */
2321 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2322 &return_value_length
, &flags
, &rc
)) != NULL
)
2324 test_truth(return_value
);
2328 test_truth(count
== 3);
2330 return TEST_SUCCESS
;
2333 /* We are testing with aggressive timeout to get failures */
2334 static test_return_t
user_supplied_bug10(memcached_st
*memc
)
2336 const char *key
= "foo";
2338 size_t value_length
= 512;
2341 memcached_return_t rc
;
2342 unsigned int set
= 1;
2343 memcached_st
*mclone
= memcached_clone(NULL
, memc
);
2346 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
2347 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
2349 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
,
2352 value
= (char*)malloc(value_length
* sizeof(char));
2354 for (x
= 0; x
< value_length
; x
++)
2355 value
[x
]= (char) (x
% 127);
2357 for (x
= 1; x
<= 100000; ++x
)
2359 rc
= memcached_set(mclone
, key
, key_len
,value
, value_length
, 0, 0);
2361 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_WRITE_FAILURE
||
2362 rc
== MEMCACHED_BUFFERED
|| rc
== MEMCACHED_TIMEOUT
);
2364 if (rc
== MEMCACHED_WRITE_FAILURE
|| rc
== MEMCACHED_TIMEOUT
)
2369 memcached_free(mclone
);
2371 return TEST_SUCCESS
;
2375 We are looking failures in the async protocol
2377 static test_return_t
user_supplied_bug11(memcached_st
*memc
)
2379 const char *key
= "foo";
2381 size_t value_length
= 512;
2384 memcached_return_t rc
;
2385 unsigned int set
= 1;
2387 memcached_st
*mclone
= memcached_clone(NULL
, memc
);
2389 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
2390 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
2392 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
,
2395 timeout
= (int32_t)memcached_behavior_get(mclone
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
);
2397 test_truth(timeout
== -1);
2399 value
= (char*)malloc(value_length
* sizeof(char));
2401 for (x
= 0; x
< value_length
; x
++)
2402 value
[x
]= (char) (x
% 127);
2404 for (x
= 1; x
<= 100000; ++x
)
2406 rc
= memcached_set(mclone
, key
, key_len
,value
, value_length
, 0, 0);
2410 memcached_free(mclone
);
2412 return TEST_SUCCESS
;
2416 Bug found where incr was not returning MEMCACHED_NOTFOUND when object did not exist.
2418 static test_return_t
user_supplied_bug12(memcached_st
*memc
)
2420 memcached_return_t rc
;
2422 size_t value_length
;
2424 uint64_t number_value
;
2426 value
= memcached_get(memc
, "autoincrement", strlen("autoincrement"),
2427 &value_length
, &flags
, &rc
);
2428 test_truth(value
== NULL
);
2429 test_truth(rc
== MEMCACHED_NOTFOUND
);
2431 rc
= memcached_increment(memc
, "autoincrement", strlen("autoincrement"),
2434 test_truth(value
== NULL
);
2435 /* The binary protocol will set the key if it doesn't exist */
2436 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 1)
2438 test_truth(rc
== MEMCACHED_SUCCESS
);
2442 test_truth(rc
== MEMCACHED_NOTFOUND
);
2445 rc
= memcached_set(memc
, "autoincrement", strlen("autoincrement"), "1", 1, 0, 0);
2447 value
= memcached_get(memc
, "autoincrement", strlen("autoincrement"),
2448 &value_length
, &flags
, &rc
);
2450 test_truth(rc
== MEMCACHED_SUCCESS
);
2453 rc
= memcached_increment(memc
, "autoincrement", strlen("autoincrement"),
2455 test_truth(number_value
== 2);
2456 test_truth(rc
== MEMCACHED_SUCCESS
);
2458 return TEST_SUCCESS
;
2462 Bug found where command total one more than MEMCACHED_MAX_BUFFER
2463 set key34567890 0 0 8169 \r\n is sent followed by buffer of size 8169, followed by 8169
2465 static test_return_t
user_supplied_bug13(memcached_st
*memc
)
2467 char key
[] = "key34567890";
2469 memcached_return_t rc
;
2470 size_t overflowSize
;
2472 char commandFirst
[]= "set key34567890 0 0 ";
2473 char commandLast
[] = " \r\n"; /* first line of command sent to server */
2474 size_t commandLength
;
2477 commandLength
= strlen(commandFirst
) + strlen(commandLast
) + 4; /* 4 is number of characters in size, probably 8196 */
2479 overflowSize
= MEMCACHED_MAX_BUFFER
- commandLength
;
2481 for (testSize
= overflowSize
- 1; testSize
< overflowSize
+ 1; testSize
++)
2483 overflow
= malloc(testSize
);
2484 test_truth(overflow
!= NULL
);
2486 memset(overflow
, 'x', testSize
);
2487 rc
= memcached_set(memc
, key
, strlen(key
),
2488 overflow
, testSize
, 0, 0);
2489 test_truth(rc
== MEMCACHED_SUCCESS
);
2493 return TEST_SUCCESS
;
2498 Test values of many different sizes
2499 Bug found where command total one more than MEMCACHED_MAX_BUFFER
2500 set key34567890 0 0 8169 \r\n
2501 is sent followed by buffer of size 8169, followed by 8169
2503 static test_return_t
user_supplied_bug14(memcached_st
*memc
)
2506 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
2507 memcached_return_t rc
;
2508 const char *key
= "foo";
2510 size_t value_length
= 18000;
2512 size_t string_length
;
2515 size_t current_length
;
2517 value
= (char*)malloc(value_length
);
2520 for (x
= 0; x
< value_length
; x
++)
2521 value
[x
] = (char) (x
% 127);
2523 for (current_length
= 0; current_length
< value_length
; current_length
++)
2525 rc
= memcached_set(memc
, key
, strlen(key
),
2526 value
, current_length
,
2527 (time_t)0, (uint32_t)0);
2528 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
2530 string
= memcached_get(memc
, key
, strlen(key
),
2531 &string_length
, &flags
, &rc
);
2533 test_truth(rc
== MEMCACHED_SUCCESS
);
2534 test_truth(string_length
== current_length
);
2535 test_truth(!memcmp(string
, value
, string_length
));
2542 return TEST_SUCCESS
;
2546 Look for zero length value problems
2548 static test_return_t
user_supplied_bug15(memcached_st
*memc
)
2551 memcached_return_t rc
;
2552 const char *key
= "mykey";
2557 for (x
= 0; x
< 2; x
++)
2559 rc
= memcached_set(memc
, key
, strlen(key
),
2561 (time_t)0, (uint32_t)0);
2563 test_truth(rc
== MEMCACHED_SUCCESS
);
2565 value
= memcached_get(memc
, key
, strlen(key
),
2566 &length
, &flags
, &rc
);
2568 test_truth(rc
== MEMCACHED_SUCCESS
);
2569 test_truth(value
== NULL
);
2570 test_truth(length
== 0);
2571 test_truth(flags
== 0);
2573 value
= memcached_get(memc
, key
, strlen(key
),
2574 &length
, &flags
, &rc
);
2576 test_truth(rc
== MEMCACHED_SUCCESS
);
2577 test_truth(value
== NULL
);
2578 test_truth(length
== 0);
2579 test_truth(flags
== 0);
2582 return TEST_SUCCESS
;
2585 /* Check the return sizes on FLAGS to make sure it stores 32bit unsigned values correctly */
2586 static test_return_t
user_supplied_bug16(memcached_st
*memc
)
2588 memcached_return_t rc
;
2589 const char *key
= "mykey";
2594 rc
= memcached_set(memc
, key
, strlen(key
),
2596 (time_t)0, UINT32_MAX
);
2598 test_truth(rc
== MEMCACHED_SUCCESS
);
2600 value
= memcached_get(memc
, key
, strlen(key
),
2601 &length
, &flags
, &rc
);
2603 test_truth(rc
== MEMCACHED_SUCCESS
);
2604 test_truth(value
== NULL
);
2605 test_truth(length
== 0);
2606 test_truth(flags
== UINT32_MAX
);
2608 return TEST_SUCCESS
;
2612 /* Check the validity of chinese key*/
2613 static test_return_t
user_supplied_bug17(memcached_st
*memc
)
2615 memcached_return_t rc
;
2616 const char *key
= "豆瓣";
2617 const char *value
="我们在炎热抑郁的夏天无法停止豆瓣";
2622 rc
= memcached_set(memc
, key
, strlen(key
),
2623 value
, strlen(value
),
2626 test_truth(rc
== MEMCACHED_SUCCESS
);
2628 value2
= memcached_get(memc
, key
, strlen(key
),
2629 &length
, &flags
, &rc
);
2631 test_truth(length
==strlen(value
));
2632 test_truth(rc
== MEMCACHED_SUCCESS
);
2633 test_truth(memcmp(value
, value2
, length
)==0);
2636 return TEST_SUCCESS
;
2644 static test_return_t
user_supplied_bug19(memcached_st
*memc
)
2647 memcached_server_st
*s
;
2648 memcached_return_t res
;
2652 m
= memcached_create(NULL
);
2653 memcached_server_add_with_weight(m
, "localhost", 11311, 100);
2654 memcached_server_add_with_weight(m
, "localhost", 11312, 100);
2656 s
= memcached_server_by_key(m
, "a", 1, &res
);
2657 memcached_server_free(s
);
2661 return TEST_SUCCESS
;
2664 /* CAS test from Andei */
2665 static test_return_t
user_supplied_bug20(memcached_st
*memc
)
2667 memcached_return_t status
;
2668 memcached_result_st
*result
, result_obj
;
2669 const char *key
= "abc";
2670 size_t key_len
= strlen("abc");
2671 const char *value
= "foobar";
2672 size_t value_len
= strlen(value
);
2674 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, 1);
2676 status
= memcached_set(memc
, key
, key_len
, value
, value_len
, (time_t)0, (uint32_t)0);
2677 test_truth(status
== MEMCACHED_SUCCESS
);
2679 status
= memcached_mget(memc
, &key
, &key_len
, 1);
2680 test_truth(status
== MEMCACHED_SUCCESS
);
2682 result
= memcached_result_create(memc
, &result_obj
);
2685 memcached_result_create(memc
, &result_obj
);
2686 result
= memcached_fetch_result(memc
, &result_obj
, &status
);
2689 test_truth(status
== MEMCACHED_SUCCESS
);
2691 memcached_result_free(result
);
2693 return TEST_SUCCESS
;
2696 #include "ketama_test_cases.h"
2697 static test_return_t
user_supplied_bug18(memcached_st
*trash
)
2699 memcached_return_t rc
;
2702 memcached_server_st
*server_pool
;
2707 memc
= memcached_create(NULL
);
2710 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
2711 test_truth(rc
== MEMCACHED_SUCCESS
);
2713 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
2714 test_truth(value
== 1);
2716 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
2717 test_truth(rc
== MEMCACHED_SUCCESS
);
2719 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
2720 test_truth(value
== MEMCACHED_HASH_MD5
);
2722 server_pool
= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
2723 memcached_server_push(memc
, server_pool
);
2725 /* verify that the server list was parsed okay. */
2726 test_truth(memcached_server_count(memc
) == 8);
2727 test_truth(strcmp(server_pool
[0].hostname
, "10.0.1.1") == 0);
2728 test_truth(server_pool
[0].port
== 11211);
2729 test_truth(server_pool
[0].weight
== 600);
2730 test_truth(strcmp(server_pool
[2].hostname
, "10.0.1.3") == 0);
2731 test_truth(server_pool
[2].port
== 11211);
2732 test_truth(server_pool
[2].weight
== 200);
2733 test_truth(strcmp(server_pool
[7].hostname
, "10.0.1.8") == 0);
2734 test_truth(server_pool
[7].port
== 11211);
2735 test_truth(server_pool
[7].weight
== 100);
2737 /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
2738 * us test the boundary wraparound.
2740 test_truth(memcached_generate_hash(memc
, (char *)"VDEAAAAA", 8) == memc
->continuum
[0].index
);
2742 /* verify the standard ketama set. */
2743 for (x
= 0; x
< 99; x
++)
2745 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
2746 memcached_server_instance_st
*instance
=
2747 memcached_server_instance_fetch(memc
, server_idx
);
2748 char *hostname
= instance
->hostname
;
2749 test_strcmp(hostname
, ketama_test_cases
[x
].server
);
2752 memcached_server_list_free(server_pool
);
2753 memcached_free(memc
);
2755 return TEST_SUCCESS
;
2758 /* Large mget() of missing keys with binary proto
2760 * If many binary quiet commands (such as getq's in an mget) fill the output
2761 * buffer and the server chooses not to respond, memcached_flush hangs. See
2762 * http://lists.tangent.org/pipermail/libmemcached/2009-August/000918.html
2765 /* sighandler_t function that always asserts false */
2766 static void fail(int unused
__attribute__((unused
)))
2772 static test_return_t
_user_supplied_bug21(memcached_st
* memc
, size_t key_count
)
2774 memcached_return_t rc
;
2777 size_t* key_lengths
;
2778 void (*oldalarm
)(int);
2779 memcached_st
*memc_clone
;
2781 memc_clone
= memcached_clone(NULL
, memc
);
2782 test_truth(memc_clone
);
2784 /* only binproto uses getq for mget */
2785 memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
2787 /* empty the cache to ensure misses (hence non-responses) */
2788 rc
= memcached_flush(memc_clone
, 0);
2789 test_truth(rc
== MEMCACHED_SUCCESS
);
2791 key_lengths
= calloc(key_count
, sizeof(size_t));
2792 keys
= calloc(key_count
, sizeof(char *));
2794 for (x
= 0; x
< key_count
; x
++)
2798 snprintf(buffer
, 30, "%u", x
);
2799 keys
[x
]= strdup(buffer
);
2800 key_lengths
[x
]= strlen(keys
[x
]);
2803 oldalarm
= signal(SIGALRM
, fail
);
2806 rc
= memcached_mget(memc_clone
, (const char **)keys
, key_lengths
, key_count
);
2807 test_truth(rc
== MEMCACHED_SUCCESS
);
2810 signal(SIGALRM
, oldalarm
);
2812 test_truth(fetch_all_results(memc
) == TEST_SUCCESS
);
2814 for (x
= 0; x
< key_count
; x
++)
2819 memcached_free(memc_clone
);
2821 return TEST_SUCCESS
;
2824 static test_return_t
pre_binary(memcached_st
*memc
);
2826 static test_return_t
user_supplied_bug21(memcached_st
*memc
)
2828 test_return_t test_rc
;
2829 test_rc
= pre_binary(memc
);
2831 if (test_rc
!= TEST_SUCCESS
)
2836 /* should work as of r580 */
2837 rc
= _user_supplied_bug21(memc
, 10);
2838 test_truth(rc
== TEST_SUCCESS
);
2840 /* should fail as of r580 */
2841 rc
= _user_supplied_bug21(memc
, 1000);
2842 test_truth(rc
== TEST_SUCCESS
);
2844 return TEST_SUCCESS
;
2847 static test_return_t
auto_eject_hosts(memcached_st
*trash
)
2850 memcached_server_instance_st
*instance
;
2852 memcached_return_t rc
;
2853 memcached_st
*memc
= memcached_create(NULL
);
2856 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
2857 test_truth(rc
== MEMCACHED_SUCCESS
);
2859 uint64_t value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
2860 test_truth(value
== 1);
2862 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
2863 test_truth(rc
== MEMCACHED_SUCCESS
);
2865 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
2866 test_truth(value
== MEMCACHED_HASH_MD5
);
2868 /* server should be removed when in delay */
2869 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
, 1);
2870 test_truth(rc
== MEMCACHED_SUCCESS
);
2872 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
);
2873 test_truth(value
== 1);
2875 memcached_server_st
*server_pool
;
2876 server_pool
= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
2877 memcached_server_push(memc
, server_pool
);
2879 /* verify that the server list was parsed okay. */
2880 test_truth(memcached_server_count(memc
) == 8);
2881 test_truth(strcmp(server_pool
[0].hostname
, "10.0.1.1") == 0);
2882 test_truth(server_pool
[0].port
== 11211);
2883 test_truth(server_pool
[0].weight
== 600);
2884 test_truth(strcmp(server_pool
[2].hostname
, "10.0.1.3") == 0);
2885 test_truth(server_pool
[2].port
== 11211);
2886 test_truth(server_pool
[2].weight
== 200);
2887 test_truth(strcmp(server_pool
[7].hostname
, "10.0.1.8") == 0);
2888 test_truth(server_pool
[7].port
== 11211);
2889 test_truth(server_pool
[7].weight
== 100);
2891 instance
= memcached_server_instance_fetch(memc
, 2);
2892 instance
->next_retry
= time(NULL
) + 15;
2893 memc
->next_distribution_rebuild
= time(NULL
) - 1;
2895 for (int x
= 0; x
< 99; x
++)
2897 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
2898 test_truth(server_idx
!= 2);
2901 /* and re-added when it's back. */
2902 instance
->next_retry
= time(NULL
) - 1;
2903 memc
->next_distribution_rebuild
= time(NULL
) - 1;
2904 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
,
2905 memc
->distribution
);
2906 for (int x
= 0; x
< 99; x
++)
2908 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
2909 // We re-use instance from above.
2911 memcached_server_instance_fetch(memc
, server_idx
);
2912 char *hostname
= instance
->hostname
;
2913 test_truth(strcmp(hostname
, ketama_test_cases
[x
].server
) == 0);
2916 memcached_server_list_free(server_pool
);
2917 memcached_free(memc
);
2919 return TEST_SUCCESS
;
2922 static test_return_t
output_ketama_weighted_keys(memcached_st
*trash
)
2926 memcached_return_t rc
;
2927 memcached_st
*memc
= memcached_create(NULL
);
2931 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
2932 test_truth(rc
== MEMCACHED_SUCCESS
);
2934 uint64_t value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
2935 test_truth(value
== 1);
2937 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
2938 test_truth(rc
== MEMCACHED_SUCCESS
);
2940 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
2941 test_truth(value
== MEMCACHED_HASH_MD5
);
2944 test_truth(memcached_behavior_set_distribution(memc
, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
) == MEMCACHED_SUCCESS
);
2946 memcached_server_st
*server_pool
;
2947 server_pool
= memcached_servers_parse("10.0.1.1:11211,10.0.1.2:11211,10.0.1.3:11211,10.0.1.4:11211,10.0.1.5:11211,10.0.1.6:11211,10.0.1.7:11211,10.0.1.8:11211,192.168.1.1:11211,192.168.100.1:11211");
2948 memcached_server_push(memc
, server_pool
);
2950 // @todo this needs to be refactored to actually test something.
2953 if ((fp
= fopen("ketama_keys.txt", "w")))
2957 printf("cannot write to file ketama_keys.txt");
2958 return TEST_FAILURE
;
2961 for (int x
= 0; x
< 10000; x
++)
2964 sprintf(key
, "%d", x
);
2966 uint32_t server_idx
= memcached_generate_hash(memc
, key
, strlen(key
));
2967 char *hostname
= memc
->hosts
[server_idx
].hostname
;
2968 in_port_t port
= memc
->hosts
[server_idx
].port
;
2969 fprintf(fp
, "key %s is on host /%s:%u\n", key
, hostname
, port
);
2973 memcached_server_list_free(server_pool
);
2974 memcached_free(memc
);
2976 return TEST_SUCCESS
;
2980 static test_return_t
result_static(memcached_st
*memc
)
2982 memcached_result_st result
;
2983 memcached_result_st
*result_ptr
;
2985 result_ptr
= memcached_result_create(memc
, &result
);
2986 test_truth(result
.options
.is_allocated
== false);
2987 test_truth(memcached_is_initialized(&result
) == true);
2988 test_truth(result_ptr
);
2989 test_truth(result_ptr
== &result
);
2991 memcached_result_free(&result
);
2993 test_truth(result
.options
.is_allocated
== false);
2994 test_truth(memcached_is_initialized(&result
) == false);
2996 return TEST_SUCCESS
;
2999 static test_return_t
result_alloc(memcached_st
*memc
)
3001 memcached_result_st
*result_ptr
;
3003 result_ptr
= memcached_result_create(memc
, NULL
);
3004 test_truth(result_ptr
);
3005 test_truth(result_ptr
->options
.is_allocated
== true);
3006 test_truth(memcached_is_initialized(result_ptr
) == true);
3007 memcached_result_free(result_ptr
);
3009 return TEST_SUCCESS
;
3012 static test_return_t
string_static_null(memcached_st
*memc
)
3014 memcached_string_st string
;
3015 memcached_string_st
*string_ptr
;
3017 string_ptr
= memcached_string_create(memc
, &string
, 0);
3018 test_truth(string
.options
.is_initialized
== true);
3019 test_truth(string_ptr
);
3021 /* The following two better be the same! */
3022 test_truth(memcached_is_allocated(string_ptr
) == false);
3023 test_truth(memcached_is_allocated(&string
) == false);
3024 test_truth(&string
== string_ptr
);
3026 test_truth(string
.options
.is_initialized
== true);
3027 test_truth(memcached_is_initialized(&string
) == true);
3028 memcached_string_free(&string
);
3029 test_truth(memcached_is_initialized(&string
) == false);
3031 return TEST_SUCCESS
;
3034 static test_return_t
string_alloc_null(memcached_st
*memc
)
3036 memcached_string_st
*string
;
3038 string
= memcached_string_create(memc
, NULL
, 0);
3040 test_truth(memcached_is_allocated(string
) == true);
3041 test_truth(memcached_is_initialized(string
) == true);
3042 memcached_string_free(string
);
3044 return TEST_SUCCESS
;
3047 static test_return_t
string_alloc_with_size(memcached_st
*memc
)
3049 memcached_string_st
*string
;
3051 string
= memcached_string_create(memc
, NULL
, 1024);
3053 test_truth(memcached_is_allocated(string
) == true);
3054 test_truth(memcached_is_initialized(string
) == true);
3055 memcached_string_free(string
);
3057 return TEST_SUCCESS
;
3060 static test_return_t
string_alloc_with_size_toobig(memcached_st
*memc
)
3062 memcached_string_st
*string
;
3064 string
= memcached_string_create(memc
, NULL
, SIZE_MAX
);
3065 test_truth(string
== NULL
);
3067 return TEST_SUCCESS
;
3070 static test_return_t
string_alloc_append(memcached_st
*memc
)
3073 char buffer
[SMALL_STRING_LEN
];
3074 memcached_string_st
*string
;
3076 /* Ring the bell! */
3077 memset(buffer
, 6, SMALL_STRING_LEN
);
3079 string
= memcached_string_create(memc
, NULL
, 100);
3081 test_truth(memcached_is_allocated(string
) == true);
3082 test_truth(memcached_is_initialized(string
) == true);
3084 for (x
= 0; x
< 1024; x
++)
3086 memcached_return_t rc
;
3087 rc
= memcached_string_append(string
, buffer
, SMALL_STRING_LEN
);
3088 test_truth(rc
== MEMCACHED_SUCCESS
);
3090 test_truth(memcached_is_allocated(string
) == true);
3091 memcached_string_free(string
);
3093 return TEST_SUCCESS
;
3096 static test_return_t
string_alloc_append_toobig(memcached_st
*memc
)
3098 memcached_return_t rc
;
3100 char buffer
[SMALL_STRING_LEN
];
3101 memcached_string_st
*string
;
3103 /* Ring the bell! */
3104 memset(buffer
, 6, SMALL_STRING_LEN
);
3106 string
= memcached_string_create(memc
, NULL
, 100);
3108 test_truth(memcached_is_allocated(string
) == true);
3109 test_truth(memcached_is_initialized(string
) == true);
3111 for (x
= 0; x
< 1024; x
++)
3113 rc
= memcached_string_append(string
, buffer
, SMALL_STRING_LEN
);
3114 test_truth(rc
== MEMCACHED_SUCCESS
);
3116 rc
= memcached_string_append(string
, buffer
, SIZE_MAX
);
3117 test_truth(rc
== MEMCACHED_MEMORY_ALLOCATION_FAILURE
);
3118 test_truth(memcached_is_allocated(string
) == true);
3119 memcached_string_free(string
);
3121 return TEST_SUCCESS
;
3124 static test_return_t
cleanup_pairs(memcached_st
*memc
__attribute__((unused
)))
3126 pairs_free(global_pairs
);
3128 return TEST_SUCCESS
;
3131 static test_return_t
generate_pairs(memcached_st
*memc
__attribute__((unused
)))
3133 global_pairs
= pairs_generate(GLOBAL_COUNT
, 400);
3134 global_count
= GLOBAL_COUNT
;
3136 for (size_t x
= 0; x
< global_count
; x
++)
3138 global_keys
[x
]= global_pairs
[x
].key
;
3139 global_keys_length
[x
]= global_pairs
[x
].key_length
;
3142 return TEST_SUCCESS
;
3145 static test_return_t
generate_large_pairs(memcached_st
*memc
__attribute__((unused
)))
3147 global_pairs
= pairs_generate(GLOBAL2_COUNT
, MEMCACHED_MAX_BUFFER
+10);
3148 global_count
= GLOBAL2_COUNT
;
3150 for (size_t x
= 0; x
< global_count
; x
++)
3152 global_keys
[x
]= global_pairs
[x
].key
;
3153 global_keys_length
[x
]= global_pairs
[x
].key_length
;
3156 return TEST_SUCCESS
;
3159 static test_return_t
generate_data(memcached_st
*memc
)
3161 execute_set(memc
, global_pairs
, global_count
);
3163 return TEST_SUCCESS
;
3166 static test_return_t
generate_data_with_stats(memcached_st
*memc
)
3168 memcached_stat_st
*stat_p
;
3169 memcached_return_t rc
;
3170 uint32_t host_index
= 0;
3171 execute_set(memc
, global_pairs
, global_count
);
3173 //TODO: hosts used size stats
3174 stat_p
= memcached_stat(memc
, NULL
, &rc
);
3177 for (host_index
= 0; host_index
< SERVERS_TO_CREATE
; host_index
++)
3179 /* This test was changes so that "make test" would work properlly */
3181 printf("\nserver %u|%s|%u bytes: %llu\n", host_index
, (memc
->hosts
)[host_index
].hostname
, (memc
->hosts
)[host_index
].port
, (unsigned long long)(stat_p
+ host_index
)->bytes
);
3183 test_truth((unsigned long long)(stat_p
+ host_index
)->bytes
);
3186 memcached_stat_free(NULL
, stat_p
);
3188 return TEST_SUCCESS
;
3190 static test_return_t
generate_buffer_data(memcached_st
*memc
)
3195 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, latch
);
3196 generate_data(memc
);
3198 return TEST_SUCCESS
;
3201 static test_return_t
get_read_count(memcached_st
*memc
)
3203 memcached_return_t rc
;
3204 memcached_st
*memc_clone
;
3206 memc_clone
= memcached_clone(NULL
, memc
);
3207 test_truth(memc_clone
);
3209 memcached_server_add_with_weight(memc_clone
, "localhost", 6666, 0);
3213 size_t return_value_length
;
3217 for (size_t x
= count
= 0; x
< global_count
; x
++)
3219 return_value
= memcached_get(memc_clone
, global_keys
[x
], global_keys_length
[x
],
3220 &return_value_length
, &flags
, &rc
);
3221 if (rc
== MEMCACHED_SUCCESS
)
3230 memcached_free(memc_clone
);
3232 return TEST_SUCCESS
;
3235 static test_return_t
get_read(memcached_st
*memc
)
3237 memcached_return_t rc
;
3241 size_t return_value_length
;
3244 for (size_t x
= 0; x
< global_count
; x
++)
3246 return_value
= memcached_get(memc
, global_keys
[x
], global_keys_length
[x
],
3247 &return_value_length
, &flags
, &rc
);
3249 test_truth(return_value);
3250 test_truth(rc == MEMCACHED_SUCCESS);
3252 if (rc
== MEMCACHED_SUCCESS
&& return_value
)
3257 return TEST_SUCCESS
;
3260 static test_return_t
mget_read(memcached_st
*memc
)
3262 memcached_return_t rc
;
3264 rc
= memcached_mget(memc
, global_keys
, global_keys_length
, global_count
);
3265 test_truth(rc
== MEMCACHED_SUCCESS
);
3266 test_truth(fetch_all_results(memc
) == TEST_SUCCESS
);
3268 return TEST_SUCCESS
;
3271 static test_return_t
mget_read_result(memcached_st
*memc
)
3273 memcached_return_t rc
;
3275 rc
= memcached_mget(memc
, global_keys
, global_keys_length
, global_count
);
3276 test_truth(rc
== MEMCACHED_SUCCESS
);
3277 /* Turn this into a help function */
3279 memcached_result_st results_obj
;
3280 memcached_result_st
*results
;
3282 results
= memcached_result_create(memc
, &results_obj
);
3284 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)))
3286 test_truth(results
);
3287 test_truth(rc
== MEMCACHED_SUCCESS
);
3290 memcached_result_free(&results_obj
);
3293 return TEST_SUCCESS
;
3296 static test_return_t
mget_read_function(memcached_st
*memc
)
3298 memcached_return_t rc
;
3300 memcached_execute_fn callbacks
[1];
3302 rc
= memcached_mget(memc
, global_keys
, global_keys_length
, global_count
);
3303 test_truth(rc
== MEMCACHED_SUCCESS
);
3305 callbacks
[0]= &callback_counter
;
3307 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
3309 return TEST_SUCCESS
;
3312 static test_return_t
delete_generate(memcached_st
*memc
)
3314 for (size_t x
= 0; x
< global_count
; x
++)
3316 (void)memcached_delete(memc
, global_keys
[x
], global_keys_length
[x
], (time_t)0);
3319 return TEST_SUCCESS
;
3322 static test_return_t
delete_buffer_generate(memcached_st
*memc
)
3327 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, latch
);
3329 for (size_t x
= 0; x
< global_count
; x
++)
3331 (void)memcached_delete(memc
, global_keys
[x
], global_keys_length
[x
], (time_t)0);
3334 return TEST_SUCCESS
;
3337 static test_return_t
add_host_test1(memcached_st
*memc
)
3339 memcached_return_t rc
;
3340 char servername
[]= "0.example.com";
3341 memcached_server_st
*servers
;
3343 servers
= memcached_server_list_append_with_weight(NULL
, servername
, 400, 0, &rc
);
3344 test_truth(servers
);
3345 test_truth(1 == memcached_server_list_count(servers
));
3347 for (size_t x
= 2; x
< 20; x
++)
3349 char buffer
[SMALL_STRING_LEN
];
3351 snprintf(buffer
, SMALL_STRING_LEN
, "%zu.example.com", 400+x
);
3352 servers
= memcached_server_list_append_with_weight(servers
, buffer
, 401, 0,
3354 test_truth(rc
== MEMCACHED_SUCCESS
);
3355 test_truth(x
== memcached_server_list_count(servers
));
3358 rc
= memcached_server_push(memc
, servers
);
3359 test_truth(rc
== MEMCACHED_SUCCESS
);
3360 rc
= memcached_server_push(memc
, servers
);
3361 test_truth(rc
== MEMCACHED_SUCCESS
);
3363 memcached_server_list_free(servers
);
3365 return TEST_SUCCESS
;
3368 static test_return_t
pre_nonblock(memcached_st
*memc
)
3370 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 0);
3372 return TEST_SUCCESS
;
3375 static test_return_t
pre_nonblock_binary(memcached_st
*memc
)
3377 memcached_return_t rc
= MEMCACHED_FAILURE
;
3378 memcached_st
*memc_clone
;
3379 memcached_server_instance_st
*instance
;
3381 memc_clone
= memcached_clone(NULL
, memc
);
3382 test_truth(memc_clone
);
3383 // The memcached_version needs to be done on a clone, because the server
3384 // will not toggle protocol on an connection.
3385 memcached_version(memc_clone
);
3387 instance
= memcached_server_instance_fetch(memc_clone
, 0);
3389 if (instance
->major_version
>= 1 && instance
->minor_version
> 2)
3391 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 0);
3392 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
3393 test_truth(rc
== MEMCACHED_SUCCESS
);
3394 test_truth(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 1);
3398 return TEST_SKIPPED
;
3401 memcached_free(memc_clone
);
3403 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3406 static test_return_t
pre_murmur(memcached_st
*memc
)
3408 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_MURMUR
);
3410 return TEST_SUCCESS
;
3413 static test_return_t
pre_jenkins(memcached_st
*memc
)
3415 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_JENKINS
);
3417 return TEST_SUCCESS
;
3421 static test_return_t
pre_md5(memcached_st
*memc
)
3423 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_MD5
);
3425 return TEST_SUCCESS
;
3428 static test_return_t
pre_crc(memcached_st
*memc
)
3430 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_CRC
);
3432 return TEST_SUCCESS
;
3435 static test_return_t
pre_hsieh(memcached_st
*memc
)
3437 #ifdef HAVE_HSIEH_HASH
3438 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_HSIEH
);
3439 return TEST_SUCCESS
;
3442 return TEST_SKIPPED
;
3446 static test_return_t
pre_hash_fnv1_64(memcached_st
*memc
)
3448 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_MURMUR
);
3450 return TEST_SUCCESS
;
3453 static test_return_t
pre_hash_fnv1a_64(memcached_st
*memc
)
3455 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_FNV1A_64
);
3457 return TEST_SUCCESS
;
3460 static test_return_t
pre_hash_fnv1_32(memcached_st
*memc
)
3462 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_FNV1_32
);
3464 return TEST_SUCCESS
;
3467 static test_return_t
pre_hash_fnv1a_32(memcached_st
*memc
)
3469 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_FNV1A_32
);
3471 return TEST_SUCCESS
;
3474 static test_return_t
pre_behavior_ketama(memcached_st
*memc
)
3476 memcached_return_t rc
;
3479 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA
, 1);
3480 test_truth(rc
== MEMCACHED_SUCCESS
);
3482 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA
);
3483 test_truth(value
== 1);
3485 return TEST_SUCCESS
;
3488 static test_return_t
pre_behavior_ketama_weighted(memcached_st
*memc
)
3490 memcached_return_t rc
;
3493 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
3494 test_truth(rc
== MEMCACHED_SUCCESS
);
3496 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
3497 test_truth(value
== 1);
3499 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
3500 test_truth(rc
== MEMCACHED_SUCCESS
);
3502 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
3503 test_truth(value
== MEMCACHED_HASH_MD5
);
3505 return TEST_SUCCESS
;
3509 @note This should be testing to see if the server really supports the binary protocol.
3511 static test_return_t
pre_binary(memcached_st
*memc
)
3513 memcached_return_t rc
= MEMCACHED_FAILURE
;
3514 memcached_st
*memc_clone
;
3515 memcached_server_instance_st
*instance
;
3517 memc_clone
= memcached_clone(NULL
, memc
);
3518 test_truth(memc_clone
);
3519 // The memcached_version needs to be done on a clone, because the server
3520 // will not toggle protocol on an connection.
3521 memcached_version(memc_clone
);
3523 instance
= memcached_server_instance_fetch(memc_clone
, 0);
3525 if (instance
->major_version
>= 1 && instance
->minor_version
> 2)
3527 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
3528 test_truth(rc
== MEMCACHED_SUCCESS
);
3529 test_truth(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 1);
3532 memcached_free(memc_clone
);
3534 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3538 static test_return_t
pre_replication(memcached_st
*memc
)
3540 test_return_t test_rc
;
3541 test_rc
= pre_binary(memc
);
3543 if (test_rc
!= TEST_SUCCESS
)
3547 * Make sure that we store the item on all servers
3548 * (master + replicas == number of servers)
3550 memcached_return_t rc
;
3551 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
,
3552 memcached_server_count(memc
) - 1);
3553 test_truth(rc
== MEMCACHED_SUCCESS
);
3554 test_truth(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
) == memcached_server_count(memc
) - 1);
3556 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3560 static test_return_t
pre_replication_noblock(memcached_st
*memc
)
3564 rc
= pre_replication(memc
);
3565 if (rc
!= TEST_SUCCESS
)
3568 rc
= pre_nonblock(memc
);
3574 static void my_free(memcached_st
*ptr
__attribute__((unused
)), void *mem
)
3576 #ifdef HARD_MALLOC_TESTS
3577 void *real_ptr
= (mem
== NULL
) ? mem
: (void*)((caddr_t
)mem
- 8);
3585 static void *my_malloc(memcached_st
*ptr
__attribute__((unused
)), const size_t size
)
3587 #ifdef HARD_MALLOC_TESTS
3588 void *ret
= malloc(size
+ 8);
3591 ret
= (void*)((caddr_t
)ret
+ 8);
3594 void *ret
= malloc(size
);
3599 memset(ret
, 0xff, size
);
3606 static void *my_realloc(memcached_st
*ptr
__attribute__((unused
)), void *mem
, const size_t size
)
3608 #ifdef HARD_MALLOC_TESTS
3609 void *real_ptr
= (mem
== NULL
) ? NULL
: (void*)((caddr_t
)mem
- 8);
3610 void *nmem
= realloc(real_ptr
, size
+ 8);
3615 ret
= (void*)((caddr_t
)nmem
+ 8);
3620 return realloc(mem
, size
);
3625 static void *my_calloc(memcached_st
*ptr
__attribute__((unused
)), size_t nelem
, const size_t size
)
3627 #ifdef HARD_MALLOC_TESTS
3628 void *mem
= my_malloc(ptr
, nelem
* size
);
3631 memset(mem
, 0, nelem
* size
);
3636 return calloc(nelem
, size
);
3641 static test_return_t
set_prefix(memcached_st
*memc
)
3643 memcached_return_t rc
;
3644 const char *key
= "mine";
3647 /* Make sure be default none exists */
3648 value
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3649 test_truth(rc
== MEMCACHED_FAILURE
);
3651 /* Test a clean set */
3652 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, (void *)key
);
3653 test_truth(rc
== MEMCACHED_SUCCESS
);
3655 value
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3656 test_truth(memcmp(value
, key
, 4) == 0);
3657 test_truth(rc
== MEMCACHED_SUCCESS
);
3659 /* Test that we can turn it off */
3660 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, NULL
);
3661 test_truth(rc
== MEMCACHED_SUCCESS
);
3663 value
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3664 test_truth(rc
== MEMCACHED_FAILURE
);
3666 /* Now setup for main test */
3667 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, (void *)key
);
3668 test_truth(rc
== MEMCACHED_SUCCESS
);
3670 value
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3671 test_truth(rc
== MEMCACHED_SUCCESS
);
3672 test_truth(memcmp(value
, key
, 4) == 0);
3674 /* Set to Zero, and then Set to something too large */
3677 memset(long_key
, 0, 255);
3679 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, NULL
);
3680 test_truth(rc
== MEMCACHED_SUCCESS
);
3682 value
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3683 test_truth(rc
== MEMCACHED_FAILURE
);
3684 test_truth(value
== NULL
);
3686 /* Test a long key for failure */
3687 /* TODO, extend test to determine based on setting, what result should be */
3688 strcpy(long_key
, "Thisismorethentheallottednumberofcharacters");
3689 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, long_key
);
3690 //test_truth(rc == MEMCACHED_BAD_KEY_PROVIDED);
3691 test_truth(rc
== MEMCACHED_SUCCESS
);
3693 /* Now test a key with spaces (which will fail from long key, since bad key is not set) */
3694 strcpy(long_key
, "This is more then the allotted number of characters");
3695 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, long_key
);
3696 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
3698 /* Test for a bad prefix, but with a short key */
3699 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, 1);
3700 test_truth(rc
== MEMCACHED_SUCCESS
);
3702 strcpy(long_key
, "dog cat");
3703 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, long_key
);
3704 test_truth(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
3707 return TEST_SUCCESS
;
3711 #ifdef MEMCACHED_ENABLE_DEPRECATED
3712 static test_return_t
deprecated_set_memory_alloc(memcached_st
*memc
)
3714 void *test_ptr
= NULL
;
3717 memcached_malloc_fn malloc_cb
=
3718 (memcached_malloc_fn
)my_malloc
;
3719 cb_ptr
= *(void **)&malloc_cb
;
3720 memcached_return_t rc
;
3722 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_MALLOC_FUNCTION
, cb_ptr
);
3723 test_truth(rc
== MEMCACHED_SUCCESS
);
3724 test_ptr
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_MALLOC_FUNCTION
, &rc
);
3725 test_truth(rc
== MEMCACHED_SUCCESS
);
3726 test_truth(test_ptr
== cb_ptr
);
3730 memcached_realloc_fn realloc_cb
=
3731 (memcached_realloc_fn
)my_realloc
;
3732 cb_ptr
= *(void **)&realloc_cb
;
3733 memcached_return_t rc
;
3735 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_REALLOC_FUNCTION
, cb_ptr
);
3736 test_truth(rc
== MEMCACHED_SUCCESS
);
3737 test_ptr
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_REALLOC_FUNCTION
, &rc
);
3738 test_truth(rc
== MEMCACHED_SUCCESS
);
3739 test_truth(test_ptr
== cb_ptr
);
3743 memcached_free_fn free_cb
=
3744 (memcached_free_fn
)my_free
;
3745 cb_ptr
= *(void **)&free_cb
;
3746 memcached_return_t rc
;
3748 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_FREE_FUNCTION
, cb_ptr
);
3749 test_truth(rc
== MEMCACHED_SUCCESS
);
3750 test_ptr
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_FREE_FUNCTION
, &rc
);
3751 test_truth(rc
== MEMCACHED_SUCCESS
);
3752 test_truth(test_ptr
== cb_ptr
);
3755 return TEST_SUCCESS
;
3760 static test_return_t
set_memory_alloc(memcached_st
*memc
)
3762 memcached_return_t rc
;
3763 rc
= memcached_set_memory_allocators(memc
, NULL
, my_free
,
3764 my_realloc
, my_calloc
);
3765 test_truth(rc
== MEMCACHED_FAILURE
);
3767 rc
= memcached_set_memory_allocators(memc
, my_malloc
, my_free
,
3768 my_realloc
, my_calloc
);
3770 memcached_malloc_fn mem_malloc
;
3771 memcached_free_fn mem_free
;
3772 memcached_realloc_fn mem_realloc
;
3773 memcached_calloc_fn mem_calloc
;
3774 memcached_get_memory_allocators(memc
, &mem_malloc
, &mem_free
,
3775 &mem_realloc
, &mem_calloc
);
3777 test_truth(mem_malloc
== my_malloc
);
3778 test_truth(mem_realloc
== my_realloc
);
3779 test_truth(mem_calloc
== my_calloc
);
3780 test_truth(mem_free
== my_free
);
3782 return TEST_SUCCESS
;
3785 static test_return_t
enable_consistent_crc(memcached_st
*memc
)
3788 memcached_server_distribution_t value
= MEMCACHED_DISTRIBUTION_CONSISTENT
;
3789 memcached_hash_t hash
;
3790 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
, value
);
3791 if ((rc
= pre_crc(memc
)) != TEST_SUCCESS
)
3794 value
= (memcached_server_distribution_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
);
3795 test_truth(value
== MEMCACHED_DISTRIBUTION_CONSISTENT
);
3797 hash
= (memcached_hash_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
3799 if (hash
!= MEMCACHED_HASH_CRC
)
3800 return TEST_SKIPPED
;
3802 return TEST_SUCCESS
;
3805 static test_return_t
enable_consistent_hsieh(memcached_st
*memc
)
3808 memcached_server_distribution_t value
= MEMCACHED_DISTRIBUTION_CONSISTENT
;
3809 memcached_hash_t hash
;
3810 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
, value
);
3811 if ((rc
= pre_hsieh(memc
)) != TEST_SUCCESS
)
3814 value
= (memcached_server_distribution_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
);
3815 test_truth(value
== MEMCACHED_DISTRIBUTION_CONSISTENT
);
3817 hash
= (memcached_hash_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
3819 if (hash
!= MEMCACHED_HASH_HSIEH
)
3820 return TEST_SKIPPED
;
3823 return TEST_SUCCESS
;
3826 static test_return_t
enable_cas(memcached_st
*memc
)
3828 unsigned int set
= 1;
3830 memcached_server_instance_st
*instance
=
3831 memcached_server_instance_fetch(memc
, 0);
3833 memcached_version(memc
);
3835 if ((instance
->major_version
>= 1 && (instance
->minor_version
== 2 && instance
->micro_version
>= 4))
3836 || instance
->minor_version
> 2)
3838 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, set
);
3840 return TEST_SUCCESS
;
3843 return TEST_SKIPPED
;
3846 static test_return_t
check_for_1_2_3(memcached_st
*memc
)
3848 memcached_version(memc
);
3849 memcached_server_instance_st
*instance
=
3850 memcached_server_instance_fetch(memc
, 0);
3852 if ((instance
->major_version
>= 1 && (instance
->minor_version
== 2 && instance
->micro_version
>= 4))
3853 || instance
->minor_version
> 2)
3854 return TEST_SUCCESS
;
3856 return TEST_SKIPPED
;
3859 static test_return_t
pre_unix_socket(memcached_st
*memc
)
3861 memcached_return_t rc
;
3864 memcached_servers_reset(memc
);
3866 if (stat("/tmp/memcached.socket", &buf
))
3867 return TEST_SKIPPED
;
3869 rc
= memcached_server_add_unix_socket_with_weight(memc
, "/tmp/memcached.socket", 0);
3871 return ( rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_FAILURE
);
3874 static test_return_t
pre_nodelay(memcached_st
*memc
)
3876 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 0);
3877 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, 0);
3879 return TEST_SUCCESS
;
3882 static test_return_t
pre_settimer(memcached_st
*memc
)
3884 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SND_TIMEOUT
, 1000);
3885 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_RCV_TIMEOUT
, 1000);
3887 return TEST_SUCCESS
;
3890 static test_return_t
poll_timeout(memcached_st
*memc
)
3896 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
, timeout
);
3898 timeout
= (size_t)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
);
3900 test_truth(timeout
== 100);
3902 return TEST_SUCCESS
;
3905 static test_return_t
noreply_test(memcached_st
*memc
)
3907 memcached_return_t ret
;
3908 ret
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 1);
3909 test_truth(ret
== MEMCACHED_SUCCESS
);
3910 ret
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
3911 test_truth(ret
== MEMCACHED_SUCCESS
);
3912 ret
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, 1);
3913 test_truth(ret
== MEMCACHED_SUCCESS
);
3914 test_truth(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NOREPLY
) == 1);
3915 test_truth(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
) == 1);
3916 test_truth(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
) == 1);
3918 for (int count
=0; count
< 5; ++count
)
3920 for (size_t x
= 0; x
< 100; ++x
)
3923 size_t len
= (size_t)sprintf(key
, "%zu", x
);
3927 ret
= memcached_add(memc
, key
, len
, key
, len
, 0, 0);
3930 ret
= memcached_replace(memc
, key
, len
, key
, len
, 0, 0);
3933 ret
= memcached_set(memc
, key
, len
, key
, len
, 0, 0);
3936 ret
= memcached_append(memc
, key
, len
, key
, len
, 0, 0);
3939 ret
= memcached_prepend(memc
, key
, len
, key
, len
, 0, 0);
3945 test_truth(ret
== MEMCACHED_SUCCESS
|| ret
== MEMCACHED_BUFFERED
);
3949 ** NOTE: Don't ever do this in your code! this is not a supported use of the
3950 ** API and is _ONLY_ done this way to verify that the library works the
3951 ** way it is supposed to do!!!!
3954 for (size_t x
= 0; x
< memcached_server_count(memc
); ++x
)
3956 memcached_server_instance_st
*instance
=
3957 memcached_server_instance_fetch(memc
, x
);
3958 no_msg
+=(int)(instance
->cursor_active
);
3961 test_truth(no_msg
== 0);
3962 test_truth(memcached_flush_buffers(memc
) == MEMCACHED_SUCCESS
);
3965 ** Now validate that all items was set properly!
3967 for (size_t x
= 0; x
< 100; ++x
)
3971 size_t len
= (size_t)sprintf(key
, "%zu", x
);
3974 char* value
=memcached_get(memc
, key
, strlen(key
),
3975 &length
, &flags
, &ret
);
3976 test_truth(ret
== MEMCACHED_SUCCESS
&& value
!= NULL
);
3979 case 0: /* FALLTHROUGH */
3980 case 1: /* FALLTHROUGH */
3982 test_truth(strncmp(value
, key
, len
) == 0);
3983 test_truth(len
== length
);
3986 test_truth(length
== len
* 2);
3989 test_truth(length
== len
* 3);
3999 /* Try setting an illegal cas value (should not return an error to
4000 * the caller (because we don't expect a return message from the server)
4002 const char* keys
[]= {"0"};
4003 size_t lengths
[]= {1};
4006 memcached_result_st results_obj
;
4007 memcached_result_st
*results
;
4008 ret
= memcached_mget(memc
, keys
, lengths
, 1);
4009 test_truth(ret
== MEMCACHED_SUCCESS
);
4011 results
= memcached_result_create(memc
, &results_obj
);
4012 test_truth(results
);
4013 results
= memcached_fetch_result(memc
, &results_obj
, &ret
);
4014 test_truth(results
);
4015 test_truth(ret
== MEMCACHED_SUCCESS
);
4016 uint64_t cas
= memcached_result_cas(results
);
4017 memcached_result_free(&results_obj
);
4019 ret
= memcached_cas(memc
, keys
[0], lengths
[0], keys
[0], lengths
[0], 0, 0, cas
);
4020 test_truth(ret
== MEMCACHED_SUCCESS
);
4023 * The item will have a new cas value, so try to set it again with the old
4024 * value. This should fail!
4026 ret
= memcached_cas(memc
, keys
[0], lengths
[0], keys
[0], lengths
[0], 0, 0, cas
);
4027 test_truth(ret
== MEMCACHED_SUCCESS
);
4028 test_truth(memcached_flush_buffers(memc
) == MEMCACHED_SUCCESS
);
4029 char* value
=memcached_get(memc
, keys
[0], lengths
[0], &length
, &flags
, &ret
);
4030 test_truth(ret
== MEMCACHED_SUCCESS
&& value
!= NULL
);
4033 return TEST_SUCCESS
;
4036 static test_return_t
analyzer_test(memcached_st
*memc
)
4038 memcached_return_t rc
;
4039 memcached_stat_st
*memc_stat
;
4040 memcached_analysis_st
*report
;
4042 memc_stat
= memcached_stat(memc
, NULL
, &rc
);
4043 test_truth(rc
== MEMCACHED_SUCCESS
);
4044 test_truth(memc_stat
);
4046 report
= memcached_analyze(memc
, memc_stat
, &rc
);
4047 test_truth(rc
== MEMCACHED_SUCCESS
);
4051 memcached_stat_free(NULL
, memc_stat
);
4053 return TEST_SUCCESS
;
4056 /* Count the objects */
4057 static memcached_return_t
callback_dump_counter(memcached_st
*ptr
__attribute__((unused
)),
4058 const char *key
__attribute__((unused
)),
4059 size_t key_length
__attribute__((unused
)),
4062 size_t *counter
= (size_t *)context
;
4064 *counter
= *counter
+ 1;
4066 return MEMCACHED_SUCCESS
;
4069 static test_return_t
dump_test(memcached_st
*memc
)
4071 memcached_return_t rc
;
4073 memcached_dump_fn callbacks
[1];
4074 test_return_t main_rc
;
4076 callbacks
[0]= &callback_dump_counter
;
4078 /* No support for Binary protocol yet */
4079 if (memc
->flags
.binary_protocol
)
4080 return TEST_SUCCESS
;
4082 main_rc
= set_test3(memc
);
4084 test_truth (main_rc
== TEST_SUCCESS
);
4086 rc
= memcached_dump(memc
, callbacks
, (void *)&counter
, 1);
4087 test_truth(rc
== MEMCACHED_SUCCESS
);
4089 /* We may have more then 32 if our previous flush has not completed */
4090 test_truth(counter
>= 32);
4092 return TEST_SUCCESS
;
4095 #ifdef HAVE_LIBMEMCACHEDUTIL
4096 static void* connection_release(void *arg
)
4099 memcached_pool_st
* pool
;
4104 assert(memcached_pool_push(resource
->pool
, resource
->mmc
) == MEMCACHED_SUCCESS
);
4108 static test_return_t
connection_pool_test(memcached_st
*memc
)
4110 memcached_pool_st
* pool
= memcached_pool_create(memc
, 5, 10);
4111 test_truth(pool
!= NULL
);
4112 memcached_st
* mmc
[10];
4113 memcached_return_t rc
;
4115 for (size_t x
= 0; x
< 10; ++x
)
4117 mmc
[x
]= memcached_pool_pop(pool
, false, &rc
);
4118 test_truth(mmc
[x
] != NULL
);
4119 test_truth(rc
== MEMCACHED_SUCCESS
);
4122 test_truth(memcached_pool_pop(pool
, false, &rc
) == NULL
);
4123 test_truth(rc
== MEMCACHED_SUCCESS
);
4127 memcached_pool_st
* pool
;
4129 } item
= { .pool
= pool
, .mmc
= mmc
[9] };
4130 pthread_create(&tid
, NULL
, connection_release
, &item
);
4131 mmc
[9]= memcached_pool_pop(pool
, true, &rc
);
4132 test_truth(rc
== MEMCACHED_SUCCESS
);
4133 pthread_join(tid
, NULL
);
4134 test_truth(mmc
[9] == item
.mmc
);
4135 const char *key
= "key";
4136 size_t keylen
= strlen(key
);
4138 // verify that I can do ops with all connections
4139 rc
= memcached_set(mmc
[0], key
, keylen
, "0", 1, 0, 0);
4140 test_truth(rc
== MEMCACHED_SUCCESS
);
4142 for (size_t x
= 0; x
< 10; ++x
)
4144 uint64_t number_value
;
4145 rc
= memcached_increment(mmc
[x
], key
, keylen
, 1, &number_value
);
4146 test_truth(rc
== MEMCACHED_SUCCESS
);
4147 test_truth(number_value
== (x
+1));
4151 for (size_t x
= 0; x
< 10; ++x
)
4153 test_truth(memcached_pool_push(pool
, mmc
[x
]) == MEMCACHED_SUCCESS
);
4157 /* verify that I can set behaviors on the pool when I don't have all
4158 * of the connections in the pool. It should however be enabled
4159 * when I push the item into the pool
4161 mmc
[0]= memcached_pool_pop(pool
, false, &rc
);
4162 test_truth(mmc
[0] != NULL
);
4164 rc
= memcached_pool_behavior_set(pool
, MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
, 9999);
4165 test_truth(rc
== MEMCACHED_SUCCESS
);
4167 mmc
[1]= memcached_pool_pop(pool
, false, &rc
);
4168 test_truth(mmc
[1] != NULL
);
4170 test_truth(memcached_behavior_get(mmc
[1], MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
) == 9999);
4171 test_truth(memcached_pool_push(pool
, mmc
[1]) == MEMCACHED_SUCCESS
);
4172 test_truth(memcached_pool_push(pool
, mmc
[0]) == MEMCACHED_SUCCESS
);
4174 mmc
[0]= memcached_pool_pop(pool
, false, &rc
);
4175 test_truth(memcached_behavior_get(mmc
[0], MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
) == 9999);
4176 test_truth(memcached_pool_push(pool
, mmc
[0]) == MEMCACHED_SUCCESS
);
4179 test_truth(memcached_pool_destroy(pool
) == memc
);
4180 return TEST_SUCCESS
;
4184 static test_return_t
replication_set_test(memcached_st
*memc
)
4186 memcached_return_t rc
;
4187 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
4188 memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, 0);
4190 rc
= memcached_set(memc
, "bubba", 5, "0", 1, 0, 0);
4191 test_truth(rc
== MEMCACHED_SUCCESS
);
4194 ** We are using the quiet commands to store the replicas, so we need
4195 ** to ensure that all of them are processed before we can continue.
4196 ** In the test we go directly from storing the object to trying to
4197 ** receive the object from all of the different servers, so we
4198 ** could end up in a race condition (the memcached server hasn't yet
4199 ** processed the quiet command from the replication set when it process
4200 ** the request from the other client (created by the clone)). As a
4201 ** workaround for that we call memcached_quit to send the quit command
4202 ** to the server and wait for the response ;-) If you use the test code
4203 ** as an example for your own code, please note that you shouldn't need
4206 memcached_quit(memc
);
4209 ** "bubba" should now be stored on all of our servers. We don't have an
4210 ** easy to use API to address each individual server, so I'll just iterate
4211 ** through a bunch of "master keys" and I should most likely hit all of the
4214 for (int x
= 'a'; x
<= 'z'; ++x
)
4216 char key
[2]= { [0]= (char)x
};
4219 char *val
= memcached_get_by_key(memc_clone
, key
, 1, "bubba", 5,
4221 test_truth(rc
== MEMCACHED_SUCCESS
);
4222 test_truth(val
!= NULL
);
4226 memcached_free(memc_clone
);
4228 return TEST_SUCCESS
;
4231 static test_return_t
replication_get_test(memcached_st
*memc
)
4233 memcached_return_t rc
;
4236 * Don't do the following in your code. I am abusing the internal details
4237 * within the library, and this is not a supported interface.
4238 * This is to verify correct behavior in the library
4240 for (uint32_t host
= 0; host
< memcached_server_count(memc
); ++host
)
4242 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
4243 memcached_server_instance_st
*instance
=
4244 memcached_server_instance_fetch(memc_clone
, host
);
4248 for (int x
= 'a'; x
<= 'z'; ++x
)
4250 char key
[2]= { [0]= (char)x
};
4253 char *val
= memcached_get_by_key(memc_clone
, key
, 1, "bubba", 5,
4255 test_truth(rc
== MEMCACHED_SUCCESS
);
4256 test_truth(val
!= NULL
);
4260 memcached_free(memc_clone
);
4263 return TEST_SUCCESS
;
4266 static test_return_t
replication_mget_test(memcached_st
*memc
)
4268 memcached_return_t rc
;
4269 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
4270 memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, 0);
4272 const char *keys
[]= { "bubba", "key1", "key2", "key3" };
4273 size_t len
[]= { 5, 4, 4, 4 };
4275 for (size_t x
= 0; x
< 4; ++x
)
4277 rc
= memcached_set(memc
, keys
[x
], len
[x
], "0", 1, 0, 0);
4278 test_truth(rc
== MEMCACHED_SUCCESS
);
4282 ** We are using the quiet commands to store the replicas, so we need
4283 ** to ensure that all of them are processed before we can continue.
4284 ** In the test we go directly from storing the object to trying to
4285 ** receive the object from all of the different servers, so we
4286 ** could end up in a race condition (the memcached server hasn't yet
4287 ** processed the quiet command from the replication set when it process
4288 ** the request from the other client (created by the clone)). As a
4289 ** workaround for that we call memcached_quit to send the quit command
4290 ** to the server and wait for the response ;-) If you use the test code
4291 ** as an example for your own code, please note that you shouldn't need
4294 memcached_quit(memc
);
4297 * Don't do the following in your code. I am abusing the internal details
4298 * within the library, and this is not a supported interface.
4299 * This is to verify correct behavior in the library
4301 memcached_result_st result_obj
;
4302 for (uint32_t host
= 0; host
< memc_clone
->number_of_hosts
; host
++)
4304 memcached_st
*new_clone
= memcached_clone(NULL
, memc
);
4305 memcached_server_instance_st
*instance
=
4306 memcached_server_instance_fetch(new_clone
, host
);
4309 for (int x
= 'a'; x
<= 'z'; ++x
)
4311 const char key
[2]= { [0]= (const char)x
};
4313 rc
= memcached_mget_by_key(new_clone
, key
, 1, keys
, len
, 4);
4314 test_truth(rc
== MEMCACHED_SUCCESS
);
4316 memcached_result_st
*results
= memcached_result_create(new_clone
, &result_obj
);
4317 test_truth(results
);
4320 while ((results
= memcached_fetch_result(new_clone
, &result_obj
, &rc
)) != NULL
)
4324 test_truth(hits
== 4);
4325 memcached_result_free(&result_obj
);
4328 memcached_free(new_clone
);
4331 memcached_free(memc_clone
);
4333 return TEST_SUCCESS
;
4336 static test_return_t
replication_randomize_mget_test(memcached_st
*memc
)
4338 memcached_result_st result_obj
;
4339 memcached_return_t rc
;
4340 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
4341 memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, 3);
4342 memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ
, 1);
4344 const char *keys
[]= { "key1", "key2", "key3", "key4", "key5", "key6", "key7" };
4345 size_t len
[]= { 4, 4, 4, 4, 4, 4, 4 };
4347 for (int x
=0; x
< 7; ++x
)
4349 rc
= memcached_set(memc
, keys
[x
], len
[x
], "1", 1, 0, 0);
4350 test_truth(rc
== MEMCACHED_SUCCESS
);
4353 memcached_quit(memc
);
4355 for (size_t x
= 0; x
< 7; ++x
)
4357 const char key
[2]= { [0]= (const char)x
};
4359 rc
= memcached_mget_by_key(memc_clone
, key
, 1, keys
, len
, 7);
4360 test_truth(rc
== MEMCACHED_SUCCESS
);
4362 memcached_result_st
*results
= memcached_result_create(memc_clone
, &result_obj
);
4363 test_truth(results
);
4366 while ((results
= memcached_fetch_result(memc_clone
, &result_obj
, &rc
)) != NULL
)
4370 test_truth(hits
== 7);
4371 memcached_result_free(&result_obj
);
4373 memcached_free(memc_clone
);
4374 return TEST_SUCCESS
;
4377 static test_return_t
replication_delete_test(memcached_st
*memc
)
4379 memcached_return_t rc
;
4380 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
4381 /* Delete the items from all of the servers except 1 */
4382 uint64_t repl
= memcached_behavior_get(memc
,
4383 MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
);
4384 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, --repl
);
4386 const char *keys
[]= { "bubba", "key1", "key2", "key3" };
4387 size_t len
[]= { 5, 4, 4, 4 };
4389 for (size_t x
= 0; x
< 4; ++x
)
4391 rc
= memcached_delete_by_key(memc
, keys
[0], len
[0], keys
[x
], len
[x
], 0);
4392 test_truth(rc
== MEMCACHED_SUCCESS
);
4396 * Don't do the following in your code. I am abusing the internal details
4397 * within the library, and this is not a supported interface.
4398 * This is to verify correct behavior in the library
4400 uint32_t hash
= memcached_generate_hash(memc
, keys
[0], len
[0]);
4401 for (size_t x
= 0; x
< (repl
+ 1); ++x
)
4403 memcached_server_instance_st
*instance
=
4404 memcached_server_instance_fetch(memc_clone
, x
);
4407 if (++hash
== memc_clone
->number_of_hosts
)
4411 memcached_result_st result_obj
;
4412 for (uint32_t host
= 0; host
< memc_clone
->number_of_hosts
; ++host
)
4414 for (size_t x
= 'a'; x
<= 'z'; ++x
)
4416 const char key
[2]= { [0]= (const char)x
};
4418 rc
= memcached_mget_by_key(memc_clone
, key
, 1, keys
, len
, 4);
4419 test_truth(rc
== MEMCACHED_SUCCESS
);
4421 memcached_result_st
*results
= memcached_result_create(memc_clone
, &result_obj
);
4422 test_truth(results
);
4425 while ((results
= memcached_fetch_result(memc_clone
, &result_obj
, &rc
)) != NULL
)
4429 test_truth(hits
== 4);
4430 memcached_result_free(&result_obj
);
4433 memcached_free(memc_clone
);
4435 return TEST_SUCCESS
;
4438 static void increment_request_id(uint16_t *id
)
4441 if ((*id
& UDP_REQUEST_ID_THREAD_MASK
) != 0)
4445 static uint16_t *get_udp_request_ids(memcached_st
*memc
)
4447 uint16_t *ids
= malloc(sizeof(uint16_t) * memcached_server_count(memc
));
4448 assert(ids
!= NULL
);
4450 for (size_t x
= 0; x
< memcached_server_count(memc
); x
++)
4452 memcached_server_instance_st
*instance
=
4453 memcached_server_instance_fetch(memc
, x
);
4455 ids
[x
]= get_udp_datagram_request_id((struct udp_datagram_header_st
*) instance
->write_buffer
);
4461 static test_return_t
post_udp_op_check(memcached_st
*memc
, uint16_t *expected_req_ids
)
4463 memcached_server_st
*cur_server
= memcached_server_list(memc
);
4464 uint16_t *cur_req_ids
= get_udp_request_ids(memc
);
4466 for (size_t x
= 0; x
< memcached_server_count(memc
); x
++)
4468 test_truth(cur_server
[x
].cursor_active
== 0);
4469 test_truth(cur_req_ids
[x
] == expected_req_ids
[x
]);
4471 free(expected_req_ids
);
4474 return TEST_SUCCESS
;
4478 ** There is a little bit of a hack here, instead of removing
4479 ** the servers, I just set num host to 0 and them add then new udp servers
4481 static test_return_t
init_udp(memcached_st
*memc
)
4483 memcached_version(memc
);
4484 memcached_server_instance_st
*instance
=
4485 memcached_server_instance_fetch(memc
, 0);
4487 /* For the time being, only support udp test for >= 1.2.6 && < 1.3 */
4488 if (instance
->major_version
!= 1 || instance
->minor_version
!= 2
4489 || instance
->micro_version
< 6)
4490 return TEST_SKIPPED
;
4492 uint32_t num_hosts
= memcached_server_count(memc
);
4493 memcached_server_st servers
[num_hosts
];
4494 memcpy(servers
, memcached_server_list(memc
), sizeof(memcached_server_st
) * num_hosts
);
4495 for (size_t x
= 0; x
< num_hosts
; x
++)
4497 memcached_server_instance_st
*set_instance
=
4498 memcached_server_instance_fetch(memc
, x
);
4500 memcached_server_free(set_instance
);
4503 memc
->number_of_hosts
= 0;
4504 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_USE_UDP
, 1);
4505 for (size_t x
= 0; x
< num_hosts
; x
++)
4507 memcached_server_instance_st
*set_instance
=
4508 memcached_server_instance_fetch(memc
, x
);
4510 test_truth(memcached_server_add_udp(memc
, servers
[x
].hostname
, servers
[x
].port
) == MEMCACHED_SUCCESS
);
4511 test_truth(set_instance
->write_buffer_offset
== UDP_DATAGRAM_HEADER_LENGTH
);
4514 return TEST_SUCCESS
;
4517 static test_return_t
binary_init_udp(memcached_st
*memc
)
4519 test_return_t test_rc
;
4520 test_rc
= pre_binary(memc
);
4522 if (test_rc
!= TEST_SUCCESS
)
4525 return init_udp(memc
);
4528 /* Make sure that I cant add a tcp server to a udp client */
4529 static test_return_t
add_tcp_server_udp_client_test(memcached_st
*memc
)
4533 memcached_server_st server
;
4534 memcached_server_instance_st
*instance
=
4535 memcached_server_instance_fetch(memc
, 0);
4536 memcached_server_clone(&server
, &memc
->hosts
[0]);
4537 test_truth(memcached_server_remove(&(memc
->hosts
[0])) == MEMCACHED_SUCCESS
);
4538 test_truth(memcached_server_add(memc
, server
.hostname
, server
.port
) == MEMCACHED_INVALID_HOST_PROTOCOL
);
4540 return TEST_SUCCESS
;
4543 /* Make sure that I cant add a udp server to a tcp client */
4544 static test_return_t
add_udp_server_tcp_client_test(memcached_st
*memc
)
4548 memcached_server_st server
;
4549 memcached_server_instance_st
*instance
=
4550 memcached_server_instance_fetch(memc
, 0);
4551 memcached_server_clone(&server
, &memc
->hosts
[0]);
4552 test_truth(memcached_server_remove(&(memc
->hosts
[0])) == MEMCACHED_SUCCESS
);
4554 memcached_st tcp_client
;
4555 memcached_create(&tcp_client
);
4556 test_truth(memcached_server_add_udp(&tcp_client
, server
.hostname
, server
.port
) == MEMCACHED_INVALID_HOST_PROTOCOL
);
4559 return TEST_SUCCESS
;
4562 static test_return_t
set_udp_behavior_test(memcached_st
*memc
)
4565 memcached_quit(memc
);
4566 memc
->number_of_hosts
= 0;
4567 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
, memc
->distribution
);
4568 test_truth(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_USE_UDP
, 1) == MEMCACHED_SUCCESS
);
4569 test_truth(memc
->flags
.use_udp
);
4570 test_truth(memc
->flags
.no_reply
);
4572 test_truth(memcached_server_count(memc
) == 0);
4574 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_USE_UDP
,0);
4575 test_truth(! (memc
->flags
.use_udp
));
4576 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
,0);
4577 test_truth(! (memc
->flags
.no_reply
));
4579 return TEST_SUCCESS
;
4582 static test_return_t
udp_set_test(memcached_st
*memc
)
4584 unsigned int num_iters
= 1025; //request id rolls over at 1024
4586 for (size_t x
= 0; x
< num_iters
;x
++)
4588 memcached_return_t rc
;
4589 const char *key
= "foo";
4590 const char *value
= "when we sanitize";
4591 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4592 unsigned int server_key
= memcached_generate_hash(memc
, key
, strlen(key
));
4593 memcached_server_instance_st
*instance
=
4594 memcached_server_instance_fetch(memc
, server_key
);
4595 size_t init_offset
= instance
->write_buffer_offset
;
4597 rc
= memcached_set(memc
, key
, strlen(key
),
4598 value
, strlen(value
),
4599 (time_t)0, (uint32_t)0);
4600 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
4601 /** NB, the check below assumes that if new write_ptr is less than
4602 * the original write_ptr that we have flushed. For large payloads, this
4603 * maybe an invalid assumption, but for the small payload we have it is OK
4605 if (rc
== MEMCACHED_SUCCESS
||
4606 instance
->write_buffer_offset
< init_offset
)
4607 increment_request_id(&expected_ids
[server_key
]);
4609 if (rc
== MEMCACHED_SUCCESS
)
4611 test_truth(instance
->write_buffer_offset
== UDP_DATAGRAM_HEADER_LENGTH
);
4615 test_truth(instance
->write_buffer_offset
!= UDP_DATAGRAM_HEADER_LENGTH
);
4616 test_truth(instance
->write_buffer_offset
<= MAX_UDP_DATAGRAM_LENGTH
);
4618 test_truth(post_udp_op_check(memc
, expected_ids
) == TEST_SUCCESS
);
4620 return TEST_SUCCESS
;
4623 static test_return_t
udp_buffered_set_test(memcached_st
*memc
)
4625 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
4626 return udp_set_test(memc
);
4629 static test_return_t
udp_set_too_big_test(memcached_st
*memc
)
4631 memcached_return_t rc
;
4632 const char *key
= "bar";
4633 char value
[MAX_UDP_DATAGRAM_LENGTH
];
4634 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4635 rc
= memcached_set(memc
, key
, strlen(key
),
4636 value
, MAX_UDP_DATAGRAM_LENGTH
,
4637 (time_t)0, (uint32_t)0);
4638 test_truth(rc
== MEMCACHED_WRITE_FAILURE
);
4640 return post_udp_op_check(memc
,expected_ids
);
4643 static test_return_t
udp_delete_test(memcached_st
*memc
)
4645 unsigned int num_iters
= 1025; //request id rolls over at 1024
4647 for (size_t x
= 0; x
< num_iters
;x
++)
4649 memcached_return_t rc
;
4650 const char *key
= "foo";
4651 uint16_t *expected_ids
=get_udp_request_ids(memc
);
4652 unsigned int server_key
= memcached_generate_hash(memc
, key
, strlen(key
));
4653 memcached_server_instance_st
*instance
=
4654 memcached_server_instance_fetch(memc
, server_key
);
4655 size_t init_offset
= instance
->write_buffer_offset
;
4657 rc
= memcached_delete(memc
, key
, strlen(key
), 0);
4658 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
4660 if (rc
== MEMCACHED_SUCCESS
|| instance
->write_buffer_offset
< init_offset
)
4661 increment_request_id(&expected_ids
[server_key
]);
4662 if (rc
== MEMCACHED_SUCCESS
)
4664 test_truth(instance
->write_buffer_offset
== UDP_DATAGRAM_HEADER_LENGTH
);
4668 test_truth(instance
->write_buffer_offset
!= UDP_DATAGRAM_HEADER_LENGTH
);
4669 test_truth(instance
->write_buffer_offset
<= MAX_UDP_DATAGRAM_LENGTH
);
4671 test_truth(post_udp_op_check(memc
,expected_ids
) == TEST_SUCCESS
);
4673 return TEST_SUCCESS
;
4676 static test_return_t
udp_buffered_delete_test(memcached_st
*memc
)
4678 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
4679 return udp_delete_test(memc
);
4682 static test_return_t
udp_verbosity_test(memcached_st
*memc
)
4684 memcached_return_t rc
;
4685 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4687 for (size_t x
= 0; x
< memcached_server_count(memc
); x
++)
4689 increment_request_id(&expected_ids
[x
]);
4692 rc
= memcached_verbosity(memc
,3);
4693 test_truth(rc
== MEMCACHED_SUCCESS
);
4694 return post_udp_op_check(memc
,expected_ids
);
4697 static test_return_t
udp_quit_test(memcached_st
*memc
)
4699 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4700 memcached_quit(memc
);
4701 return post_udp_op_check(memc
, expected_ids
);
4704 static test_return_t
udp_flush_test(memcached_st
*memc
)
4706 memcached_return_t rc
;
4707 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4709 for (size_t x
= 0; x
< memcached_server_count(memc
); x
++)
4711 increment_request_id(&expected_ids
[x
]);
4714 rc
= memcached_flush(memc
,0);
4715 test_truth(rc
== MEMCACHED_SUCCESS
);
4716 return post_udp_op_check(memc
,expected_ids
);
4719 static test_return_t
udp_incr_test(memcached_st
*memc
)
4721 memcached_return_t rc
;
4722 const char *key
= "incr";
4723 const char *value
= "1";
4724 rc
= memcached_set(memc
, key
, strlen(key
),
4725 value
, strlen(value
),
4726 (time_t)0, (uint32_t)0);
4728 test_truth(rc
== MEMCACHED_SUCCESS
);
4729 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4730 unsigned int server_key
= memcached_generate_hash(memc
, key
, strlen(key
));
4731 increment_request_id(&expected_ids
[server_key
]);
4733 rc
= memcached_increment(memc
, key
, strlen(key
), 1, &newvalue
);
4734 test_truth(rc
== MEMCACHED_SUCCESS
);
4735 return post_udp_op_check(memc
, expected_ids
);
4738 static test_return_t
udp_decr_test(memcached_st
*memc
)
4740 memcached_return_t rc
;
4741 const char *key
= "decr";
4742 const char *value
= "1";
4743 rc
= memcached_set(memc
, key
, strlen(key
),
4744 value
, strlen(value
),
4745 (time_t)0, (uint32_t)0);
4747 test_truth(rc
== MEMCACHED_SUCCESS
);
4748 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4749 unsigned int server_key
= memcached_generate_hash(memc
, key
, strlen(key
));
4750 increment_request_id(&expected_ids
[server_key
]);
4752 rc
= memcached_decrement(memc
, key
, strlen(key
), 1, &newvalue
);
4753 test_truth(rc
== MEMCACHED_SUCCESS
);
4754 return post_udp_op_check(memc
, expected_ids
);
4758 static test_return_t
udp_stat_test(memcached_st
*memc
)
4760 memcached_stat_st
* rv
= NULL
;
4761 memcached_return_t rc
;
4763 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4764 rv
= memcached_stat(memc
, args
, &rc
);
4766 test_truth(rc
== MEMCACHED_NOT_SUPPORTED
);
4767 return post_udp_op_check(memc
, expected_ids
);
4770 static test_return_t
udp_version_test(memcached_st
*memc
)
4772 memcached_return_t rc
;
4773 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4774 rc
= memcached_version(memc
);
4775 test_truth(rc
== MEMCACHED_NOT_SUPPORTED
);
4776 return post_udp_op_check(memc
, expected_ids
);
4779 static test_return_t
udp_get_test(memcached_st
*memc
)
4781 memcached_return_t rc
;
4782 const char *key
= "foo";
4784 uint16_t *expected_ids
= get_udp_request_ids(memc
);
4785 char *val
= memcached_get(memc
, key
, strlen(key
), &vlen
, (uint32_t)0, &rc
);
4786 test_truth(rc
== MEMCACHED_NOT_SUPPORTED
);
4787 test_truth(val
== NULL
);
4788 return post_udp_op_check(memc
, expected_ids
);
4791 static test_return_t
udp_mixed_io_test(memcached_st
*memc
)
4794 test_st mixed_io_ops
[] ={
4796 (test_callback_fn
)udp_set_test
},
4797 {"udp_set_too_big_test", 0,
4798 (test_callback_fn
)udp_set_too_big_test
},
4799 {"udp_delete_test", 0,
4800 (test_callback_fn
)udp_delete_test
},
4801 {"udp_verbosity_test", 0,
4802 (test_callback_fn
)udp_verbosity_test
},
4803 {"udp_quit_test", 0,
4804 (test_callback_fn
)udp_quit_test
},
4805 {"udp_flush_test", 0,
4806 (test_callback_fn
)udp_flush_test
},
4807 {"udp_incr_test", 0,
4808 (test_callback_fn
)udp_incr_test
},
4809 {"udp_decr_test", 0,
4810 (test_callback_fn
)udp_decr_test
},
4811 {"udp_version_test", 0,
4812 (test_callback_fn
)udp_version_test
}
4814 for (size_t x
= 0; x
< 500; x
++)
4816 current_op
= mixed_io_ops
[random() % 9];
4817 test_truth(current_op
.test_fn(memc
) == TEST_SUCCESS
);
4819 return TEST_SUCCESS
;
4823 static test_return_t
hash_sanity_test (memcached_st
*memc
)
4827 assert(MEMCACHED_HASH_DEFAULT
== MEMCACHED_HASH_DEFAULT
);
4828 assert(MEMCACHED_HASH_MD5
== MEMCACHED_HASH_MD5
);
4829 assert(MEMCACHED_HASH_CRC
== MEMCACHED_HASH_CRC
);
4830 assert(MEMCACHED_HASH_FNV1_64
== MEMCACHED_HASH_FNV1_64
);
4831 assert(MEMCACHED_HASH_FNV1A_64
== MEMCACHED_HASH_FNV1A_64
);
4832 assert(MEMCACHED_HASH_FNV1_32
== MEMCACHED_HASH_FNV1_32
);
4833 assert(MEMCACHED_HASH_FNV1A_32
== MEMCACHED_HASH_FNV1A_32
);
4834 #ifdef HAVE_HSIEH_HASH
4835 assert(MEMCACHED_HASH_HSIEH
== MEMCACHED_HASH_HSIEH
);
4837 assert(MEMCACHED_HASH_MURMUR
== MEMCACHED_HASH_MURMUR
);
4838 assert(MEMCACHED_HASH_JENKINS
== MEMCACHED_HASH_JENKINS
);
4839 assert(MEMCACHED_HASH_MAX
== MEMCACHED_HASH_MAX
);
4841 return TEST_SUCCESS
;
4845 static test_return_t
hsieh_avaibility_test (memcached_st
*memc
)
4847 memcached_return_t expected_rc
= MEMCACHED_FAILURE
;
4848 #ifdef HAVE_HSIEH_HASH
4849 expected_rc
= MEMCACHED_SUCCESS
;
4851 memcached_return_t rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
,
4852 (uint64_t)MEMCACHED_HASH_HSIEH
);
4853 test_truth(rc
== expected_rc
);
4854 return TEST_SUCCESS
;
4857 static test_return_t
md5_run (memcached_st
*memc
__attribute__((unused
)))
4862 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4866 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_MD5
);
4867 test_truth(md5_values
[x
] == hash_val
);
4870 return TEST_SUCCESS
;
4873 static test_return_t
crc_run (memcached_st
*memc
__attribute__((unused
)))
4878 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4882 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_CRC
);
4883 test_truth(crc_values
[x
] == hash_val
);
4886 return TEST_SUCCESS
;
4889 static test_return_t
fnv1_64_run (memcached_st
*memc
__attribute__((unused
)))
4894 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4898 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1_64
);
4899 test_truth(fnv1_64_values
[x
] == hash_val
);
4902 return TEST_SUCCESS
;
4905 static test_return_t
fnv1a_64_run (memcached_st
*memc
__attribute__((unused
)))
4910 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4914 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1A_64
);
4915 test_truth(fnv1a_64_values
[x
] == hash_val
);
4918 return TEST_SUCCESS
;
4921 static test_return_t
fnv1_32_run (memcached_st
*memc
__attribute__((unused
)))
4927 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4931 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1_32
);
4932 test_truth(fnv1_32_values
[x
] == hash_val
);
4935 return TEST_SUCCESS
;
4938 static test_return_t
fnv1a_32_run (memcached_st
*memc
__attribute__((unused
)))
4943 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4947 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1A_32
);
4948 test_truth(fnv1a_32_values
[x
] == hash_val
);
4951 return TEST_SUCCESS
;
4954 static test_return_t
hsieh_run (memcached_st
*memc
__attribute__((unused
)))
4959 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4963 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_HSIEH
);
4964 test_truth(hsieh_values
[x
] == hash_val
);
4967 return TEST_SUCCESS
;
4970 static test_return_t
murmur_run (memcached_st
*memc
__attribute__((unused
)))
4973 return TEST_SKIPPED
;
4978 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4982 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_MURMUR
);
4983 test_truth(murmur_values
[x
] == hash_val
);
4986 return TEST_SUCCESS
;
4990 static test_return_t
jenkins_run (memcached_st
*memc
__attribute__((unused
)))
4996 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
5000 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_JENKINS
);
5001 test_truth(jenkins_values
[x
] == hash_val
);
5004 return TEST_SUCCESS
;
5008 static test_return_t
ketama_compatibility_libmemcached(memcached_st
*trash
)
5010 memcached_return_t rc
;
5013 memcached_server_st
*server_pool
;
5018 memc
= memcached_create(NULL
);
5021 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
5022 test_truth(rc
== MEMCACHED_SUCCESS
);
5024 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
5025 test_truth(value
== 1);
5027 test_truth(memcached_behavior_set_distribution(memc
, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
) == MEMCACHED_SUCCESS
);
5028 test_truth(memcached_behavior_get_distribution(memc
) == MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
);
5031 server_pool
= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
5032 memcached_server_push(memc
, server_pool
);
5034 /* verify that the server list was parsed okay. */
5035 test_truth(memcached_server_count(memc
) == 8);
5036 test_strcmp(server_pool
[0].hostname
, "10.0.1.1");
5037 test_truth(server_pool
[0].port
== 11211);
5038 test_truth(server_pool
[0].weight
== 600);
5039 test_strcmp(server_pool
[2].hostname
, "10.0.1.3");
5040 test_truth(server_pool
[2].port
== 11211);
5041 test_truth(server_pool
[2].weight
== 200);
5042 test_strcmp(server_pool
[7].hostname
, "10.0.1.8");
5043 test_truth(server_pool
[7].port
== 11211);
5044 test_truth(server_pool
[7].weight
== 100);
5046 /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
5047 * us test the boundary wraparound.
5049 test_truth(memcached_generate_hash(memc
, (char *)"VDEAAAAA", 8) == memc
->continuum
[0].index
);
5051 /* verify the standard ketama set. */
5052 for (x
= 0; x
< 99; x
++)
5054 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
5055 memcached_server_instance_st
*instance
=
5056 memcached_server_instance_fetch(memc
, server_idx
);
5057 char *hostname
= instance
->hostname
;
5059 test_strcmp(hostname
, ketama_test_cases
[x
].server
);
5062 memcached_server_list_free(server_pool
);
5063 memcached_free(memc
);
5065 return TEST_SUCCESS
;
5068 static test_return_t
ketama_compatibility_spymemcached(memcached_st
*trash
)
5070 memcached_return_t rc
;
5073 memcached_server_st
*server_pool
;
5078 memc
= memcached_create(NULL
);
5081 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
5082 test_truth(rc
== MEMCACHED_SUCCESS
);
5084 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
5085 test_truth(value
== 1);
5087 test_truth(memcached_behavior_set_distribution(memc
, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
) == MEMCACHED_SUCCESS
);
5088 test_truth(memcached_behavior_get_distribution(memc
) == MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
);
5090 server_pool
= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
5091 memcached_server_push(memc
, server_pool
);
5093 /* verify that the server list was parsed okay. */
5094 test_truth(memcached_server_count(memc
) == 8);
5095 test_strcmp(server_pool
[0].hostname
, "10.0.1.1");
5096 test_truth(server_pool
[0].port
== 11211);
5097 test_truth(server_pool
[0].weight
== 600);
5098 test_strcmp(server_pool
[2].hostname
, "10.0.1.3");
5099 test_truth(server_pool
[2].port
== 11211);
5100 test_truth(server_pool
[2].weight
== 200);
5101 test_strcmp(server_pool
[7].hostname
, "10.0.1.8");
5102 test_truth(server_pool
[7].port
== 11211);
5103 test_truth(server_pool
[7].weight
== 100);
5105 /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
5106 * us test the boundary wraparound.
5108 test_truth(memcached_generate_hash(memc
, (char *)"VDEAAAAA", 8) == memc
->continuum
[0].index
);
5110 /* verify the standard ketama set. */
5111 for (x
= 0; x
< 99; x
++)
5113 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases_spy
[x
].key
, strlen(ketama_test_cases_spy
[x
].key
));
5114 memcached_server_instance_st
*instance
=
5115 memcached_server_instance_fetch(memc
, server_idx
);
5116 char *hostname
= instance
->hostname
;
5117 test_strcmp(hostname
, ketama_test_cases_spy
[x
].server
);
5120 memcached_server_list_free(server_pool
);
5121 memcached_free(memc
);
5123 return TEST_SUCCESS
;
5126 static test_return_t
regression_bug_434484(memcached_st
*memc
)
5128 test_return_t test_rc
;
5129 test_rc
= pre_binary(memc
);
5131 if (test_rc
!= TEST_SUCCESS
)
5134 memcached_return_t ret
;
5135 const char *key
= "regression_bug_434484";
5136 size_t keylen
= strlen(key
);
5138 ret
= memcached_append(memc
, key
, keylen
, key
, keylen
, 0, 0);
5139 test_truth(ret
== MEMCACHED_NOTSTORED
);
5141 size_t size
= 2048 * 1024;
5142 void *data
= calloc(1, size
);
5143 test_truth(data
!= NULL
);
5144 ret
= memcached_set(memc
, key
, keylen
, data
, size
, 0, 0);
5145 test_truth(ret
== MEMCACHED_E2BIG
);
5148 return TEST_SUCCESS
;
5151 static test_return_t
regression_bug_434843(memcached_st
*memc
)
5153 test_return_t test_rc
;
5154 test_rc
= pre_binary(memc
);
5156 if (test_rc
!= TEST_SUCCESS
)
5159 memcached_return_t rc
;
5161 memcached_execute_fn callbacks
[1]= { [0]= &callback_counter
};
5164 * I only want to hit only _one_ server so I know the number of requests I'm
5165 * sending in the pipleine to the server. Let's try to do a multiget of
5166 * 1024 (that should satisfy most users don't you think?). Future versions
5167 * will include a mget_execute function call if you need a higher number.
5169 uint32_t number_of_hosts
= memcached_server_count(memc
);
5170 memc
->number_of_hosts
= 1;
5171 const size_t max_keys
= 1024;
5172 char **keys
= calloc(max_keys
, sizeof(char*));
5173 size_t *key_length
=calloc(max_keys
, sizeof(size_t));
5175 for (size_t x
= 0; x
< max_keys
; ++x
)
5179 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%zu", x
);
5181 test_truth(keys
[x
] != NULL
);
5185 * Run two times.. the first time we should have 100% cache miss,
5186 * and the second time we should have 100% cache hits
5188 for (size_t y
= 0; y
< 2; y
++)
5190 rc
= memcached_mget(memc
, (const char**)keys
, key_length
, max_keys
);
5191 test_truth(rc
== MEMCACHED_SUCCESS
);
5192 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5196 /* The first iteration should give me a 100% cache miss. verify that*/
5197 char blob
[1024]= { 0 };
5199 test_truth(counter
== 0);
5201 for (size_t x
= 0; x
< max_keys
; ++x
)
5203 rc
= memcached_add(memc
, keys
[x
], key_length
[x
],
5204 blob
, sizeof(blob
), 0, 0);
5205 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5210 /* Verify that we received all of the key/value pairs */
5211 test_truth(counter
== max_keys
);
5215 /* Release allocated resources */
5216 for (size_t x
= 0; x
< max_keys
; ++x
)
5223 memc
->number_of_hosts
= number_of_hosts
;
5225 return TEST_SUCCESS
;
5228 static test_return_t
regression_bug_434843_buffered(memcached_st
*memc
)
5230 memcached_return_t rc
;
5231 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
5232 test_truth(rc
== MEMCACHED_SUCCESS
);
5234 return regression_bug_434843(memc
);
5237 static test_return_t
regression_bug_421108(memcached_st
*memc
)
5239 memcached_return_t rc
;
5240 memcached_stat_st
*memc_stat
= memcached_stat(memc
, NULL
, &rc
);
5241 test_truth(rc
== MEMCACHED_SUCCESS
);
5243 char *bytes
= memcached_stat_get_value(memc
, memc_stat
, "bytes", &rc
);
5244 test_truth(rc
== MEMCACHED_SUCCESS
);
5245 test_truth(bytes
!= NULL
);
5246 char *bytes_read
= memcached_stat_get_value(memc
, memc_stat
,
5248 test_truth(rc
== MEMCACHED_SUCCESS
);
5249 test_truth(bytes_read
!= NULL
);
5251 char *bytes_written
= memcached_stat_get_value(memc
, memc_stat
,
5252 "bytes_written", &rc
);
5253 test_truth(rc
== MEMCACHED_SUCCESS
);
5254 test_truth(bytes_written
!= NULL
);
5256 test_truth(strcmp(bytes
, bytes_read
) != 0);
5257 test_truth(strcmp(bytes
, bytes_written
) != 0);
5259 /* Release allocated resources */
5262 free(bytes_written
);
5263 memcached_stat_free(NULL
, memc_stat
);
5265 return TEST_SUCCESS
;
5269 * The test case isn't obvious so I should probably document why
5270 * it works the way it does. Bug 442914 was caused by a bug
5271 * in the logic in memcached_purge (it did not handle the case
5272 * where the number of bytes sent was equal to the watermark).
5273 * In this test case, create messages so that we hit that case
5274 * and then disable noreply mode and issue a new command to
5275 * verify that it isn't stuck. If we change the format for the
5276 * delete command or the watermarks, we need to update this
5279 static test_return_t
regression_bug_442914(memcached_st
*memc
)
5281 memcached_return_t rc
;
5282 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 1);
5283 test_truth(rc
== MEMCACHED_SUCCESS
);
5284 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, 1);
5286 uint32_t number_of_hosts
= memcached_server_count(memc
);
5287 memc
->number_of_hosts
= 1;
5292 for (int x
= 0; x
< 250; ++x
)
5294 len
= (size_t)snprintf(k
, sizeof(k
), "%0250u", x
);
5295 rc
= memcached_delete(memc
, k
, len
, 0);
5296 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5299 len
= (size_t)snprintf(k
, sizeof(k
), "%037u", 251);
5300 rc
= memcached_delete(memc
, k
, len
, 0);
5301 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5303 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 0);
5304 test_truth(rc
== MEMCACHED_SUCCESS
);
5305 rc
= memcached_delete(memc
, k
, len
, 0);
5306 test_truth(rc
== MEMCACHED_NOTFOUND
);
5308 memc
->number_of_hosts
= number_of_hosts
;
5310 return TEST_SUCCESS
;
5313 static test_return_t
regression_bug_447342(memcached_st
*memc
)
5315 memcached_server_instance_st
*instance_one
;
5316 memcached_server_instance_st
*instance_two
;
5318 if (memcached_server_count(memc
) < 3 || pre_replication(memc
) != MEMCACHED_SUCCESS
)
5319 return TEST_SKIPPED
;
5321 memcached_return_t rc
;
5323 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, 2);
5324 test_truth(rc
== MEMCACHED_SUCCESS
);
5326 const size_t max_keys
= 100;
5327 char **keys
= calloc(max_keys
, sizeof(char*));
5328 size_t *key_length
= calloc(max_keys
, sizeof(size_t));
5330 for (size_t x
= 0; x
< max_keys
; ++x
)
5334 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%zu", x
);
5336 test_truth(keys
[x
] != NULL
);
5337 rc
= memcached_set(memc
, k
, key_length
[x
], k
, key_length
[x
], 0, 0);
5338 test_truth(rc
== MEMCACHED_SUCCESS
);
5342 ** We are using the quiet commands to store the replicas, so we need
5343 ** to ensure that all of them are processed before we can continue.
5344 ** In the test we go directly from storing the object to trying to
5345 ** receive the object from all of the different servers, so we
5346 ** could end up in a race condition (the memcached server hasn't yet
5347 ** processed the quiet command from the replication set when it process
5348 ** the request from the other client (created by the clone)). As a
5349 ** workaround for that we call memcached_quit to send the quit command
5350 ** to the server and wait for the response ;-) If you use the test code
5351 ** as an example for your own code, please note that you shouldn't need
5354 memcached_quit(memc
);
5356 /* Verify that all messages are stored, and we didn't stuff too much
5359 rc
= memcached_mget(memc
, (const char* const *)keys
, key_length
, max_keys
);
5360 test_truth(rc
== MEMCACHED_SUCCESS
);
5363 memcached_execute_fn callbacks
[1]= { [0]= &callback_counter
};
5364 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5365 /* Verify that we received all of the key/value pairs */
5366 test_truth(counter
== max_keys
);
5368 memcached_quit(memc
);
5370 * Don't do the following in your code. I am abusing the internal details
5371 * within the library, and this is not a supported interface.
5372 * This is to verify correct behavior in the library. Fake that two servers
5375 instance_one
= memcached_server_instance_fetch(memc
, 0);
5376 instance_two
= memcached_server_instance_fetch(memc
, 2);
5377 in_port_t port0
= instance_one
->port
;
5378 in_port_t port2
= instance_two
->port
;
5380 instance_one
->port
= 0;
5381 instance_two
->port
= 0;
5383 rc
= memcached_mget(memc
, (const char* const *)keys
, key_length
, max_keys
);
5384 test_truth(rc
== MEMCACHED_SUCCESS
);
5387 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5388 test_truth(counter
== (unsigned int)max_keys
);
5390 /* restore the memc handle */
5391 instance_one
->port
= port0
;
5392 instance_two
->port
= port2
;
5394 memcached_quit(memc
);
5396 /* Remove half of the objects */
5397 for (size_t x
= 0; x
< max_keys
; ++x
)
5401 rc
= memcached_delete(memc
, keys
[x
], key_length
[x
], 0);
5402 test_truth(rc
== MEMCACHED_SUCCESS
);
5406 memcached_quit(memc
);
5407 instance_one
->port
= 0;
5408 instance_two
->port
= 0;
5410 /* now retry the command, this time we should have cache misses */
5411 rc
= memcached_mget(memc
, (const char* const *)keys
, key_length
, max_keys
);
5412 test_truth(rc
== MEMCACHED_SUCCESS
);
5415 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5416 test_truth(counter
== (unsigned int)(max_keys
>> 1));
5418 /* Release allocated resources */
5419 for (size_t x
= 0; x
< max_keys
; ++x
)
5426 /* restore the memc handle */
5427 instance_one
->port
= port0
;
5428 instance_two
->port
= port2
;
5430 return TEST_SUCCESS
;
5433 static test_return_t
regression_bug_463297(memcached_st
*memc
)
5435 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
5436 test_truth(memc_clone
!= NULL
);
5437 test_truth(memcached_version(memc_clone
) == MEMCACHED_SUCCESS
);
5439 memcached_server_instance_st
*instance
=
5440 memcached_server_instance_fetch(memc_clone
, 0);
5442 if (instance
->major_version
> 1 ||
5443 (instance
->major_version
== 1 &&
5444 instance
->minor_version
> 2))
5446 /* Binary protocol doesn't support deferred delete */
5447 memcached_st
*bin_clone
= memcached_clone(NULL
, memc
);
5448 test_truth(bin_clone
!= NULL
);
5449 test_truth(memcached_behavior_set(bin_clone
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1) == MEMCACHED_SUCCESS
);
5450 test_truth(memcached_delete(bin_clone
, "foo", 3, 1) == MEMCACHED_INVALID_ARGUMENTS
);
5451 memcached_free(bin_clone
);
5453 memcached_quit(memc_clone
);
5455 /* If we know the server version, deferred delete should fail
5456 * with invalid arguments */
5457 test_truth(memcached_delete(memc_clone
, "foo", 3, 1) == MEMCACHED_INVALID_ARGUMENTS
);
5459 /* If we don't know the server version, we should get a protocol error */
5460 memcached_return_t rc
= memcached_delete(memc
, "foo", 3, 1);
5462 /* but there is a bug in some of the memcached servers (1.4) that treats
5463 * the counter as noreply so it doesn't send the proper error message
5465 test_truth(rc
== MEMCACHED_PROTOCOL_ERROR
|| rc
== MEMCACHED_NOTFOUND
|| rc
== MEMCACHED_CLIENT_ERROR
);
5467 /* And buffered mode should be disabled and we should get protocol error */
5468 test_truth(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1) == MEMCACHED_SUCCESS
);
5469 rc
= memcached_delete(memc
, "foo", 3, 1);
5470 test_truth(rc
== MEMCACHED_PROTOCOL_ERROR
|| rc
== MEMCACHED_NOTFOUND
|| rc
== MEMCACHED_CLIENT_ERROR
);
5472 /* Same goes for noreply... */
5473 test_truth(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 1) == MEMCACHED_SUCCESS
);
5474 rc
= memcached_delete(memc
, "foo", 3, 1);
5475 test_truth(rc
== MEMCACHED_PROTOCOL_ERROR
|| rc
== MEMCACHED_NOTFOUND
|| rc
== MEMCACHED_CLIENT_ERROR
);
5477 /* but a normal request should go through (and be buffered) */
5478 test_truth((rc
= memcached_delete(memc
, "foo", 3, 0)) == MEMCACHED_BUFFERED
);
5479 test_truth(memcached_flush_buffers(memc
) == MEMCACHED_SUCCESS
);
5481 test_truth(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 0) == MEMCACHED_SUCCESS
);
5482 /* unbuffered noreply should be success */
5483 test_truth(memcached_delete(memc
, "foo", 3, 0) == MEMCACHED_SUCCESS
);
5484 /* unbuffered with reply should be not found... */
5485 test_truth(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 0) == MEMCACHED_SUCCESS
);
5486 test_truth(memcached_delete(memc
, "foo", 3, 0) == MEMCACHED_NOTFOUND
);
5489 memcached_free(memc_clone
);
5490 return TEST_SUCCESS
;
5494 /* Test memcached_server_get_last_disconnect
5495 * For a working server set, shall be NULL
5496 * For a set of non existing server, shall not be NULL
5498 static test_return_t
test_get_last_disconnect(memcached_st
*memc
)
5500 memcached_return_t rc
;
5501 memcached_server_st
*disconnected_server
;
5503 /* With the working set of server */
5504 const char *key
= "marmotte";
5505 const char *value
= "milka";
5507 rc
= memcached_set(memc
, key
, strlen(key
),
5508 value
, strlen(value
),
5509 (time_t)0, (uint32_t)0);
5510 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5512 disconnected_server
= memcached_server_get_last_disconnect(memc
);
5513 test_truth(disconnected_server
== NULL
);
5515 /* With a non existing server */
5517 memcached_server_st
*servers
;
5519 const char *server_list
= "localhost:9";
5521 servers
= memcached_servers_parse(server_list
);
5522 test_truth(servers
);
5523 mine
= memcached_create(NULL
);
5524 rc
= memcached_server_push(mine
, servers
);
5525 test_truth(rc
== MEMCACHED_SUCCESS
);
5526 memcached_server_list_free(servers
);
5529 rc
= memcached_set(mine
, key
, strlen(key
),
5530 value
, strlen(value
),
5531 (time_t)0, (uint32_t)0);
5532 test_truth(rc
!= MEMCACHED_SUCCESS
);
5534 disconnected_server
= memcached_server_get_last_disconnect(mine
);
5535 test_truth(disconnected_server
!= NULL
);
5536 test_truth(disconnected_server
->port
== 9);
5537 test_truth(strncmp(disconnected_server
->hostname
,"localhost",9) == 0);
5539 memcached_quit(mine
);
5540 memcached_free(mine
);
5542 return TEST_SUCCESS
;
5546 * This test ensures that the failure counter isn't incremented during
5547 * normal termination of the memcached instance.
5549 static test_return_t
wrong_failure_counter_test(memcached_st
*memc
)
5551 memcached_return_t rc
;
5552 memcached_server_instance_st
*instance
;
5554 /* Set value to force connection to the server */
5555 const char *key
= "marmotte";
5556 const char *value
= "milka";
5559 * Please note that I'm abusing the internal structures in libmemcached
5560 * in a non-portable way and you shouldn't be doing this. I'm only
5561 * doing this in order to verify that the library works the way it should
5563 uint32_t number_of_hosts
= memcached_server_count(memc
);
5564 memc
->number_of_hosts
= 1;
5566 /* Ensure that we are connected to the server by setting a value */
5567 rc
= memcached_set(memc
, key
, strlen(key
),
5568 value
, strlen(value
),
5569 (time_t)0, (uint32_t)0);
5570 test_truth(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5573 instance
= memcached_server_instance_fetch(memc
, 0);
5574 /* The test is to see that the memcached_quit doesn't increase the
5575 * the server failure conter, so let's ensure that it is zero
5576 * before sending quit
5578 instance
->server_failure_counter
= 0;
5580 memcached_quit(memc
);
5582 /* Verify that it memcached_quit didn't increment the failure counter
5583 * Please note that this isn't bullet proof, because an error could
5586 test_truth(instance
->server_failure_counter
== 0);
5588 /* restore the instance */
5589 memc
->number_of_hosts
= number_of_hosts
;
5591 return TEST_SUCCESS
;
5598 * Test that ensures mget_execute does not end into recursive calls that finally fails
5600 static test_return_t
regression_bug_490486(memcached_st
*memc
)
5602 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
5603 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 1);
5604 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
, 1000);
5605 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
, 1);
5606 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_RETRY_TIMEOUT
, 3600);
5609 * I only want to hit _one_ server so I know the number of requests I'm
5610 * sending in the pipeline.
5612 uint32_t number_of_hosts
= memc
->number_of_hosts
;
5613 memc
->number_of_hosts
= 1;
5614 size_t max_keys
= 20480;
5617 char **keys
= calloc(max_keys
, sizeof(char*));
5618 size_t *key_length
=calloc(max_keys
, sizeof(size_t));
5620 /* First add all of the items.. */
5621 char blob
[1024]= { 0 };
5622 memcached_return rc
;
5623 for (size_t x
= 0; x
< max_keys
; ++x
)
5626 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%zu", x
);
5628 assert(keys
[x
] != NULL
);
5629 rc
= memcached_set(memc
, keys
[x
], key_length
[x
], blob
, sizeof(blob
), 0, 0);
5630 assert(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5633 /* Try to get all of them with a large multiget */
5635 memcached_execute_function callbacks
[1]= { [0]= &callback_counter
};
5636 rc
= memcached_mget_execute(memc
, (const char**)keys
, key_length
,
5637 (size_t)max_keys
, callbacks
, &counter
, 1);
5639 assert(rc
== MEMCACHED_SUCCESS
);
5640 char* the_value
= NULL
;
5641 char the_key
[MEMCACHED_MAX_KEY
];
5642 size_t the_key_length
;
5643 size_t the_value_length
;
5647 the_value
= memcached_fetch(memc
, the_key
, &the_key_length
, &the_value_length
, &the_flags
, &rc
);
5649 if ((the_value
!= NULL
) && (rc
== MEMCACHED_SUCCESS
))
5655 } while ( (the_value
!= NULL
) && (rc
== MEMCACHED_SUCCESS
));
5658 assert(rc
== MEMCACHED_END
);
5660 /* Verify that we got all of the items */
5661 assert(counter
== max_keys
);
5663 /* Release all allocated resources */
5664 for (size_t x
= 0; x
< max_keys
; ++x
)
5671 memc
->number_of_hosts
= number_of_hosts
;
5673 return TEST_SUCCESS
;
5679 test_st udp_setup_server_tests
[] ={
5680 {"set_udp_behavior_test", 0, (test_callback_fn
)set_udp_behavior_test
},
5681 {"add_tcp_server_udp_client_test", 0, (test_callback_fn
)add_tcp_server_udp_client_test
},
5682 {"add_udp_server_tcp_client_test", 0, (test_callback_fn
)add_udp_server_tcp_client_test
},
5686 test_st upd_io_tests
[] ={
5687 {"udp_set_test", 0, (test_callback_fn
)udp_set_test
},
5688 {"udp_buffered_set_test", 0, (test_callback_fn
)udp_buffered_set_test
},
5689 {"udp_set_too_big_test", 0, (test_callback_fn
)udp_set_too_big_test
},
5690 {"udp_delete_test", 0, (test_callback_fn
)udp_delete_test
},
5691 {"udp_buffered_delete_test", 0, (test_callback_fn
)udp_buffered_delete_test
},
5692 {"udp_verbosity_test", 0, (test_callback_fn
)udp_verbosity_test
},
5693 {"udp_quit_test", 0, (test_callback_fn
)udp_quit_test
},
5694 {"udp_flush_test", 0, (test_callback_fn
)udp_flush_test
},
5695 {"udp_incr_test", 0, (test_callback_fn
)udp_incr_test
},
5696 {"udp_decr_test", 0, (test_callback_fn
)udp_decr_test
},
5697 {"udp_stat_test", 0, (test_callback_fn
)udp_stat_test
},
5698 {"udp_version_test", 0, (test_callback_fn
)udp_version_test
},
5699 {"udp_get_test", 0, (test_callback_fn
)udp_get_test
},
5700 {"udp_mixed_io_test", 0, (test_callback_fn
)udp_mixed_io_test
},
5704 /* Clean the server before beginning testing */
5706 {"flush", 0, (test_callback_fn
)flush_test
},
5707 {"init", 0, (test_callback_fn
)init_test
},
5708 {"allocation", 0, (test_callback_fn
)allocation_test
},
5709 {"server_list_null_test", 0, (test_callback_fn
)server_list_null_test
},
5710 {"server_unsort", 0, (test_callback_fn
)server_unsort_test
},
5711 {"server_sort", 0, (test_callback_fn
)server_sort_test
},
5712 {"server_sort2", 0, (test_callback_fn
)server_sort2_test
},
5713 {"clone_test", 0, (test_callback_fn
)clone_test
},
5714 {"connection_test", 0, (test_callback_fn
)connection_test
},
5715 {"callback_test", 0, (test_callback_fn
)callback_test
},
5716 {"userdata_test", 0, (test_callback_fn
)userdata_test
},
5717 {"error", 0, (test_callback_fn
)error_test
},
5718 {"set", 0, (test_callback_fn
)set_test
},
5719 {"set2", 0, (test_callback_fn
)set_test2
},
5720 {"set3", 0, (test_callback_fn
)set_test3
},
5721 {"dump", 1, (test_callback_fn
)dump_test
},
5722 {"add", 1, (test_callback_fn
)add_test
},
5723 {"replace", 1, (test_callback_fn
)replace_test
},
5724 {"delete", 1, (test_callback_fn
)delete_test
},
5725 {"get", 1, (test_callback_fn
)get_test
},
5726 {"get2", 0, (test_callback_fn
)get_test2
},
5727 {"get3", 0, (test_callback_fn
)get_test3
},
5728 {"get4", 0, (test_callback_fn
)get_test4
},
5729 {"partial mget", 0, (test_callback_fn
)get_test5
},
5730 {"stats_servername", 0, (test_callback_fn
)stats_servername_test
},
5731 {"increment", 0, (test_callback_fn
)increment_test
},
5732 {"increment_with_initial", 1, (test_callback_fn
)increment_with_initial_test
},
5733 {"decrement", 0, (test_callback_fn
)decrement_test
},
5734 {"decrement_with_initial", 1, (test_callback_fn
)decrement_with_initial_test
},
5735 {"increment_by_key", 0, (test_callback_fn
)increment_by_key_test
},
5736 {"increment_with_initial_by_key", 1, (test_callback_fn
)increment_with_initial_by_key_test
},
5737 {"decrement_by_key", 0, (test_callback_fn
)decrement_by_key_test
},
5738 {"decrement_with_initial_by_key", 1, (test_callback_fn
)decrement_with_initial_by_key_test
},
5739 {"quit", 0, (test_callback_fn
)quit_test
},
5740 {"mget", 1, (test_callback_fn
)mget_test
},
5741 {"mget_result", 1, (test_callback_fn
)mget_result_test
},
5742 {"mget_result_alloc", 1, (test_callback_fn
)mget_result_alloc_test
},
5743 {"mget_result_function", 1, (test_callback_fn
)mget_result_function
},
5744 {"mget_execute", 1, (test_callback_fn
)mget_execute
},
5745 {"mget_end", 0, (test_callback_fn
)mget_end
},
5746 {"get_stats", 0, (test_callback_fn
)get_stats
},
5747 {"add_host_test", 0, (test_callback_fn
)add_host_test
},
5748 {"add_host_test_1", 0, (test_callback_fn
)add_host_test1
},
5749 {"get_stats_keys", 0, (test_callback_fn
)get_stats_keys
},
5750 {"version_string_test", 0, (test_callback_fn
)version_string_test
},
5751 {"bad_key", 1, (test_callback_fn
)bad_key_test
},
5752 {"memcached_server_cursor", 1, (test_callback_fn
)memcached_server_cursor_test
},
5753 {"read_through", 1, (test_callback_fn
)read_through
},
5754 {"delete_through", 1, (test_callback_fn
)delete_through
},
5755 {"noreply", 1, (test_callback_fn
)noreply_test
},
5756 {"analyzer", 1, (test_callback_fn
)analyzer_test
},
5757 #ifdef HAVE_LIBMEMCACHEDUTIL
5758 {"connectionpool", 1, (test_callback_fn
)connection_pool_test
},
5760 {"test_get_last_disconnect", 1, (test_callback_fn
)test_get_last_disconnect
},
5764 test_st behavior_tests
[] ={
5765 {"behavior_test", 0, (test_callback_fn
)behavior_test
},
5769 test_st async_tests
[] ={
5770 {"add", 1, (test_callback_fn
)add_wrapper
},
5774 test_st string_tests
[] ={
5775 {"string static with null", 0, (test_callback_fn
)string_static_null
},
5776 {"string alloc with null", 0, (test_callback_fn
)string_alloc_null
},
5777 {"string alloc with 1K", 0, (test_callback_fn
)string_alloc_with_size
},
5778 {"string alloc with malloc failure", 0, (test_callback_fn
)string_alloc_with_size_toobig
},
5779 {"string append", 0, (test_callback_fn
)string_alloc_append
},
5780 {"string append failure (too big)", 0, (test_callback_fn
)string_alloc_append_toobig
},
5781 {0, 0, (test_callback_fn
)0}
5784 test_st result_tests
[] ={
5785 {"result static", 0, (test_callback_fn
)result_static
},
5786 {"result alloc", 0, (test_callback_fn
)result_alloc
},
5787 {0, 0, (test_callback_fn
)0}
5790 test_st version_1_2_3
[] ={
5791 {"append", 0, (test_callback_fn
)append_test
},
5792 {"prepend", 0, (test_callback_fn
)prepend_test
},
5793 {"cas", 0, (test_callback_fn
)cas_test
},
5794 {"cas2", 0, (test_callback_fn
)cas2_test
},
5795 {"append_binary", 0, (test_callback_fn
)append_binary_test
},
5796 {0, 0, (test_callback_fn
)0}
5799 test_st user_tests
[] ={
5800 {"user_supplied_bug1", 0, (test_callback_fn
)user_supplied_bug1
},
5801 {"user_supplied_bug2", 0, (test_callback_fn
)user_supplied_bug2
},
5802 {"user_supplied_bug3", 0, (test_callback_fn
)user_supplied_bug3
},
5803 {"user_supplied_bug4", 0, (test_callback_fn
)user_supplied_bug4
},
5804 {"user_supplied_bug5", 1, (test_callback_fn
)user_supplied_bug5
},
5805 {"user_supplied_bug6", 1, (test_callback_fn
)user_supplied_bug6
},
5806 {"user_supplied_bug7", 1, (test_callback_fn
)user_supplied_bug7
},
5807 {"user_supplied_bug8", 1, (test_callback_fn
)user_supplied_bug8
},
5808 {"user_supplied_bug9", 1, (test_callback_fn
)user_supplied_bug9
},
5809 {"user_supplied_bug10", 1, (test_callback_fn
)user_supplied_bug10
},
5810 {"user_supplied_bug11", 1, (test_callback_fn
)user_supplied_bug11
},
5811 {"user_supplied_bug12", 1, (test_callback_fn
)user_supplied_bug12
},
5812 {"user_supplied_bug13", 1, (test_callback_fn
)user_supplied_bug13
},
5813 {"user_supplied_bug14", 1, (test_callback_fn
)user_supplied_bug14
},
5814 {"user_supplied_bug15", 1, (test_callback_fn
)user_supplied_bug15
},
5815 {"user_supplied_bug16", 1, (test_callback_fn
)user_supplied_bug16
},
5818 ** It seems to be something weird with the character sets..
5819 ** value_fetch is unable to parse the value line (iscntrl "fails"), so I
5820 ** guess I need to find out how this is supposed to work.. Perhaps I need
5821 ** to run the test in a specific locale (I tried zh_CN.UTF-8 without success,
5822 ** so just disable the code for now...).
5824 {"user_supplied_bug17", 1, (test_callback_fn
)user_supplied_bug17
},
5826 {"user_supplied_bug18", 1, (test_callback_fn
)user_supplied_bug18
},
5827 {"user_supplied_bug19", 1, (test_callback_fn
)user_supplied_bug19
},
5828 {"user_supplied_bug20", 1, (test_callback_fn
)user_supplied_bug20
},
5829 {"user_supplied_bug21", 1, (test_callback_fn
)user_supplied_bug21
},
5830 {"wrong_failure_counter_test", 1, (test_callback_fn
)wrong_failure_counter_test
},
5831 {0, 0, (test_callback_fn
)0}
5834 test_st replication_tests
[]= {
5835 {"set", 1, (test_callback_fn
)replication_set_test
},
5836 {"get", 0, (test_callback_fn
)replication_get_test
},
5837 {"mget", 0, (test_callback_fn
)replication_mget_test
},
5838 {"delete", 0, (test_callback_fn
)replication_delete_test
},
5839 {"rand_mget", 0, (test_callback_fn
)replication_randomize_mget_test
},
5840 {0, 0, (test_callback_fn
)0}
5844 * The following test suite is used to verify that we don't introduce
5845 * regression bugs. If you want more information about the bug / test,
5846 * you should look in the bug report at
5847 * http://bugs.launchpad.net/libmemcached
5849 test_st regression_tests
[]= {
5850 {"lp:434484", 1, (test_callback_fn
)regression_bug_434484
},
5851 {"lp:434843", 1, (test_callback_fn
)regression_bug_434843
},
5852 {"lp:434843 buffered", 1, (test_callback_fn
)regression_bug_434843_buffered
},
5853 {"lp:421108", 1, (test_callback_fn
)regression_bug_421108
},
5854 {"lp:442914", 1, (test_callback_fn
)regression_bug_442914
},
5855 {"lp:447342", 1, (test_callback_fn
)regression_bug_447342
},
5856 {"lp:463297", 1, (test_callback_fn
)regression_bug_463297
},
5857 {"lp:490486", 1, (test_callback_fn
)regression_bug_490486
},
5858 {0, 0, (test_callback_fn
)0}
5861 test_st ketama_compatibility
[]= {
5862 {"libmemcached", 1, (test_callback_fn
)ketama_compatibility_libmemcached
},
5863 {"spymemcached", 1, (test_callback_fn
)ketama_compatibility_spymemcached
},
5864 {0, 0, (test_callback_fn
)0}
5867 test_st generate_tests
[] ={
5868 {"generate_pairs", 1, (test_callback_fn
)generate_pairs
},
5869 {"generate_data", 1, (test_callback_fn
)generate_data
},
5870 {"get_read", 0, (test_callback_fn
)get_read
},
5871 {"delete_generate", 0, (test_callback_fn
)delete_generate
},
5872 {"generate_buffer_data", 1, (test_callback_fn
)generate_buffer_data
},
5873 {"delete_buffer", 0, (test_callback_fn
)delete_buffer_generate
},
5874 {"generate_data", 1, (test_callback_fn
)generate_data
},
5875 {"mget_read", 0, (test_callback_fn
)mget_read
},
5876 {"mget_read_result", 0, (test_callback_fn
)mget_read_result
},
5877 {"mget_read_function", 0, (test_callback_fn
)mget_read_function
},
5878 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
5879 {"generate_large_pairs", 1, (test_callback_fn
)generate_large_pairs
},
5880 {"generate_data", 1, (test_callback_fn
)generate_data
},
5881 {"generate_buffer_data", 1, (test_callback_fn
)generate_buffer_data
},
5882 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
5883 {0, 0, (test_callback_fn
)0}
5886 test_st consistent_tests
[] ={
5887 {"generate_pairs", 1, (test_callback_fn
)generate_pairs
},
5888 {"generate_data", 1, (test_callback_fn
)generate_data
},
5889 {"get_read", 0, (test_callback_fn
)get_read_count
},
5890 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
5891 {0, 0, (test_callback_fn
)0}
5894 test_st consistent_weighted_tests
[] ={
5895 {"generate_pairs", 1, (test_callback_fn
)generate_pairs
},
5896 {"generate_data", 1, (test_callback_fn
)generate_data_with_stats
},
5897 {"get_read", 0, (test_callback_fn
)get_read_count
},
5898 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
5899 {0, 0, (test_callback_fn
)0}
5902 test_st hsieh_availability
[] ={
5903 {"hsieh_avaibility_test", 0, (test_callback_fn
)hsieh_avaibility_test
},
5904 {0, 0, (test_callback_fn
)0}
5908 test_st hash_sanity
[] ={
5909 {"hash sanity", 0, (test_callback_fn
)hash_sanity_test
},
5910 {0, 0, (test_callback_fn
)0}
5914 test_st ketama_auto_eject_hosts
[] ={
5915 {"auto_eject_hosts", 1, (test_callback_fn
)auto_eject_hosts
},
5916 {"output_ketama_weighted_keys", 1, (test_callback_fn
)output_ketama_weighted_keys
},
5917 {0, 0, (test_callback_fn
)0}
5920 test_st hash_tests
[] ={
5921 {"md5", 0, (test_callback_fn
)md5_run
},
5922 {"crc", 0, (test_callback_fn
)crc_run
},
5923 {"fnv1_64", 0, (test_callback_fn
)fnv1_64_run
},
5924 {"fnv1a_64", 0, (test_callback_fn
)fnv1a_64_run
},
5925 {"fnv1_32", 0, (test_callback_fn
)fnv1_32_run
},
5926 {"fnv1a_32", 0, (test_callback_fn
)fnv1a_32_run
},
5927 {"hsieh", 0, (test_callback_fn
)hsieh_run
},
5928 {"murmur", 0, (test_callback_fn
)murmur_run
},
5929 {"jenkis", 0, (test_callback_fn
)jenkins_run
},
5930 {0, 0, (test_callback_fn
)0}
5933 collection_st collection
[] ={
5935 {"hash_sanity", 0, 0, hash_sanity
},
5937 {"hsieh_availability", 0, 0, hsieh_availability
},
5938 {"udp_setup", (test_callback_fn
)init_udp
, 0, udp_setup_server_tests
},
5939 {"udp_io", (test_callback_fn
)init_udp
, 0, upd_io_tests
},
5940 {"udp_binary_io", (test_callback_fn
)binary_init_udp
, 0, upd_io_tests
},
5941 {"block", 0, 0, tests
},
5942 {"binary", (test_callback_fn
)pre_binary
, 0, tests
},
5943 {"nonblock", (test_callback_fn
)pre_nonblock
, 0, tests
},
5944 {"nodelay", (test_callback_fn
)pre_nodelay
, 0, tests
},
5945 {"settimer", (test_callback_fn
)pre_settimer
, 0, tests
},
5946 {"md5", (test_callback_fn
)pre_md5
, 0, tests
},
5947 {"crc", (test_callback_fn
)pre_crc
, 0, tests
},
5948 {"hsieh", (test_callback_fn
)pre_hsieh
, 0, tests
},
5949 {"jenkins", (test_callback_fn
)pre_jenkins
, 0, tests
},
5950 {"fnv1_64", (test_callback_fn
)pre_hash_fnv1_64
, 0, tests
},
5951 {"fnv1a_64", (test_callback_fn
)pre_hash_fnv1a_64
, 0, tests
},
5952 {"fnv1_32", (test_callback_fn
)pre_hash_fnv1_32
, 0, tests
},
5953 {"fnv1a_32", (test_callback_fn
)pre_hash_fnv1a_32
, 0, tests
},
5954 {"ketama", (test_callback_fn
)pre_behavior_ketama
, 0, tests
},
5955 {"ketama_auto_eject_hosts", (test_callback_fn
)pre_behavior_ketama
, 0, ketama_auto_eject_hosts
},
5956 {"unix_socket", (test_callback_fn
)pre_unix_socket
, 0, tests
},
5957 {"unix_socket_nodelay", (test_callback_fn
)pre_nodelay
, 0, tests
},
5958 {"poll_timeout", (test_callback_fn
)poll_timeout
, 0, tests
},
5959 {"gets", (test_callback_fn
)enable_cas
, 0, tests
},
5960 {"consistent_crc", (test_callback_fn
)enable_consistent_crc
, 0, tests
},
5961 {"consistent_hsieh", (test_callback_fn
)enable_consistent_hsieh
, 0, tests
},
5962 #ifdef MEMCACHED_ENABLE_DEPRECATED
5963 {"deprecated_memory_allocators", (test_callback_fn
)deprecated_set_memory_alloc
, 0, tests
},
5965 {"memory_allocators", (test_callback_fn
)set_memory_alloc
, 0, tests
},
5966 {"prefix", (test_callback_fn
)set_prefix
, 0, tests
},
5967 {"version_1_2_3", (test_callback_fn
)check_for_1_2_3
, 0, version_1_2_3
},
5968 {"string", 0, 0, string_tests
},
5969 {"result", 0, 0, result_tests
},
5970 {"async", (test_callback_fn
)pre_nonblock
, 0, async_tests
},
5971 {"async_binary", (test_callback_fn
)pre_nonblock_binary
, 0, async_tests
},
5972 {"user", 0, 0, user_tests
},
5973 {"generate", 0, 0, generate_tests
},
5974 {"generate_hsieh", (test_callback_fn
)pre_hsieh
, 0, generate_tests
},
5975 {"generate_ketama", (test_callback_fn
)pre_behavior_ketama
, 0, generate_tests
},
5976 {"generate_hsieh_consistent", (test_callback_fn
)enable_consistent_hsieh
, 0, generate_tests
},
5977 {"generate_md5", (test_callback_fn
)pre_md5
, 0, generate_tests
},
5978 {"generate_murmur", (test_callback_fn
)pre_murmur
, 0, generate_tests
},
5979 {"generate_jenkins", (test_callback_fn
)pre_jenkins
, 0, generate_tests
},
5980 {"generate_nonblock", (test_callback_fn
)pre_nonblock
, 0, generate_tests
},
5981 {"consistent_not", 0, 0, consistent_tests
},
5982 {"consistent_ketama", (test_callback_fn
)pre_behavior_ketama
, 0, consistent_tests
},
5983 {"consistent_ketama_weighted", (test_callback_fn
)pre_behavior_ketama_weighted
, 0, consistent_weighted_tests
},
5984 {"ketama_compat", 0, 0, ketama_compatibility
},
5985 {"test_hashes", 0, 0, hash_tests
},
5986 {"replication", (test_callback_fn
)pre_replication
, 0, replication_tests
},
5987 {"replication_noblock", (test_callback_fn
)pre_replication_noblock
, 0, replication_tests
},
5988 {"regression", 0, 0, regression_tests
},
5989 {"behaviors", 0, 0, behavior_tests
},
5993 #define SERVERS_TO_CREATE 5
5995 #include "libmemcached_world.h"
5997 void get_world(world_st
*world
)
5999 world
->collections
= collection
;
6001 world
->create
= (test_callback_create_fn
)world_create
;
6002 world
->destroy
= (test_callback_fn
)world_destroy
;
6004 world
->test
.startup
= (test_callback_fn
)world_test_startup
;
6005 world
->test
.flush
= (test_callback_fn
)world_flush
;
6006 world
->test
.pre_run
= (test_callback_fn
)world_pre_run
;
6007 world
->test
.post_run
= (test_callback_fn
)world_post_run
;
6008 world
->test
.on_error
= (test_callback_error_fn
)world_on_error
;
6010 world
->collection
.startup
= (test_callback_fn
)world_container_startup
;
6011 world
->collection
.shutdown
= (test_callback_fn
)world_container_shutdown
;
6013 world
->runner
= &defualt_libmemcached_runner
;