1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 Sample test application.
56 #include <sys/types.h>
59 #include "libmemcached/common.h"
61 #include <libtest/server.h>
63 #include "clients/generator.h"
64 #include "clients/execute.h"
66 #define SMALL_STRING_LEN 1024
68 #include <libtest/test.h>
69 #include "tests/deprecated.h"
70 #include "tests/parser.h"
71 #include "tests/pool.h"
72 #include "tests/string.h"
73 #include "tests/replication.h"
74 #include "tests/basic.h"
75 #include "tests/error_conditions.h"
76 #include "tests/print.h"
77 #include "tests/virtual_buckets.h"
80 #ifdef HAVE_LIBMEMCACHEDUTIL
82 #include "libmemcached/memcached_util.h"
85 #include "hash_results.h"
87 #define GLOBAL_COUNT 10000
88 #define GLOBAL2_COUNT 100
89 #define SERVERS_TO_CREATE 5
90 static uint32_t global_count
;
92 static pairs_st
*global_pairs
;
93 static const char *global_keys
[GLOBAL_COUNT
];
94 static size_t global_keys_length
[GLOBAL_COUNT
];
97 static test_return_t
pre_binary(memcached_st
*memc
);
100 static test_return_t
init_test(memcached_st
*not_used
)
105 (void)memcached_create(&memc
);
106 memcached_free(&memc
);
111 #define TEST_PORT_COUNT 7
112 in_port_t test_ports
[TEST_PORT_COUNT
];
114 static memcached_return_t
server_display_function(const memcached_st
*ptr
,
115 const memcached_server_st
*server
,
119 size_t bigger
= *((size_t *)(context
));
121 assert(bigger
<= memcached_server_port(server
));
122 *((size_t *)(context
))= memcached_server_port(server
);
124 return MEMCACHED_SUCCESS
;
127 static memcached_return_t
dump_server_information(const memcached_st
*ptr
,
128 const memcached_server_st
*instance
,
132 FILE *stream
= (FILE *)context
;
135 fprintf(stream
, "Memcached Server: %s %u Version %u.%u.%u\n",
136 memcached_server_name(instance
),
137 memcached_server_port(instance
),
138 instance
->major_version
,
139 instance
->minor_version
,
140 instance
->micro_version
);
142 return MEMCACHED_SUCCESS
;
145 static test_return_t
server_sort_test(memcached_st
*ptr
)
147 size_t bigger
= 0; /* Prime the value for the test_true in server_display_function */
149 memcached_return_t rc
;
150 memcached_server_fn callbacks
[1];
151 memcached_st
*local_memc
;
154 local_memc
= memcached_create(NULL
);
155 test_true(local_memc
);
156 memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SORT_HOSTS
, 1);
158 for (size_t x
= 0; x
< TEST_PORT_COUNT
; x
++)
160 test_ports
[x
]= (in_port_t
)random() % 64000;
161 rc
= memcached_server_add_with_weight(local_memc
, "localhost", test_ports
[x
], 0);
162 test_true(memcached_server_count(local_memc
) == x
+ 1);
164 test_true(memcached_server_list_count(memcached_server_list(local_memc
)) == x
+1);
166 test_true(rc
== MEMCACHED_SUCCESS
);
169 callbacks
[0]= server_display_function
;
170 memcached_server_cursor(local_memc
, callbacks
, (void *)&bigger
, 1);
173 memcached_free(local_memc
);
178 static test_return_t
server_sort2_test(memcached_st
*ptr
)
180 size_t bigger
= 0; /* Prime the value for the test_true in server_display_function */
181 memcached_return_t rc
;
182 memcached_server_fn callbacks
[1];
183 memcached_st
*local_memc
;
184 memcached_server_instance_st instance
;
187 local_memc
= memcached_create(NULL
);
188 test_true(local_memc
);
189 rc
= memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SORT_HOSTS
, 1);
190 test_true(rc
== MEMCACHED_SUCCESS
);
192 rc
= memcached_server_add_with_weight(local_memc
, "MEMCACHED_BEHAVIOR_SORT_HOSTS", 43043, 0);
193 test_true(rc
== MEMCACHED_SUCCESS
);
194 instance
= memcached_server_instance_by_position(local_memc
, 0);
195 test_true(memcached_server_port(instance
) == 43043);
197 rc
= memcached_server_add_with_weight(local_memc
, "MEMCACHED_BEHAVIOR_SORT_HOSTS", 43042, 0);
198 test_true(rc
== MEMCACHED_SUCCESS
);
200 instance
= memcached_server_instance_by_position(local_memc
, 0);
201 test_true(memcached_server_port(instance
) == 43042);
203 instance
= memcached_server_instance_by_position(local_memc
, 1);
204 test_true(memcached_server_port(instance
) == 43043);
206 callbacks
[0]= server_display_function
;
207 memcached_server_cursor(local_memc
, callbacks
, (void *)&bigger
, 1);
210 memcached_free(local_memc
);
215 static test_return_t
memcached_server_remove_test(memcached_st
*ptr
)
217 const char *server_string
= "--server=localhost:4444 --server=localhost:4445 --server=localhost:4446 --server=localhost:4447 --server=localhost --server=memcache1.memcache.bk.sapo.pt:11211 --server=memcache1.memcache.bk.sapo.pt:11212 --server=memcache1.memcache.bk.sapo.pt:11213 --server=memcache1.memcache.bk.sapo.pt:11214 --server=memcache2.memcache.bk.sapo.pt:11211 --server=memcache2.memcache.bk.sapo.pt:11212 --server=memcache2.memcache.bk.sapo.pt:11213 --server=memcache2.memcache.bk.sapo.pt:11214";
220 memcached_st
*memc
= memcached(server_string
, strlen(server_string
));
223 memcached_server_fn callbacks
[1];
224 callbacks
[0]= server_print_callback
;
225 memcached_server_cursor(memc
, callbacks
, NULL
, 1);
227 memcached_free(memc
);
232 static memcached_return_t
server_display_unsort_function(const memcached_st
*ptr
,
233 const memcached_server_st
*server
,
237 uint32_t x
= *((uint32_t *)(context
));
240 if (! (test_ports
[x
] == server
->port
))
242 fprintf(stderr
, "%lu -> %lu\n", (unsigned long)test_ports
[x
], (unsigned long)server
->port
);
243 return MEMCACHED_FAILURE
;
246 *((uint32_t *)(context
))= ++x
;
248 return MEMCACHED_SUCCESS
;
251 static test_return_t
server_unsort_test(memcached_st
*ptr
)
253 size_t counter
= 0; /* Prime the value for the test_true in server_display_function */
254 size_t bigger
= 0; /* Prime the value for the test_true in server_display_function */
255 memcached_return_t rc
;
256 memcached_server_fn callbacks
[1];
257 memcached_st
*local_memc
;
260 local_memc
= memcached_create(NULL
);
261 test_true(local_memc
);
263 for (size_t x
= 0; x
< TEST_PORT_COUNT
; x
++)
265 test_ports
[x
]= (in_port_t
)(random() % 64000);
266 rc
= memcached_server_add_with_weight(local_memc
, "localhost", test_ports
[x
], 0);
267 test_true(memcached_server_count(local_memc
) == x
+1);
269 test_true(memcached_server_list_count(memcached_server_list(local_memc
)) == x
+1);
271 test_true(rc
== MEMCACHED_SUCCESS
);
274 callbacks
[0]= server_display_unsort_function
;
275 memcached_server_cursor(local_memc
, callbacks
, (void *)&counter
, 1);
277 /* Now we sort old data! */
278 memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SORT_HOSTS
, 1);
279 callbacks
[0]= server_display_function
;
280 memcached_server_cursor(local_memc
, callbacks
, (void *)&bigger
, 1);
283 memcached_free(local_memc
);
288 static test_return_t
allocation_test(memcached_st
*not_used
)
292 memc
= memcached_create(NULL
);
294 memcached_free(memc
);
299 static test_return_t
clone_test(memcached_st
*memc
)
303 memcached_st
*memc_clone
;
304 memc_clone
= memcached_clone(NULL
, NULL
);
305 test_true(memc_clone
);
306 memcached_free(memc_clone
);
309 /* Can we init from null? */
311 memcached_st
*memc_clone
;
312 memc_clone
= memcached_clone(NULL
, memc
);
313 test_true(memc_clone
);
316 test_true(memc_clone
->allocators
.free
== memc
->allocators
.free
);
317 test_true(memc_clone
->allocators
.malloc
== memc
->allocators
.malloc
);
318 test_true(memc_clone
->allocators
.realloc
== memc
->allocators
.realloc
);
319 test_true(memc_clone
->allocators
.calloc
== memc
->allocators
.calloc
);
322 test_true(memc_clone
->connect_timeout
== memc
->connect_timeout
);
323 test_true(memc_clone
->delete_trigger
== memc
->delete_trigger
);
324 test_true(memc_clone
->distribution
== memc
->distribution
);
325 { // Test all of the flags
326 test_true(memc_clone
->flags
.no_block
== memc
->flags
.no_block
);
327 test_true(memc_clone
->flags
.tcp_nodelay
== memc
->flags
.tcp_nodelay
);
328 test_true(memc_clone
->flags
.support_cas
== memc
->flags
.support_cas
);
329 test_true(memc_clone
->flags
.buffer_requests
== memc
->flags
.buffer_requests
);
330 test_true(memc_clone
->flags
.use_sort_hosts
== memc
->flags
.use_sort_hosts
);
331 test_true(memc_clone
->flags
.verify_key
== memc
->flags
.verify_key
);
332 test_true(memc_clone
->ketama
.weighted
== memc
->ketama
.weighted
);
333 test_true(memc_clone
->flags
.binary_protocol
== memc
->flags
.binary_protocol
);
334 test_true(memc_clone
->flags
.hash_with_prefix_key
== memc
->flags
.hash_with_prefix_key
);
335 test_true(memc_clone
->flags
.no_reply
== memc
->flags
.no_reply
);
336 test_true(memc_clone
->flags
.use_udp
== memc
->flags
.use_udp
);
337 test_true(memc_clone
->flags
.auto_eject_hosts
== memc
->flags
.auto_eject_hosts
);
338 test_true(memc_clone
->flags
.randomize_replica_read
== memc
->flags
.randomize_replica_read
);
340 test_true(memc_clone
->get_key_failure
== memc
->get_key_failure
);
341 test_true(hashkit_compare(&memc_clone
->hashkit
, &memc
->hashkit
));
342 test_true(memc_clone
->io_bytes_watermark
== memc
->io_bytes_watermark
);
343 test_true(memc_clone
->io_msg_watermark
== memc
->io_msg_watermark
);
344 test_true(memc_clone
->io_key_prefetch
== memc
->io_key_prefetch
);
345 test_true(memc_clone
->on_cleanup
== memc
->on_cleanup
);
346 test_true(memc_clone
->on_clone
== memc
->on_clone
);
347 test_true(memc_clone
->poll_timeout
== memc
->poll_timeout
);
348 test_true(memc_clone
->rcv_timeout
== memc
->rcv_timeout
);
349 test_true(memc_clone
->recv_size
== memc
->recv_size
);
350 test_true(memc_clone
->retry_timeout
== memc
->retry_timeout
);
351 test_true(memc_clone
->send_size
== memc
->send_size
);
352 test_true(memc_clone
->server_failure_limit
== memc
->server_failure_limit
);
353 test_true(memc_clone
->snd_timeout
== memc
->snd_timeout
);
354 test_true(memc_clone
->user_data
== memc
->user_data
);
356 memcached_free(memc_clone
);
359 /* Can we init from struct? */
361 memcached_st declared_clone
;
362 memcached_st
*memc_clone
;
363 memset(&declared_clone
, 0 , sizeof(memcached_st
));
364 memc_clone
= memcached_clone(&declared_clone
, NULL
);
365 test_true(memc_clone
);
366 memcached_free(memc_clone
);
369 /* Can we init from struct? */
371 memcached_st declared_clone
;
372 memcached_st
*memc_clone
;
373 memset(&declared_clone
, 0 , sizeof(memcached_st
));
374 memc_clone
= memcached_clone(&declared_clone
, memc
);
375 test_true(memc_clone
);
376 memcached_free(memc_clone
);
382 static test_return_t
userdata_test(memcached_st
*memc
)
385 test_true(memcached_set_user_data(memc
, foo
) == NULL
);
386 test_true(memcached_get_user_data(memc
) == foo
);
387 test_true(memcached_set_user_data(memc
, NULL
) == foo
);
392 static test_return_t
connection_test(memcached_st
*memc
)
394 memcached_return_t rc
;
396 rc
= memcached_server_add_with_weight(memc
, "localhost", 0, 0);
397 test_true(rc
== MEMCACHED_SUCCESS
);
402 static test_return_t
error_test(memcached_st
*memc
)
404 uint32_t values
[] = { 851992627U, 2337886783U, 3196981036U, 4001849190U,
405 982370485U, 1263635348U, 4242906218U, 3829656100U,
406 1891735253U, 334139633U, 2257084983U, 3088286104U,
407 13199785U, 2542027183U, 1097051614U, 199566778U,
408 2748246961U, 2465192557U, 1664094137U, 2405439045U,
409 1842224848U, 692413798U, 3479807801U, 919913813U,
410 4269430871U, 610793021U, 527273862U, 1437122909U,
411 2300930706U, 2943759320U, 674306647U, 2400528935U,
412 54481931U, 4186304426U, 1741088401U, 2979625118U,
413 4159057246U, 3425930182U, 2593724503U, 1868899624U,
414 1769812374U, 2302537950U, 1110330676U, 3365377466U,
415 1336171666U, 3021258493U, 3365377466U };
417 // You have updated the memcache_error messages but not updated docs/tests.
418 for (int rc
= int(MEMCACHED_SUCCESS
); rc
< int(MEMCACHED_MAXIMUM_RETURN
); ++rc
)
421 const char *msg
= memcached_strerror(memc
, memcached_return_t(rc
));
422 hash_val
= memcached_generate_hash_value(msg
, strlen(msg
),
423 MEMCACHED_HASH_JENKINS
);
424 if (values
[rc
] != hash_val
)
426 fprintf(stderr
, "\n\nYou have updated memcached_return_t without updating the error_test\n");
427 fprintf(stderr
, "%u, %s, (%u)\n\n", (uint32_t)rc
, memcached_strerror(memc
, memcached_return_t(rc
)), hash_val
);
429 test_true(values
[rc
] == hash_val
);
431 test_true(MEMCACHED_MAXIMUM_RETURN
== 46);
436 static test_return_t
set_test(memcached_st
*memc
)
438 memcached_return_t rc
;
439 const char *key
= "foo";
440 const char *value
= "when we sanitize";
442 rc
= memcached_set(memc
, key
, strlen(key
),
443 value
, strlen(value
),
444 (time_t)0, (uint32_t)0);
445 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
450 static test_return_t
append_test(memcached_st
*memc
)
452 memcached_return_t rc
;
453 const char *key
= "fig";
454 const char *in_value
= "we";
455 char *out_value
= NULL
;
459 rc
= memcached_flush(memc
, 0);
460 test_true(rc
== MEMCACHED_SUCCESS
);
462 rc
= memcached_set(memc
, key
, strlen(key
),
463 in_value
, strlen(in_value
),
464 (time_t)0, (uint32_t)0);
465 test_true(rc
== MEMCACHED_SUCCESS
);
467 rc
= memcached_append(memc
, key
, strlen(key
),
468 " the", strlen(" the"),
469 (time_t)0, (uint32_t)0);
470 test_true(rc
== MEMCACHED_SUCCESS
);
472 rc
= memcached_append(memc
, key
, strlen(key
),
473 " people", strlen(" people"),
474 (time_t)0, (uint32_t)0);
475 test_true(rc
== MEMCACHED_SUCCESS
);
477 out_value
= memcached_get(memc
, key
, strlen(key
),
478 &value_length
, &flags
, &rc
);
479 test_true(!memcmp(out_value
, "we the people", strlen("we the people")));
480 test_true(strlen("we the people") == value_length
);
481 test_true(rc
== MEMCACHED_SUCCESS
);
487 static test_return_t
append_binary_test(memcached_st
*memc
)
489 memcached_return_t rc
;
490 const char *key
= "numbers";
491 uint32_t store_list
[] = { 23, 56, 499, 98, 32847, 0 };
497 rc
= memcached_flush(memc
, 0);
498 test_true(rc
== MEMCACHED_SUCCESS
);
500 rc
= memcached_set(memc
,
503 (time_t)0, (uint32_t)0);
504 test_true(rc
== MEMCACHED_SUCCESS
);
506 for (x
= 0; store_list
[x
] ; x
++)
508 rc
= memcached_append(memc
,
510 (char *)&store_list
[x
], sizeof(uint32_t),
511 (time_t)0, (uint32_t)0);
512 test_true(rc
== MEMCACHED_SUCCESS
);
515 value
= (uint32_t *)memcached_get(memc
, key
, strlen(key
),
516 &value_length
, &flags
, &rc
);
517 test_true((value_length
== (sizeof(uint32_t) * x
)));
518 test_true(rc
== MEMCACHED_SUCCESS
);
520 for (uint32_t counter
= x
, *ptr
= value
; counter
; counter
--)
522 test_true(*ptr
== store_list
[x
- counter
]);
530 static test_return_t
cas2_test(memcached_st
*memc
)
532 memcached_return_t rc
;
533 const char *keys
[]= {"fudge", "son", "food"};
534 size_t key_length
[]= {5, 3, 4};
535 const char *value
= "we the people";
536 size_t value_length
= strlen("we the people");
538 memcached_result_st results_obj
;
539 memcached_result_st
*results
;
542 rc
= memcached_flush(memc
, 0);
543 test_true(rc
== MEMCACHED_SUCCESS
);
545 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, set
);
547 for (x
= 0; x
< 3; x
++)
549 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
550 keys
[x
], key_length
[x
],
551 (time_t)50, (uint32_t)9);
552 test_true(rc
== MEMCACHED_SUCCESS
);
555 rc
= memcached_mget(memc
, keys
, key_length
, 3);
557 results
= memcached_result_create(memc
, &results_obj
);
559 results
= memcached_fetch_result(memc
, &results_obj
, &rc
);
561 test_true(results
->item_cas
);
562 test_true(rc
== MEMCACHED_SUCCESS
);
563 test_true(memcached_result_cas(results
));
565 test_true(!memcmp(value
, "we the people", strlen("we the people")));
566 test_true(strlen("we the people") == value_length
);
567 test_true(rc
== MEMCACHED_SUCCESS
);
569 memcached_result_free(&results_obj
);
574 static test_return_t
cas_test(memcached_st
*memc
)
576 memcached_return_t rc
;
577 const char *key
= "fun";
578 size_t key_length
= strlen(key
);
579 const char *value
= "we the people";
580 const char* keys
[2] = { key
, NULL
};
581 size_t keylengths
[2] = { strlen(key
), 0 };
582 size_t value_length
= strlen(value
);
583 const char *value2
= "change the value";
584 size_t value2_length
= strlen(value2
);
586 memcached_result_st results_obj
;
587 memcached_result_st
*results
;
590 rc
= memcached_flush(memc
, 0);
591 test_true(rc
== MEMCACHED_SUCCESS
);
593 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, set
);
595 rc
= memcached_set(memc
, key
, strlen(key
),
596 value
, strlen(value
),
597 (time_t)0, (uint32_t)0);
598 test_true(rc
== MEMCACHED_SUCCESS
);
600 rc
= memcached_mget(memc
, keys
, keylengths
, 1);
602 results
= memcached_result_create(memc
, &results_obj
);
604 results
= memcached_fetch_result(memc
, &results_obj
, &rc
);
606 test_true(rc
== MEMCACHED_SUCCESS
);
607 test_true(memcached_result_cas(results
));
608 test_true(!memcmp(value
, memcached_result_value(results
), value_length
));
609 test_true(strlen(memcached_result_value(results
)) == value_length
);
610 test_true(rc
== MEMCACHED_SUCCESS
);
611 uint64_t cas
= memcached_result_cas(results
);
614 results
= memcached_fetch_result(memc
, &results_obj
, &rc
);
615 test_true(rc
== MEMCACHED_END
);
616 test_true(results
== NULL
);
619 rc
= memcached_cas(memc
, key
, key_length
, value2
, value2_length
, 0, 0, cas
);
620 test_true(rc
== MEMCACHED_SUCCESS
);
623 * The item will have a new cas value, so try to set it again with the old
624 * value. This should fail!
626 rc
= memcached_cas(memc
, key
, key_length
, value2
, value2_length
, 0, 0, cas
);
627 test_true(rc
== MEMCACHED_DATA_EXISTS
);
629 memcached_result_free(&results_obj
);
634 static test_return_t
prepend_test(memcached_st
*memc
)
636 memcached_return_t rc
;
637 const char *key
= "fig";
638 const char *value
= "people";
639 char *out_value
= NULL
;
643 rc
= memcached_flush(memc
, 0);
644 test_true(rc
== MEMCACHED_SUCCESS
);
646 rc
= memcached_set(memc
, key
, strlen(key
),
647 value
, strlen(value
),
648 (time_t)0, (uint32_t)0);
649 test_true(rc
== MEMCACHED_SUCCESS
);
651 rc
= memcached_prepend(memc
, key
, strlen(key
),
652 "the ", strlen("the "),
653 (time_t)0, (uint32_t)0);
654 test_true(rc
== MEMCACHED_SUCCESS
);
656 rc
= memcached_prepend(memc
, key
, strlen(key
),
657 "we ", strlen("we "),
658 (time_t)0, (uint32_t)0);
659 test_true(rc
== MEMCACHED_SUCCESS
);
661 out_value
= memcached_get(memc
, key
, strlen(key
),
662 &value_length
, &flags
, &rc
);
663 test_true(!memcmp(out_value
, "we the people", strlen("we the people")));
664 test_true(strlen("we the people") == value_length
);
665 test_true(rc
== MEMCACHED_SUCCESS
);
672 Set the value, then quit to make sure it is flushed.
673 Come back in and test that add fails.
675 static test_return_t
add_test(memcached_st
*memc
)
677 memcached_return_t rc
;
678 const char *key
= "foo";
679 const char *value
= "when we sanitize";
680 unsigned long long setting_value
;
682 setting_value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
);
684 rc
= memcached_set(memc
, key
, strlen(key
),
685 value
, strlen(value
),
686 (time_t)0, (uint32_t)0);
687 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
688 memcached_quit(memc
);
689 rc
= memcached_add(memc
, key
, strlen(key
),
690 value
, strlen(value
),
691 (time_t)0, (uint32_t)0);
693 /* Too many broken OS'es have broken loopback in async, so we can't be sure of the result */
696 test_true(rc
== MEMCACHED_NOTSTORED
|| rc
== MEMCACHED_STORED
);
700 test_true(rc
== MEMCACHED_NOTSTORED
|| rc
== MEMCACHED_DATA_EXISTS
);
707 ** There was a problem of leaking filedescriptors in the initial release
708 ** of MacOSX 10.5. This test case triggers the problem. On some Solaris
709 ** systems it seems that the kernel is slow on reclaiming the resources
710 ** because the connects starts to time out (the test doesn't do much
711 ** anyway, so just loop 10 iterations)
713 static test_return_t
add_wrapper(memcached_st
*memc
)
715 unsigned int max
= 10000;
723 for (uint32_t x
= 0; x
< max
; x
++)
729 static test_return_t
replace_test(memcached_st
*memc
)
731 memcached_return_t rc
;
732 const char *key
= "foo";
733 const char *value
= "when we sanitize";
734 const char *original
= "first we insert some data";
736 rc
= memcached_set(memc
, key
, strlen(key
),
737 original
, strlen(original
),
738 (time_t)0, (uint32_t)0);
739 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
741 rc
= memcached_replace(memc
, key
, strlen(key
),
742 value
, strlen(value
),
743 (time_t)0, (uint32_t)0);
744 test_true(rc
== MEMCACHED_SUCCESS
);
749 static test_return_t
delete_test(memcached_st
*memc
)
751 memcached_return_t rc
;
752 const char *key
= "foo";
753 const char *value
= "when we sanitize";
755 rc
= memcached_set(memc
, key
, strlen(key
),
756 value
, strlen(value
),
757 (time_t)0, (uint32_t)0);
758 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
760 rc
= memcached_delete(memc
, key
, strlen(key
), (time_t)0);
761 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
766 static test_return_t
flush_test(memcached_st
*memc
)
768 memcached_return_t rc
;
770 uint64_t query_id
= memcached_query_id(memc
);
771 rc
= memcached_flush(memc
, 0);
772 test_compare(rc
, MEMCACHED_SUCCESS
);
773 test_compare(query_id
+1, memcached_query_id(memc
));
778 static memcached_return_t
server_function(const memcached_st
*ptr
,
779 const memcached_server_st
*server
,
782 (void)ptr
; (void)server
; (void)context
;
785 return MEMCACHED_SUCCESS
;
788 static test_return_t
memcached_server_cursor_test(memcached_st
*memc
)
791 strncpy(context
, "foo bad", sizeof(context
));
792 memcached_server_fn callbacks
[1];
794 callbacks
[0]= server_function
;
795 memcached_server_cursor(memc
, callbacks
, context
, 1);
799 static test_return_t
bad_key_test(memcached_st
*memc
)
801 memcached_return_t rc
;
802 const char *key
= "foo bad";
804 size_t string_length
;
806 memcached_st
*memc_clone
;
808 size_t max_keylen
= 0xffff;
810 // Just skip if we are in binary mode.
811 uint64_t query_id
= memcached_query_id(memc
);
812 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
))
814 test_compare(query_id
, memcached_query_id(memc
)); // We should not increase the query_id for memcached_behavior_get()
816 memc_clone
= memcached_clone(NULL
, memc
);
817 test_true(memc_clone
);
819 query_id
= memcached_query_id(memc_clone
);
820 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
821 test_true(rc
== MEMCACHED_SUCCESS
);
822 test_compare(query_id
, memcached_query_id(memc_clone
)); // We should not increase the query_id for memcached_behavior_set()
824 /* All keys are valid in the binary protocol (except for length) */
825 if (memcached_behavior_get(memc_clone
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 0)
827 query_id
= memcached_query_id(memc_clone
);
828 string
= memcached_get(memc_clone
, key
, strlen(key
),
829 &string_length
, &flags
, &rc
);
830 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
831 test_true(string_length
== 0);
835 query_id
= memcached_query_id(memc_clone
);
836 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
837 test_compare(query_id
, memcached_query_id(memc_clone
)); // We should not increase the query_id for memcached_behavior_set()
838 test_true(rc
== MEMCACHED_SUCCESS
);
839 string
= memcached_get(memc_clone
, key
, strlen(key
),
840 &string_length
, &flags
, &rc
);
841 test_true(rc
== MEMCACHED_NOTFOUND
);
842 test_true(string_length
== 0);
845 /* Test multi key for bad keys */
846 const char *keys
[] = { "GoodKey", "Bad Key", "NotMine" };
847 size_t key_lengths
[] = { 7, 7, 7 };
849 query_id
= memcached_query_id(memc_clone
);
850 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
851 test_true(rc
== MEMCACHED_SUCCESS
);
852 test_compare(query_id
, memcached_query_id(memc_clone
));
854 query_id
= memcached_query_id(memc_clone
);
855 rc
= memcached_mget(memc_clone
, keys
, key_lengths
, 3);
856 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
857 test_compare(query_id
+1, memcached_query_id(memc_clone
));
859 query_id
= memcached_query_id(memc_clone
);
860 rc
= memcached_mget_by_key(memc_clone
, "foo daddy", 9, keys
, key_lengths
, 1);
861 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
862 test_compare(query_id
+1, memcached_query_id(memc_clone
));
866 /* The following test should be moved to the end of this function when the
867 memcached server is updated to allow max size length of the keys in the
870 rc
= memcached_callback_set(memc_clone
, MEMCACHED_CALLBACK_PREFIX_KEY
, NULL
);
871 test_true(rc
== MEMCACHED_SUCCESS
);
873 char *longkey
= (char *)malloc(max_keylen
+ 1);
876 memset(longkey
, 'a', max_keylen
+ 1);
877 string
= memcached_get(memc_clone
, longkey
, max_keylen
,
878 &string_length
, &flags
, &rc
);
879 test_true(rc
== MEMCACHED_NOTFOUND
);
880 test_true(string_length
== 0);
883 string
= memcached_get(memc_clone
, longkey
, max_keylen
+ 1,
884 &string_length
, &flags
, &rc
);
885 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
886 test_true(string_length
== 0);
893 /* Make sure zero length keys are marked as bad */
895 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, set
);
896 test_true(rc
== MEMCACHED_SUCCESS
);
897 string
= memcached_get(memc_clone
, key
, 0,
898 &string_length
, &flags
, &rc
);
899 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
900 test_true(string_length
== 0);
903 memcached_free(memc_clone
);
908 #define READ_THROUGH_VALUE "set for me"
909 static memcached_return_t
read_through_trigger(memcached_st
*memc
,
912 memcached_result_st
*result
)
914 (void)memc
;(void)key
;(void)key_length
;
915 return memcached_result_set_value(result
, READ_THROUGH_VALUE
, strlen(READ_THROUGH_VALUE
));
918 #ifndef __INTEL_COMPILER
919 #pragma GCC diagnostic ignored "-Wstrict-aliasing"
922 static test_return_t
read_through(memcached_st
*memc
)
924 memcached_return_t rc
;
925 const char *key
= "foo";
927 size_t string_length
;
929 memcached_trigger_key_fn cb
= (memcached_trigger_key_fn
)read_through_trigger
;
931 string
= memcached_get(memc
, key
, strlen(key
),
932 &string_length
, &flags
, &rc
);
934 test_true(rc
== MEMCACHED_NOTFOUND
);
935 test_false(string_length
);
938 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_GET_FAILURE
, *(void **)&cb
);
939 test_true(rc
== MEMCACHED_SUCCESS
);
941 string
= memcached_get(memc
, key
, strlen(key
),
942 &string_length
, &flags
, &rc
);
944 test_true(rc
== MEMCACHED_SUCCESS
);
945 test_true(string_length
== strlen(READ_THROUGH_VALUE
));
946 test_strcmp(READ_THROUGH_VALUE
, string
);
949 string
= memcached_get(memc
, key
, strlen(key
),
950 &string_length
, &flags
, &rc
);
952 test_true(rc
== MEMCACHED_SUCCESS
);
953 test_true(string_length
== strlen(READ_THROUGH_VALUE
));
954 test_true(!strcmp(READ_THROUGH_VALUE
, string
));
960 static memcached_return_t
delete_trigger(memcached_st
*ptr
,
964 (void)ptr
;(void)key_length
;
967 return MEMCACHED_SUCCESS
;
970 static test_return_t
delete_through(memcached_st
*memc
)
972 memcached_trigger_delete_key_fn callback
;
973 memcached_return_t rc
;
975 callback
= (memcached_trigger_delete_key_fn
)delete_trigger
;
977 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_DELETE_TRIGGER
, *(void**)&callback
);
978 test_true(rc
== MEMCACHED_SUCCESS
);
983 static test_return_t
get_test(memcached_st
*memc
)
985 memcached_return_t rc
;
986 const char *key
= "foo";
988 size_t string_length
;
991 uint64_t query_id
= memcached_query_id(memc
);
992 rc
= memcached_delete(memc
, key
, strlen(key
), (time_t)0);
993 test_true(rc
== MEMCACHED_BUFFERED
|| rc
== MEMCACHED_NOTFOUND
);
994 test_compare(query_id
+1, memcached_query_id(memc
));
996 string
= memcached_get(memc
, key
, strlen(key
),
997 &string_length
, &flags
, &rc
);
999 test_true(rc
== MEMCACHED_NOTFOUND
);
1000 test_false(string_length
);
1003 return TEST_SUCCESS
;
1006 static test_return_t
get_test2(memcached_st
*memc
)
1008 memcached_return_t rc
;
1009 const char *key
= "foo";
1010 const char *value
= "when we sanitize";
1012 size_t string_length
;
1015 uint64_t query_id
= memcached_query_id(memc
);
1016 rc
= memcached_set(memc
, key
, strlen(key
),
1017 value
, strlen(value
),
1018 (time_t)0, (uint32_t)0);
1019 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1020 test_compare(query_id
+1, memcached_query_id(memc
));
1022 query_id
= memcached_query_id(memc
);
1023 string
= memcached_get(memc
, key
, strlen(key
),
1024 &string_length
, &flags
, &rc
);
1025 test_compare(query_id
+1, memcached_query_id(memc
));
1028 test_true(rc
== MEMCACHED_SUCCESS
);
1029 test_true(string_length
== strlen(value
));
1030 test_memcmp(string
, value
, string_length
);
1034 return TEST_SUCCESS
;
1037 static test_return_t
set_test2(memcached_st
*memc
)
1039 memcached_return_t rc
;
1040 const char *key
= "foo";
1041 const char *value
= "train in the brain";
1042 size_t value_length
= strlen(value
);
1045 for (x
= 0; x
< 10; x
++)
1047 rc
= memcached_set(memc
, key
, strlen(key
),
1048 value
, value_length
,
1049 (time_t)0, (uint32_t)0);
1050 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1053 return TEST_SUCCESS
;
1056 static test_return_t
set_test3(memcached_st
*memc
)
1058 memcached_return_t rc
;
1060 size_t value_length
= 8191;
1062 value
= (char*)malloc(value_length
);
1065 for (uint32_t x
= 0; x
< value_length
; x
++)
1066 value
[x
] = (char) (x
% 127);
1068 /* The dump test relies on there being at least 32 items in memcached */
1069 for (uint32_t x
= 0; x
< 32; x
++)
1073 snprintf(key
, sizeof(key
), "foo%u", x
);
1075 uint64_t query_id
= memcached_query_id(memc
);
1076 rc
= memcached_set(memc
, key
, strlen(key
),
1077 value
, value_length
,
1078 (time_t)0, (uint32_t)0);
1079 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1080 test_compare(query_id
+1, memcached_query_id(memc
));
1085 return TEST_SUCCESS
;
1088 static test_return_t
get_test3(memcached_st
*memc
)
1090 memcached_return_t rc
;
1091 const char *key
= "foo";
1093 size_t value_length
= 8191;
1095 size_t string_length
;
1099 value
= (char*)malloc(value_length
);
1102 for (x
= 0; x
< value_length
; x
++)
1103 value
[x
] = (char) (x
% 127);
1105 rc
= memcached_set(memc
, key
, strlen(key
),
1106 value
, value_length
,
1107 (time_t)0, (uint32_t)0);
1108 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1110 string
= memcached_get(memc
, key
, strlen(key
),
1111 &string_length
, &flags
, &rc
);
1113 test_true(rc
== MEMCACHED_SUCCESS
);
1115 test_true(string_length
== value_length
);
1116 test_true(!memcmp(string
, value
, string_length
));
1121 return TEST_SUCCESS
;
1124 static test_return_t
get_test4(memcached_st
*memc
)
1126 memcached_return_t rc
;
1127 const char *key
= "foo";
1129 size_t value_length
= 8191;
1131 size_t string_length
;
1135 value
= (char*)malloc(value_length
);
1138 for (x
= 0; x
< value_length
; x
++)
1139 value
[x
] = (char) (x
% 127);
1141 rc
= memcached_set(memc
, key
, strlen(key
),
1142 value
, value_length
,
1143 (time_t)0, (uint32_t)0);
1144 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1146 for (x
= 0; x
< 10; x
++)
1148 string
= memcached_get(memc
, key
, strlen(key
),
1149 &string_length
, &flags
, &rc
);
1151 test_true(rc
== MEMCACHED_SUCCESS
);
1153 test_true(string_length
== value_length
);
1154 test_true(!memcmp(string
, value
, string_length
));
1160 return TEST_SUCCESS
;
1164 * This test verifies that memcached_read_one_response doesn't try to
1165 * dereference a NIL-pointer if you issue a multi-get and don't read out all
1166 * responses before you execute a storage command.
1168 static test_return_t
get_test5(memcached_st
*memc
)
1171 ** Request the same key twice, to ensure that we hash to the same server
1172 ** (so that we have multiple response values queued up) ;-)
1174 const char *keys
[]= { "key", "key" };
1175 size_t lengths
[]= { 3, 3 };
1179 memcached_return_t rc
= memcached_set(memc
, keys
[0], lengths
[0],
1180 keys
[0], lengths
[0], 0, 0);
1181 test_true(rc
== MEMCACHED_SUCCESS
);
1182 rc
= memcached_mget(memc
, keys
, lengths
, 2);
1184 memcached_result_st results_obj
;
1185 memcached_result_st
*results
;
1186 results
=memcached_result_create(memc
, &results_obj
);
1188 results
=memcached_fetch_result(memc
, &results_obj
, &rc
);
1190 memcached_result_free(&results_obj
);
1192 /* Don't read out the second result, but issue a set instead.. */
1193 rc
= memcached_set(memc
, keys
[0], lengths
[0], keys
[0], lengths
[0], 0, 0);
1194 test_true(rc
== MEMCACHED_SUCCESS
);
1196 char *val
= memcached_get_by_key(memc
, keys
[0], lengths
[0], "yek", 3,
1197 &rlen
, &flags
, &rc
);
1198 test_true(val
== NULL
);
1199 test_true(rc
== MEMCACHED_NOTFOUND
);
1200 val
= memcached_get(memc
, keys
[0], lengths
[0], &rlen
, &flags
, &rc
);
1201 test_true(val
!= NULL
);
1202 test_true(rc
== MEMCACHED_SUCCESS
);
1205 return TEST_SUCCESS
;
1208 static test_return_t
mget_end(memcached_st
*memc
)
1210 const char *keys
[]= { "foo", "foo2" };
1211 size_t lengths
[]= { 3, 4 };
1212 const char *values
[]= { "fjord", "41" };
1214 memcached_return_t rc
;
1217 for (int i
= 0; i
< 2; i
++)
1219 rc
= memcached_set(memc
, keys
[i
], lengths
[i
], values
[i
], strlen(values
[i
]),
1220 (time_t)0, (uint32_t)0);
1221 test_true(rc
== MEMCACHED_SUCCESS
);
1225 size_t string_length
;
1228 // retrieve both via mget
1229 rc
= memcached_mget(memc
, keys
, lengths
, 2);
1230 test_true(rc
== MEMCACHED_SUCCESS
);
1232 char key
[MEMCACHED_MAX_KEY
];
1235 // this should get both
1236 for (int i
= 0; i
< 2; i
++)
1238 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
,
1240 test_true(rc
== MEMCACHED_SUCCESS
);
1242 if (key_length
== 4)
1244 test_true(string_length
== strlen(values
[val
]));
1245 test_true(strncmp(values
[val
], string
, string_length
) == 0);
1249 // this should indicate end
1250 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
, &flags
, &rc
);
1251 test_true(rc
== MEMCACHED_END
);
1254 rc
= memcached_mget(memc
, keys
, lengths
, 1);
1255 test_true(rc
== MEMCACHED_SUCCESS
);
1257 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
, &flags
, &rc
);
1258 test_true(key_length
== lengths
[0]);
1259 test_true(strncmp(keys
[0], key
, key_length
) == 0);
1260 test_true(string_length
== strlen(values
[0]));
1261 test_true(strncmp(values
[0], string
, string_length
) == 0);
1262 test_true(rc
== MEMCACHED_SUCCESS
);
1265 // this should indicate end
1266 string
= memcached_fetch(memc
, key
, &key_length
, &string_length
, &flags
, &rc
);
1267 test_true(rc
== MEMCACHED_END
);
1269 return TEST_SUCCESS
;
1272 /* Do not copy the style of this code, I just access hosts to testthis function */
1273 static test_return_t
stats_servername_test(memcached_st
*memc
)
1275 memcached_return_t rc
;
1276 memcached_stat_st memc_stat
;
1277 memcached_server_instance_st instance
=
1278 memcached_server_instance_by_position(memc
, 0);
1280 #ifdef LIBMEMCACHED_WITH_SASL_SUPPORT
1281 if (memcached_get_sasl_callbacks(memc
) != NULL
)
1282 return TEST_SKIPPED
;
1284 rc
= memcached_stat_servername(&memc_stat
, NULL
,
1285 memcached_server_name(instance
),
1286 memcached_server_port(instance
));
1288 return TEST_SUCCESS
;
1291 static test_return_t
increment_test(memcached_st
*memc
)
1293 uint64_t new_number
;
1294 memcached_return_t rc
;
1295 const char *key
= "number";
1296 const char *value
= "0";
1298 rc
= memcached_set(memc
, key
, strlen(key
),
1299 value
, strlen(value
),
1300 (time_t)0, (uint32_t)0);
1301 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1303 rc
= memcached_increment(memc
, key
, strlen(key
),
1305 test_true(rc
== MEMCACHED_SUCCESS
);
1306 test_true(new_number
== 1);
1308 rc
= memcached_increment(memc
, key
, strlen(key
),
1310 test_true(rc
== MEMCACHED_SUCCESS
);
1311 test_true(new_number
== 2);
1313 return TEST_SUCCESS
;
1316 static test_return_t
increment_with_initial_test(memcached_st
*memc
)
1318 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1320 uint64_t new_number
;
1321 memcached_return_t rc
;
1322 const char *key
= "number";
1323 uint64_t initial
= 0;
1325 rc
= memcached_increment_with_initial(memc
, key
, strlen(key
),
1326 1, initial
, 0, &new_number
);
1327 test_true(rc
== MEMCACHED_SUCCESS
);
1328 test_true(new_number
== initial
);
1330 rc
= memcached_increment_with_initial(memc
, key
, strlen(key
),
1331 1, initial
, 0, &new_number
);
1332 test_true(rc
== MEMCACHED_SUCCESS
);
1333 test_true(new_number
== (initial
+ 1));
1335 return TEST_SUCCESS
;
1338 static test_return_t
decrement_test(memcached_st
*memc
)
1340 uint64_t new_number
;
1341 memcached_return_t rc
;
1342 const char *key
= "number";
1343 const char *value
= "3";
1345 rc
= memcached_set(memc
, key
, strlen(key
),
1346 value
, strlen(value
),
1347 (time_t)0, (uint32_t)0);
1348 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1350 rc
= memcached_decrement(memc
, key
, strlen(key
),
1352 test_true(rc
== MEMCACHED_SUCCESS
);
1353 test_true(new_number
== 2);
1355 rc
= memcached_decrement(memc
, key
, strlen(key
),
1357 test_true(rc
== MEMCACHED_SUCCESS
);
1358 test_true(new_number
== 1);
1360 return TEST_SUCCESS
;
1363 static test_return_t
decrement_with_initial_test(memcached_st
*memc
)
1365 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1367 uint64_t new_number
;
1368 memcached_return_t rc
;
1369 const char *key
= "number";
1370 uint64_t initial
= 3;
1372 rc
= memcached_decrement_with_initial(memc
, key
, strlen(key
),
1373 1, initial
, 0, &new_number
);
1374 test_true(rc
== MEMCACHED_SUCCESS
);
1375 test_true(new_number
== initial
);
1377 rc
= memcached_decrement_with_initial(memc
, key
, strlen(key
),
1378 1, initial
, 0, &new_number
);
1379 test_true(rc
== MEMCACHED_SUCCESS
);
1380 test_true(new_number
== (initial
- 1));
1382 return TEST_SUCCESS
;
1385 static test_return_t
increment_by_key_test(memcached_st
*memc
)
1387 uint64_t new_number
;
1388 memcached_return_t rc
;
1389 const char *master_key
= "foo";
1390 const char *key
= "number";
1391 const char *value
= "0";
1393 rc
= memcached_set_by_key(memc
, master_key
, strlen(master_key
),
1395 value
, strlen(value
),
1396 (time_t)0, (uint32_t)0);
1397 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1399 rc
= memcached_increment_by_key(memc
, master_key
, strlen(master_key
), key
, strlen(key
),
1401 test_true(rc
== MEMCACHED_SUCCESS
);
1402 test_true(new_number
== 1);
1404 rc
= memcached_increment_by_key(memc
, master_key
, strlen(master_key
), key
, strlen(key
),
1406 test_true(rc
== MEMCACHED_SUCCESS
);
1407 test_true(new_number
== 2);
1409 return TEST_SUCCESS
;
1412 static test_return_t
increment_with_initial_by_key_test(memcached_st
*memc
)
1414 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1416 uint64_t new_number
;
1417 memcached_return_t rc
;
1418 const char *master_key
= "foo";
1419 const char *key
= "number";
1420 uint64_t initial
= 0;
1422 rc
= memcached_increment_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1424 1, initial
, 0, &new_number
);
1425 test_true(rc
== MEMCACHED_SUCCESS
);
1426 test_true(new_number
== initial
);
1428 rc
= memcached_increment_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1430 1, initial
, 0, &new_number
);
1431 test_true(rc
== MEMCACHED_SUCCESS
);
1432 test_true(new_number
== (initial
+ 1));
1434 return TEST_SUCCESS
;
1437 static test_return_t
decrement_by_key_test(memcached_st
*memc
)
1439 uint64_t new_number
;
1440 memcached_return_t rc
;
1441 const char *master_key
= "foo";
1442 const char *key
= "number";
1443 const char *value
= "3";
1445 rc
= memcached_set_by_key(memc
, master_key
, strlen(master_key
),
1447 value
, strlen(value
),
1448 (time_t)0, (uint32_t)0);
1449 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1451 rc
= memcached_decrement_by_key(memc
, master_key
, strlen(master_key
),
1454 test_true(rc
== MEMCACHED_SUCCESS
);
1455 test_true(new_number
== 2);
1457 rc
= memcached_decrement_by_key(memc
, master_key
, strlen(master_key
),
1460 test_true(rc
== MEMCACHED_SUCCESS
);
1461 test_true(new_number
== 1);
1463 return TEST_SUCCESS
;
1466 static test_return_t
decrement_with_initial_by_key_test(memcached_st
*memc
)
1468 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1470 uint64_t new_number
;
1471 memcached_return_t rc
;
1472 const char *master_key
= "foo";
1473 const char *key
= "number";
1474 uint64_t initial
= 3;
1476 rc
= memcached_decrement_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1478 1, initial
, 0, &new_number
);
1479 test_true(rc
== MEMCACHED_SUCCESS
);
1480 test_true(new_number
== initial
);
1482 rc
= memcached_decrement_with_initial_by_key(memc
, master_key
, strlen(master_key
),
1484 1, initial
, 0, &new_number
);
1485 test_true(rc
== MEMCACHED_SUCCESS
);
1486 test_true(new_number
== (initial
- 1));
1488 return TEST_SUCCESS
;
1491 static test_return_t
quit_test(memcached_st
*memc
)
1493 memcached_return_t rc
;
1494 const char *key
= "fudge";
1495 const char *value
= "sanford and sun";
1497 rc
= memcached_set(memc
, key
, strlen(key
),
1498 value
, strlen(value
),
1499 (time_t)10, (uint32_t)3);
1500 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1501 memcached_quit(memc
);
1503 rc
= memcached_set(memc
, key
, strlen(key
),
1504 value
, strlen(value
),
1505 (time_t)50, (uint32_t)9);
1506 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1508 return TEST_SUCCESS
;
1511 static test_return_t
mget_result_test(memcached_st
*memc
)
1513 memcached_return_t rc
;
1514 const char *keys
[]= {"fudge", "son", "food"};
1515 size_t key_length
[]= {5, 3, 4};
1518 memcached_result_st results_obj
;
1519 memcached_result_st
*results
;
1521 results
= memcached_result_create(memc
, &results_obj
);
1523 test_true(&results_obj
== results
);
1525 /* We need to empty the server before continueing test */
1526 rc
= memcached_flush(memc
, 0);
1527 test_true(rc
== MEMCACHED_SUCCESS
);
1529 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1530 test_true(rc
== MEMCACHED_SUCCESS
);
1532 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)) != NULL
)
1537 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)) != NULL
)
1538 test_true(!results
);
1539 test_true(rc
== MEMCACHED_END
);
1541 for (x
= 0; x
< 3; x
++)
1543 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1544 keys
[x
], key_length
[x
],
1545 (time_t)50, (uint32_t)9);
1546 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1549 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1550 test_true(rc
== MEMCACHED_SUCCESS
);
1552 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)))
1555 test_true(&results_obj
== results
);
1556 test_true(rc
== MEMCACHED_SUCCESS
);
1557 test_true(memcached_result_key_length(results
) == memcached_result_length(results
));
1558 test_true(!memcmp(memcached_result_key_value(results
),
1559 memcached_result_value(results
),
1560 memcached_result_length(results
)));
1563 memcached_result_free(&results_obj
);
1565 return TEST_SUCCESS
;
1568 static test_return_t
mget_result_alloc_test(memcached_st
*memc
)
1570 memcached_return_t rc
;
1571 const char *keys
[]= {"fudge", "son", "food"};
1572 size_t key_length
[]= {5, 3, 4};
1575 memcached_result_st
*results
;
1577 /* We need to empty the server before continueing test */
1578 rc
= memcached_flush(memc
, 0);
1579 test_true(rc
== MEMCACHED_SUCCESS
);
1581 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1582 test_true(rc
== MEMCACHED_SUCCESS
);
1584 while ((results
= memcached_fetch_result(memc
, NULL
, &rc
)) != NULL
)
1588 test_true(!results
);
1589 test_true(rc
== MEMCACHED_END
);
1591 for (x
= 0; x
< 3; x
++)
1593 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1594 keys
[x
], key_length
[x
],
1595 (time_t)50, (uint32_t)9);
1596 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1599 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1600 test_true(rc
== MEMCACHED_SUCCESS
);
1603 while ((results
= memcached_fetch_result(memc
, NULL
, &rc
)))
1606 test_true(rc
== MEMCACHED_SUCCESS
);
1607 test_true(memcached_result_key_length(results
) == memcached_result_length(results
));
1608 test_true(!memcmp(memcached_result_key_value(results
),
1609 memcached_result_value(results
),
1610 memcached_result_length(results
)));
1611 memcached_result_free(results
);
1615 return TEST_SUCCESS
;
1618 /* Count the results */
1619 static memcached_return_t
callback_counter(const memcached_st
*ptr
,
1620 memcached_result_st
*result
,
1623 (void)ptr
; (void)result
;
1624 size_t *counter
= (size_t *)context
;
1626 *counter
= *counter
+ 1;
1628 return MEMCACHED_SUCCESS
;
1631 static test_return_t
mget_result_function(memcached_st
*memc
)
1633 memcached_return_t rc
;
1634 const char *keys
[]= {"fudge", "son", "food"};
1635 size_t key_length
[]= {5, 3, 4};
1638 memcached_execute_fn callbacks
[1];
1640 /* We need to empty the server before continueing test */
1641 rc
= memcached_flush(memc
, 0);
1642 for (x
= 0; x
< 3; x
++)
1644 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1645 keys
[x
], key_length
[x
],
1646 (time_t)50, (uint32_t)9);
1647 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1650 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1651 test_true(rc
== MEMCACHED_SUCCESS
);
1653 callbacks
[0]= &callback_counter
;
1655 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
1657 test_true(counter
== 3);
1659 return TEST_SUCCESS
;
1662 static test_return_t
mget_test(memcached_st
*memc
)
1664 memcached_return_t rc
;
1665 const char *keys
[]= {"fudge", "son", "food"};
1666 size_t key_length
[]= {5, 3, 4};
1670 char return_key
[MEMCACHED_MAX_KEY
];
1671 size_t return_key_length
;
1673 size_t return_value_length
;
1675 /* We need to empty the server before continueing test */
1676 rc
= memcached_flush(memc
, 0);
1677 test_true(rc
== MEMCACHED_SUCCESS
);
1679 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1680 test_true(rc
== MEMCACHED_SUCCESS
);
1682 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
1683 &return_value_length
, &flags
, &rc
)) != NULL
)
1685 test_true(return_value
);
1687 test_true(!return_value
);
1688 test_true(return_value_length
== 0);
1689 test_true(rc
== MEMCACHED_END
);
1691 for (x
= 0; x
< 3; x
++)
1693 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
1694 keys
[x
], key_length
[x
],
1695 (time_t)50, (uint32_t)9);
1696 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1699 rc
= memcached_mget(memc
, keys
, key_length
, 3);
1700 test_true(rc
== MEMCACHED_SUCCESS
);
1703 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
1704 &return_value_length
, &flags
, &rc
)))
1706 test_true(return_value
);
1707 test_true(rc
== MEMCACHED_SUCCESS
);
1708 test_true(return_key_length
== return_value_length
);
1709 test_true(!memcmp(return_value
, return_key
, return_value_length
));
1714 return TEST_SUCCESS
;
1717 static test_return_t
mget_execute(memcached_st
*memc
)
1721 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) != 0)
1725 * I only want to hit _one_ server so I know the number of requests I'm
1726 * sending in the pipeline.
1728 uint32_t number_of_hosts
= memc
->number_of_hosts
;
1729 memc
->number_of_hosts
= 1;
1731 size_t max_keys
= 20480;
1734 char **keys
= static_cast<char **>(calloc(max_keys
, sizeof(char*)));
1735 size_t *key_length
=static_cast<size_t *>(calloc(max_keys
, sizeof(size_t)));
1737 /* First add all of the items.. */
1738 char blob
[1024] = {0};
1739 memcached_return_t rc
;
1741 for (size_t x
= 0; x
< max_keys
; ++x
)
1745 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%lu", (unsigned long)x
);
1747 test_true(keys
[x
] != NULL
);
1748 uint64_t query_id
= memcached_query_id(memc
);
1749 rc
= memcached_add(memc
, keys
[x
], key_length
[x
], blob
, sizeof(blob
), 0, 0);
1750 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1751 test_compare(query_id
+1, memcached_query_id(memc
));
1754 /* Try to get all of them with a large multiget */
1756 memcached_execute_fn callbacks
[]= { &callback_counter
};
1757 rc
= memcached_mget_execute(memc
, (const char**)keys
, key_length
,
1758 max_keys
, callbacks
, &counter
, 1);
1760 if (rc
== MEMCACHED_SUCCESS
)
1763 uint64_t query_id
= memcached_query_id(memc
);
1764 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
1765 test_true(rc
== MEMCACHED_END
);
1766 test_compare(query_id
, memcached_query_id(memc
));
1768 /* Verify that we got all of the items */
1769 test_true(counter
== max_keys
);
1771 else if (rc
== MEMCACHED_NOT_SUPPORTED
)
1773 test_true(counter
== 0);
1777 test_fail("note: this test functions differently when in binary mode");
1780 /* Release all allocated resources */
1781 for (size_t x
= 0; x
< max_keys
; ++x
)
1788 memc
->number_of_hosts
= number_of_hosts
;
1789 return TEST_SUCCESS
;
1792 #define REGRESSION_BINARY_VS_BLOCK_COUNT 20480
1794 static test_return_t
key_setup(memcached_st
*memc
)
1798 if (pre_binary(memc
) != TEST_SUCCESS
)
1799 return TEST_SKIPPED
;
1801 global_pairs
= pairs_generate(REGRESSION_BINARY_VS_BLOCK_COUNT
, 0);
1803 return TEST_SUCCESS
;
1806 static test_return_t
key_teardown(memcached_st
*memc
)
1809 pairs_free(global_pairs
);
1811 return TEST_SUCCESS
;
1814 static test_return_t
block_add_regression(memcached_st
*memc
)
1816 /* First add all of the items.. */
1817 for (size_t x
= 0; x
< REGRESSION_BINARY_VS_BLOCK_COUNT
; ++x
)
1819 memcached_return_t rc
;
1820 char blob
[1024] = {0};
1822 rc
= memcached_add_by_key(memc
, "bob", 3, global_pairs
[x
].key
, global_pairs
[x
].key_length
, blob
, sizeof(blob
), 0, 0);
1823 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
1826 return TEST_SUCCESS
;
1829 static test_return_t
binary_add_regression(memcached_st
*memc
)
1831 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
1832 test_return_t rc
= block_add_regression(memc
);
1833 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 0);
1837 static test_return_t
get_stats_keys(memcached_st
*memc
)
1841 memcached_stat_st memc_stat
;
1842 memcached_return_t rc
;
1844 stat_list
= memcached_stat_get_keys(memc
, &memc_stat
, &rc
);
1845 test_true(rc
== MEMCACHED_SUCCESS
);
1846 for (ptr
= stat_list
; *ptr
; ptr
++)
1851 return TEST_SUCCESS
;
1854 static test_return_t
version_string_test(memcached_st
*memc
)
1856 const char *version_string
;
1859 version_string
= memcached_lib_version();
1861 test_true(!strcmp(version_string
, LIBMEMCACHED_VERSION_STRING
));
1863 return TEST_SUCCESS
;
1866 static test_return_t
get_stats(memcached_st
*memc
)
1870 memcached_return_t rc
;
1871 memcached_stat_st
*memc_stat
;
1873 memc_stat
= memcached_stat(memc
, NULL
, &rc
);
1874 test_true(rc
== MEMCACHED_SUCCESS
);
1876 test_true(rc
== MEMCACHED_SUCCESS
);
1877 test_true(memc_stat
);
1879 for (uint32_t x
= 0; x
< memcached_server_count(memc
); x
++)
1881 stat_list
= memcached_stat_get_keys(memc
, memc_stat
+x
, &rc
);
1882 test_true(rc
== MEMCACHED_SUCCESS
);
1883 for (ptr
= stat_list
; *ptr
; ptr
++);
1888 memcached_stat_free(NULL
, memc_stat
);
1890 return TEST_SUCCESS
;
1893 static test_return_t
add_host_test(memcached_st
*memc
)
1896 memcached_server_st
*servers
;
1897 memcached_return_t rc
;
1898 char servername
[]= "0.example.com";
1900 servers
= memcached_server_list_append_with_weight(NULL
, servername
, 400, 0, &rc
);
1902 test_true(1 == memcached_server_list_count(servers
));
1904 for (x
= 2; x
< 20; x
++)
1906 char buffer
[SMALL_STRING_LEN
];
1908 snprintf(buffer
, SMALL_STRING_LEN
, "%u.example.com", 400+x
);
1909 servers
= memcached_server_list_append_with_weight(servers
, buffer
, 401, 0,
1911 test_true(rc
== MEMCACHED_SUCCESS
);
1912 test_true(x
== memcached_server_list_count(servers
));
1915 rc
= memcached_server_push(memc
, servers
);
1916 test_true(rc
== MEMCACHED_SUCCESS
);
1917 rc
= memcached_server_push(memc
, servers
);
1918 test_true(rc
== MEMCACHED_SUCCESS
);
1920 memcached_server_list_free(servers
);
1922 return TEST_SUCCESS
;
1925 static memcached_return_t
clone_test_callback(memcached_st
*parent
, memcached_st
*memc_clone
)
1927 (void)parent
;(void)memc_clone
;
1928 return MEMCACHED_SUCCESS
;
1931 static memcached_return_t
cleanup_test_callback(memcached_st
*ptr
)
1934 return MEMCACHED_SUCCESS
;
1937 static test_return_t
callback_test(memcached_st
*memc
)
1939 /* Test User Data */
1943 memcached_return_t rc
;
1945 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_USER_DATA
, &x
);
1946 test_true(rc
== MEMCACHED_SUCCESS
);
1947 test_ptr
= (int *)memcached_callback_get(memc
, MEMCACHED_CALLBACK_USER_DATA
, &rc
);
1948 test_true(*test_ptr
== x
);
1951 /* Test Clone Callback */
1953 memcached_clone_fn clone_cb
= (memcached_clone_fn
)clone_test_callback
;
1954 void *clone_cb_ptr
= *(void **)&clone_cb
;
1955 void *temp_function
= NULL
;
1956 memcached_return_t rc
;
1958 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
,
1960 test_true(rc
== MEMCACHED_SUCCESS
);
1961 temp_function
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
, &rc
);
1962 test_true(temp_function
== clone_cb_ptr
);
1965 /* Test Cleanup Callback */
1967 memcached_cleanup_fn cleanup_cb
=
1968 (memcached_cleanup_fn
)cleanup_test_callback
;
1969 void *cleanup_cb_ptr
= *(void **)&cleanup_cb
;
1970 void *temp_function
= NULL
;
1971 memcached_return_t rc
;
1973 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
,
1975 test_true(rc
== MEMCACHED_SUCCESS
);
1976 temp_function
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_CLONE_FUNCTION
, &rc
);
1977 test_true(temp_function
== cleanup_cb_ptr
);
1980 return TEST_SUCCESS
;
1983 /* We don't test the behavior itself, we test the switches */
1984 static test_return_t
behavior_test(memcached_st
*memc
)
1989 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
1990 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
);
1991 test_true(value
== 1);
1993 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
1994 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
);
1995 test_true(value
== 1);
1997 set
= MEMCACHED_HASH_MD5
;
1998 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, set
);
1999 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
2000 test_true(value
== MEMCACHED_HASH_MD5
);
2004 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
2005 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
);
2006 test_true(value
== 0);
2008 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
2009 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
);
2010 test_true(value
== 0);
2012 set
= MEMCACHED_HASH_DEFAULT
;
2013 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, set
);
2014 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
2015 test_true(value
== MEMCACHED_HASH_DEFAULT
);
2017 set
= MEMCACHED_HASH_CRC
;
2018 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, set
);
2019 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
2020 test_true(value
== MEMCACHED_HASH_CRC
);
2022 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
);
2023 test_true(value
> 0);
2025 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
);
2026 test_true(value
> 0);
2028 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
);
2029 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, value
+ 1);
2030 test_true((value
+ 1) == memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
));
2032 return TEST_SUCCESS
;
2035 static test_return_t
MEMCACHED_BEHAVIOR_CORK_test(memcached_st
*memc
)
2037 memcached_return_t rc
;
2040 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_CORK
, set
);
2041 test_true(rc
== MEMCACHED_DEPRECATED
);
2043 // Platform dependent
2045 bool value
= (bool)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_CORK
);
2049 return TEST_SUCCESS
;
2053 static test_return_t
MEMCACHED_BEHAVIOR_TCP_KEEPALIVE_test(memcached_st
*memc
)
2055 memcached_return_t rc
;
2059 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_KEEPALIVE
, set
);
2060 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_NOT_SUPPORTED
);
2062 value
= (bool)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_TCP_KEEPALIVE
);
2064 if (rc
== MEMCACHED_SUCCESS
)
2066 test_true((bool)value
== set
);
2070 test_false((bool)value
== set
);
2073 return TEST_SUCCESS
;
2077 static test_return_t
MEMCACHED_BEHAVIOR_TCP_KEEPIDLE_test(memcached_st
*memc
)
2079 memcached_return_t rc
;
2083 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_KEEPIDLE
, set
);
2084 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_NOT_SUPPORTED
);
2086 value
= (bool)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_TCP_KEEPIDLE
);
2088 if (rc
== MEMCACHED_SUCCESS
)
2090 test_true((bool)value
== set
);
2094 test_false((bool)value
== set
);
2097 return TEST_SUCCESS
;
2100 static test_return_t
fetch_all_results(memcached_st
*memc
, size_t *keys_returned
)
2102 memcached_return_t rc
= MEMCACHED_SUCCESS
;
2103 char return_key
[MEMCACHED_MAX_KEY
];
2104 size_t return_key_length
;
2106 size_t return_value_length
;
2111 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2112 &return_value_length
, &flags
, &rc
)))
2114 test_true(return_value
);
2115 test_true(rc
== MEMCACHED_SUCCESS
);
2117 *keys_returned
= *keys_returned
+1;
2120 test_true_got(rc
== MEMCACHED_END
|| rc
== MEMCACHED_SUCCESS
, memcached_strerror(NULL
, rc
));
2122 return TEST_SUCCESS
;
2125 /* Test case provided by Cal Haldenbrand */
2126 static test_return_t
user_supplied_bug1(memcached_st
*memc
)
2128 unsigned int setter
= 1;
2130 unsigned long long total
= 0;
2133 char randomstuff
[6 * 1024];
2134 memcached_return_t rc
;
2136 memset(randomstuff
, 0, 6 * 1024);
2138 /* We just keep looking at the same values over and over */
2141 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, setter
);
2142 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
2146 for (uint32_t x
= 0 ; total
< 20 * 1024576 ; x
++ )
2150 size
= (uint32_t)(rand() % ( 5 * 1024 ) ) + 400;
2151 memset(randomstuff
, 0, 6 * 1024);
2152 test_true(size
< 6 * 1024); /* Being safe here */
2154 for (j
= 0 ; j
< size
;j
++)
2155 randomstuff
[j
] = (signed char) ((rand() % 26) + 97);
2158 snprintf(key
, sizeof(key
), "%u", x
);
2159 rc
= memcached_set(memc
, key
, strlen(key
),
2160 randomstuff
, strlen(randomstuff
), 10, 0);
2161 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
2162 /* If we fail, lets try again */
2163 if (rc
!= MEMCACHED_SUCCESS
&& rc
!= MEMCACHED_BUFFERED
)
2164 rc
= memcached_set(memc
, key
, strlen(key
),
2165 randomstuff
, strlen(randomstuff
), 10, 0);
2166 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
2169 return TEST_SUCCESS
;
2172 /* Test case provided by Cal Haldenbrand */
2173 static test_return_t
user_supplied_bug2(memcached_st
*memc
)
2175 unsigned int setter
;
2179 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, setter
);
2180 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
2182 setter
= 20 * 1024576;
2183 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
, setter
);
2184 setter
= 20 * 1024576;
2185 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
, setter
);
2186 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
);
2187 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
);
2189 for (x
= 0, errors
= 0; total
< 20 * 1024576 ; x
++)
2192 for (uint32_t x
= 0, errors
= 0; total
< 24576 ; x
++)
2194 memcached_return_t rc
= MEMCACHED_SUCCESS
;
2195 char buffer
[SMALL_STRING_LEN
];
2200 memset(buffer
, 0, SMALL_STRING_LEN
);
2202 snprintf(buffer
, sizeof(buffer
), "%u", x
);
2203 getval
= memcached_get(memc
, buffer
, strlen(buffer
),
2204 &val_len
, &flags
, &rc
);
2205 if (rc
!= MEMCACHED_SUCCESS
)
2207 if (rc
== MEMCACHED_NOTFOUND
)
2221 return TEST_SUCCESS
;
2224 /* Do a large mget() over all the keys we think exist */
2225 #define KEY_COUNT 3000 // * 1024576
2226 static test_return_t
user_supplied_bug3(memcached_st
*memc
)
2228 memcached_return_t rc
;
2229 unsigned int setter
;
2232 size_t key_lengths
[KEY_COUNT
];
2235 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, setter
);
2236 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
2238 setter
= 20 * 1024576;
2239 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
, setter
);
2240 setter
= 20 * 1024576;
2241 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
, setter
);
2242 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE
);
2243 getter
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
);
2246 keys
= static_cast<char **>(calloc(KEY_COUNT
, sizeof(char *)));
2248 for (x
= 0; x
< KEY_COUNT
; x
++)
2252 snprintf(buffer
, 30, "%u", x
);
2253 keys
[x
]= strdup(buffer
);
2254 key_lengths
[x
]= strlen(keys
[x
]);
2257 rc
= memcached_mget(memc
, (const char **)keys
, key_lengths
, KEY_COUNT
);
2258 test_true(rc
== MEMCACHED_SUCCESS
);
2260 size_t keys_returned
;
2261 test_true(fetch_all_results(memc
, &keys_returned
) == TEST_SUCCESS
);
2263 for (x
= 0; x
< KEY_COUNT
; x
++)
2267 return TEST_SUCCESS
;
2270 /* Make sure we behave properly if server list has no values */
2271 static test_return_t
user_supplied_bug4(memcached_st
*memc
)
2273 memcached_return_t rc
;
2274 const char *keys
[]= {"fudge", "son", "food"};
2275 size_t key_length
[]= {5, 3, 4};
2278 char return_key
[MEMCACHED_MAX_KEY
];
2279 size_t return_key_length
;
2281 size_t return_value_length
;
2283 /* Here we free everything before running a bunch of mget tests */
2284 memcached_servers_reset(memc
);
2287 /* We need to empty the server before continueing test */
2288 rc
= memcached_flush(memc
, 0);
2289 test_compare(rc
, MEMCACHED_NO_SERVERS
);
2291 rc
= memcached_mget(memc
, keys
, key_length
, 3);
2292 test_true(rc
== MEMCACHED_NO_SERVERS
);
2294 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2295 &return_value_length
, &flags
, &rc
)) != NULL
)
2297 test_true(return_value
);
2299 test_false(return_value
);
2300 test_true(return_value_length
== 0);
2301 test_true(rc
== MEMCACHED_NO_SERVERS
);
2303 for (x
= 0; x
< 3; x
++)
2305 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2306 keys
[x
], key_length
[x
],
2307 (time_t)50, (uint32_t)9);
2308 test_true(rc
== MEMCACHED_NO_SERVERS
);
2311 rc
= memcached_mget(memc
, keys
, key_length
, 3);
2312 test_true(rc
== MEMCACHED_NO_SERVERS
);
2315 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2316 &return_value_length
, &flags
, &rc
)))
2318 test_true(return_value
);
2319 test_true(rc
== MEMCACHED_SUCCESS
);
2320 test_true(return_key_length
== return_value_length
);
2321 test_memcmp(return_value
, return_key
, return_value_length
);
2326 return TEST_SUCCESS
;
2329 #define VALUE_SIZE_BUG5 1048064
2330 static test_return_t
user_supplied_bug5(memcached_st
*memc
)
2332 memcached_return_t rc
;
2333 const char *keys
[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
2334 size_t key_length
[]= {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
2335 char return_key
[MEMCACHED_MAX_KEY
];
2336 size_t return_key_length
;
2338 size_t value_length
;
2342 char *insert_data
= new (std::nothrow
) char[VALUE_SIZE_BUG5
];
2344 for (x
= 0; x
< VALUE_SIZE_BUG5
; x
++)
2345 insert_data
[x
]= (signed char)rand();
2347 memcached_flush(memc
, 0);
2348 value
= memcached_get(memc
, keys
[0], key_length
[0],
2349 &value_length
, &flags
, &rc
);
2350 test_true(value
== NULL
);
2351 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2354 while ((value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2355 &value_length
, &flags
, &rc
)))
2357 test_true(count
== 0);
2359 for (x
= 0; x
< 4; x
++)
2361 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2362 insert_data
, VALUE_SIZE_BUG5
,
2363 (time_t)0, (uint32_t)0);
2364 test_true(rc
== MEMCACHED_SUCCESS
);
2367 for (x
= 0; x
< 10; x
++)
2369 value
= memcached_get(memc
, keys
[0], key_length
[0],
2370 &value_length
, &flags
, &rc
);
2374 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2376 while ((value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2377 &value_length
, &flags
, &rc
)))
2382 test_true(count
== 4);
2384 delete [] insert_data
;
2386 return TEST_SUCCESS
;
2389 static test_return_t
user_supplied_bug6(memcached_st
*memc
)
2391 memcached_return_t rc
;
2392 const char *keys
[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
2393 size_t key_length
[]= {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
2394 char return_key
[MEMCACHED_MAX_KEY
];
2395 size_t return_key_length
;
2397 size_t value_length
;
2401 char *insert_data
= new (std::nothrow
) char[VALUE_SIZE_BUG5
];
2403 for (x
= 0; x
< VALUE_SIZE_BUG5
; x
++)
2404 insert_data
[x
]= (signed char)rand();
2406 memcached_flush(memc
, 0);
2407 value
= memcached_get(memc
, keys
[0], key_length
[0],
2408 &value_length
, &flags
, &rc
);
2409 test_true(value
== NULL
);
2410 test_true(rc
== MEMCACHED_NOTFOUND
);
2411 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2412 test_true(rc
== MEMCACHED_SUCCESS
);
2415 while ((value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2416 &value_length
, &flags
, &rc
)))
2418 test_true(count
== 0);
2419 test_true(rc
== MEMCACHED_END
);
2421 for (x
= 0; x
< 4; x
++)
2423 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2424 insert_data
, VALUE_SIZE_BUG5
,
2425 (time_t)0, (uint32_t)0);
2426 test_true(rc
== MEMCACHED_SUCCESS
);
2429 for (x
= 0; x
< 2; x
++)
2431 value
= memcached_get(memc
, keys
[0], key_length
[0],
2432 &value_length
, &flags
, &rc
);
2436 rc
= memcached_mget(memc
, keys
, key_length
, 4);
2437 test_true(rc
== MEMCACHED_SUCCESS
);
2439 /* We test for purge of partial complete fetches */
2440 for (count
= 3; count
; count
--)
2442 value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2443 &value_length
, &flags
, &rc
);
2444 test_true(rc
== MEMCACHED_SUCCESS
);
2445 test_true(!(memcmp(value
, insert_data
, value_length
)));
2446 test_true(value_length
);
2450 delete [] insert_data
;
2452 return TEST_SUCCESS
;
2455 static test_return_t
user_supplied_bug8(memcached_st
*memc
)
2457 memcached_return_t rc
;
2459 memcached_st
*memc_clone
;
2461 memcached_server_st
*servers
;
2462 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";
2465 servers
= memcached_servers_parse(server_list
);
2468 mine
= memcached_create(NULL
);
2469 rc
= memcached_server_push(mine
, servers
);
2470 test_true(rc
== MEMCACHED_SUCCESS
);
2471 memcached_server_list_free(servers
);
2474 memc_clone
= memcached_clone(NULL
, mine
);
2476 memcached_quit(mine
);
2477 memcached_quit(memc_clone
);
2480 memcached_free(mine
);
2481 memcached_free(memc_clone
);
2483 return TEST_SUCCESS
;
2486 /* Test flag store/retrieve */
2487 static test_return_t
user_supplied_bug7(memcached_st
*memc
)
2489 memcached_return_t rc
;
2490 const char *keys
= "036790384900";
2491 size_t key_length
= strlen(keys
);
2492 char return_key
[MEMCACHED_MAX_KEY
];
2493 size_t return_key_length
;
2495 size_t value_length
;
2498 char *insert_data
= new (std::nothrow
) char[VALUE_SIZE_BUG5
];
2500 for (x
= 0; x
< VALUE_SIZE_BUG5
; x
++)
2501 insert_data
[x
]= (signed char)rand();
2503 memcached_flush(memc
, 0);
2506 rc
= memcached_set(memc
, keys
, key_length
,
2507 insert_data
, VALUE_SIZE_BUG5
,
2509 test_true(rc
== MEMCACHED_SUCCESS
);
2512 value
= memcached_get(memc
, keys
, key_length
,
2513 &value_length
, &flags
, &rc
);
2514 test_true(flags
== 245);
2518 rc
= memcached_mget(memc
, &keys
, &key_length
, 1);
2521 value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2522 &value_length
, &flags
, &rc
);
2523 test_compare(245, flags
);
2526 delete [] insert_data
;
2529 return TEST_SUCCESS
;
2532 static test_return_t
user_supplied_bug9(memcached_st
*memc
)
2534 memcached_return_t rc
;
2535 const char *keys
[]= {"UDATA:edevil@sapo.pt", "fudge&*@#", "for^#@&$not"};
2536 size_t key_length
[3];
2540 char return_key
[MEMCACHED_MAX_KEY
];
2541 size_t return_key_length
;
2543 size_t return_value_length
;
2546 key_length
[0]= strlen("UDATA:edevil@sapo.pt");
2547 key_length
[1]= strlen("fudge&*@#");
2548 key_length
[2]= strlen("for^#@&$not");
2551 for (unsigned int x
= 0; x
< 3; x
++)
2553 rc
= memcached_set(memc
, keys
[x
], key_length
[x
],
2554 keys
[x
], key_length
[x
],
2555 (time_t)50, (uint32_t)9);
2556 test_true(rc
== MEMCACHED_SUCCESS
);
2559 rc
= memcached_mget(memc
, keys
, key_length
, 3);
2560 test_true(rc
== MEMCACHED_SUCCESS
);
2562 /* We need to empty the server before continueing test */
2563 while ((return_value
= memcached_fetch(memc
, return_key
, &return_key_length
,
2564 &return_value_length
, &flags
, &rc
)) != NULL
)
2566 test_true(return_value
);
2570 test_true(count
== 3);
2572 return TEST_SUCCESS
;
2575 /* We are testing with aggressive timeout to get failures */
2576 static test_return_t
user_supplied_bug10(memcached_st
*memc
)
2578 const char *key
= "foo";
2580 size_t value_length
= 512;
2583 memcached_return_t rc
;
2584 unsigned int set
= 1;
2585 memcached_st
*mclone
= memcached_clone(NULL
, memc
);
2588 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
2589 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
2591 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
,
2594 value
= (char*)malloc(value_length
* sizeof(char));
2596 for (x
= 0; x
< value_length
; x
++)
2597 value
[x
]= (char) (x
% 127);
2599 for (x
= 1; x
<= 100000; ++x
)
2601 rc
= memcached_set(mclone
, key
, key_len
,value
, value_length
, 0, 0);
2603 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_WRITE_FAILURE
||
2604 rc
== MEMCACHED_BUFFERED
|| rc
== MEMCACHED_TIMEOUT
);
2606 if (rc
== MEMCACHED_WRITE_FAILURE
|| rc
== MEMCACHED_TIMEOUT
)
2611 memcached_free(mclone
);
2613 return TEST_SUCCESS
;
2617 We are looking failures in the async protocol
2619 static test_return_t
user_supplied_bug11(memcached_st
*memc
)
2621 const char *key
= "foo";
2623 size_t value_length
= 512;
2626 memcached_return_t rc
;
2627 unsigned int set
= 1;
2629 memcached_st
*mclone
= memcached_clone(NULL
, memc
);
2631 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_NO_BLOCK
, set
);
2632 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, set
);
2634 memcached_behavior_set(mclone
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
,
2637 timeout
= (int32_t)memcached_behavior_get(mclone
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
);
2639 test_true(timeout
== -1);
2641 value
= (char*)malloc(value_length
* sizeof(char));
2643 for (x
= 0; x
< value_length
; x
++)
2644 value
[x
]= (char) (x
% 127);
2646 for (x
= 1; x
<= 100000; ++x
)
2648 rc
= memcached_set(mclone
, key
, key_len
,value
, value_length
, 0, 0);
2652 memcached_free(mclone
);
2654 return TEST_SUCCESS
;
2658 Bug found where incr was not returning MEMCACHED_NOTFOUND when object did not exist.
2660 static test_return_t
user_supplied_bug12(memcached_st
*memc
)
2662 memcached_return_t rc
;
2664 size_t value_length
;
2666 uint64_t number_value
;
2668 value
= memcached_get(memc
, "autoincrement", strlen("autoincrement"),
2669 &value_length
, &flags
, &rc
);
2670 test_true(value
== NULL
);
2671 test_true(rc
== MEMCACHED_NOTFOUND
);
2673 rc
= memcached_increment(memc
, "autoincrement", strlen("autoincrement"),
2676 test_true(value
== NULL
);
2677 /* The binary protocol will set the key if it doesn't exist */
2678 if (memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 1)
2680 test_true(rc
== MEMCACHED_SUCCESS
);
2684 test_true(rc
== MEMCACHED_NOTFOUND
);
2687 rc
= memcached_set(memc
, "autoincrement", strlen("autoincrement"), "1", 1, 0, 0);
2689 value
= memcached_get(memc
, "autoincrement", strlen("autoincrement"),
2690 &value_length
, &flags
, &rc
);
2692 test_true(rc
== MEMCACHED_SUCCESS
);
2695 rc
= memcached_increment(memc
, "autoincrement", strlen("autoincrement"),
2697 test_true(number_value
== 2);
2698 test_true(rc
== MEMCACHED_SUCCESS
);
2700 return TEST_SUCCESS
;
2704 Bug found where command total one more than MEMCACHED_MAX_BUFFER
2705 set key34567890 0 0 8169 \r\n is sent followed by buffer of size 8169, followed by 8169
2707 static test_return_t
user_supplied_bug13(memcached_st
*memc
)
2709 char key
[] = "key34567890";
2710 memcached_return_t rc
;
2711 size_t overflowSize
;
2713 char commandFirst
[]= "set key34567890 0 0 ";
2714 char commandLast
[] = " \r\n"; /* first line of command sent to server */
2715 size_t commandLength
;
2718 commandLength
= strlen(commandFirst
) + strlen(commandLast
) + 4; /* 4 is number of characters in size, probably 8196 */
2720 overflowSize
= MEMCACHED_MAX_BUFFER
- commandLength
;
2722 for (testSize
= overflowSize
- 1; testSize
< overflowSize
+ 1; testSize
++)
2724 char *overflow
= new (std::nothrow
) char[testSize
];
2725 test_true(overflow
);
2727 memset(overflow
, 'x', testSize
);
2728 rc
= memcached_set(memc
, key
, strlen(key
),
2729 overflow
, testSize
, 0, 0);
2730 test_true(rc
== MEMCACHED_SUCCESS
);
2734 return TEST_SUCCESS
;
2739 Test values of many different sizes
2740 Bug found where command total one more than MEMCACHED_MAX_BUFFER
2741 set key34567890 0 0 8169 \r\n
2742 is sent followed by buffer of size 8169, followed by 8169
2744 static test_return_t
user_supplied_bug14(memcached_st
*memc
)
2747 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, setter
);
2748 memcached_return_t rc
;
2749 const char *key
= "foo";
2751 size_t value_length
= 18000;
2753 size_t string_length
;
2756 size_t current_length
;
2758 value
= (char*)malloc(value_length
);
2761 for (x
= 0; x
< value_length
; x
++)
2762 value
[x
] = (char) (x
% 127);
2764 for (current_length
= 0; current_length
< value_length
; current_length
++)
2766 rc
= memcached_set(memc
, key
, strlen(key
),
2767 value
, current_length
,
2768 (time_t)0, (uint32_t)0);
2769 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
2771 string
= memcached_get(memc
, key
, strlen(key
),
2772 &string_length
, &flags
, &rc
);
2774 test_true(rc
== MEMCACHED_SUCCESS
);
2775 test_true(string_length
== current_length
);
2776 test_true(!memcmp(string
, value
, string_length
));
2783 return TEST_SUCCESS
;
2787 Look for zero length value problems
2789 static test_return_t
user_supplied_bug15(memcached_st
*memc
)
2792 memcached_return_t rc
;
2793 const char *key
= "mykey";
2798 for (x
= 0; x
< 2; x
++)
2800 rc
= memcached_set(memc
, key
, strlen(key
),
2802 (time_t)0, (uint32_t)0);
2804 test_true(rc
== MEMCACHED_SUCCESS
);
2806 value
= memcached_get(memc
, key
, strlen(key
),
2807 &length
, &flags
, &rc
);
2809 test_true(rc
== MEMCACHED_SUCCESS
);
2810 test_true(value
== NULL
);
2811 test_true(length
== 0);
2812 test_true(flags
== 0);
2814 value
= memcached_get(memc
, key
, strlen(key
),
2815 &length
, &flags
, &rc
);
2817 test_true(rc
== MEMCACHED_SUCCESS
);
2818 test_true(value
== NULL
);
2819 test_true(length
== 0);
2820 test_true(flags
== 0);
2823 return TEST_SUCCESS
;
2826 /* Check the return sizes on FLAGS to make sure it stores 32bit unsigned values correctly */
2827 static test_return_t
user_supplied_bug16(memcached_st
*memc
)
2829 memcached_return_t rc
;
2830 const char *key
= "mykey";
2835 rc
= memcached_set(memc
, key
, strlen(key
),
2837 (time_t)0, UINT32_MAX
);
2839 test_true(rc
== MEMCACHED_SUCCESS
);
2841 value
= memcached_get(memc
, key
, strlen(key
),
2842 &length
, &flags
, &rc
);
2844 test_true(rc
== MEMCACHED_SUCCESS
);
2845 test_true(value
== NULL
);
2846 test_true(length
== 0);
2847 test_true(flags
== UINT32_MAX
);
2849 return TEST_SUCCESS
;
2852 #if !defined(__sun) && !defined(__OpenBSD__)
2853 /* Check the validity of chinese key*/
2854 static test_return_t
user_supplied_bug17(memcached_st
*memc
)
2856 memcached_return_t rc
;
2857 const char *key
= "豆瓣";
2858 const char *value
="我们在炎热抑郁的夏天无法停止豆瓣";
2863 rc
= memcached_set(memc
, key
, strlen(key
),
2864 value
, strlen(value
),
2867 test_true(rc
== MEMCACHED_SUCCESS
);
2869 value2
= memcached_get(memc
, key
, strlen(key
),
2870 &length
, &flags
, &rc
);
2872 test_true(length
==strlen(value
));
2873 test_true(rc
== MEMCACHED_SUCCESS
);
2874 test_true(memcmp(value
, value2
, length
)==0);
2877 return TEST_SUCCESS
;
2885 static test_return_t
user_supplied_bug19(memcached_st
*not_used
)
2888 const memcached_server_st
*server
;
2889 memcached_return_t res
;
2893 memc
= memcached_create(NULL
);
2894 memcached_server_add_with_weight(memc
, "localhost", 11311, 100);
2895 memcached_server_add_with_weight(memc
, "localhost", 11312, 100);
2897 server
= memcached_server_by_key(memc
, "a", 1, &res
);
2899 memcached_free(memc
);
2901 return TEST_SUCCESS
;
2904 /* CAS test from Andei */
2905 static test_return_t
user_supplied_bug20(memcached_st
*memc
)
2907 memcached_return_t status
;
2908 memcached_result_st
*result
, result_obj
;
2909 const char *key
= "abc";
2910 size_t key_len
= strlen("abc");
2911 const char *value
= "foobar";
2912 size_t value_len
= strlen(value
);
2914 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, 1);
2916 status
= memcached_set(memc
, key
, key_len
, value
, value_len
, (time_t)0, (uint32_t)0);
2917 test_true(status
== MEMCACHED_SUCCESS
);
2919 status
= memcached_mget(memc
, &key
, &key_len
, 1);
2920 test_true(status
== MEMCACHED_SUCCESS
);
2922 result
= memcached_result_create(memc
, &result_obj
);
2925 memcached_result_create(memc
, &result_obj
);
2926 result
= memcached_fetch_result(memc
, &result_obj
, &status
);
2929 test_true(status
== MEMCACHED_SUCCESS
);
2931 memcached_result_free(result
);
2933 return TEST_SUCCESS
;
2936 #include "ketama_test_cases.h"
2937 static test_return_t
user_supplied_bug18(memcached_st
*trash
)
2939 memcached_return_t rc
;
2942 memcached_server_st
*server_pool
;
2947 memc
= memcached_create(NULL
);
2950 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
2951 test_true(rc
== MEMCACHED_SUCCESS
);
2953 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
2954 test_true(value
== 1);
2956 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
2957 test_true(rc
== MEMCACHED_SUCCESS
);
2959 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
2960 test_true(value
== MEMCACHED_HASH_MD5
);
2962 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");
2963 memcached_server_push(memc
, server_pool
);
2965 /* verify that the server list was parsed okay. */
2966 test_true(memcached_server_count(memc
) == 8);
2967 test_true(strcmp(server_pool
[0].hostname
, "10.0.1.1") == 0);
2968 test_true(server_pool
[0].port
== 11211);
2969 test_true(server_pool
[0].weight
== 600);
2970 test_true(strcmp(server_pool
[2].hostname
, "10.0.1.3") == 0);
2971 test_true(server_pool
[2].port
== 11211);
2972 test_true(server_pool
[2].weight
== 200);
2973 test_true(strcmp(server_pool
[7].hostname
, "10.0.1.8") == 0);
2974 test_true(server_pool
[7].port
== 11211);
2975 test_true(server_pool
[7].weight
== 100);
2977 /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
2978 * us test the boundary wraparound.
2980 test_true(memcached_generate_hash(memc
, (char *)"VDEAAAAA", 8) == memc
->ketama
.continuum
[0].index
);
2982 /* verify the standard ketama set. */
2983 for (x
= 0; x
< 99; x
++)
2985 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
2987 memcached_server_instance_st instance
=
2988 memcached_server_instance_by_position(memc
, server_idx
);
2990 const char *hostname
= memcached_server_name(instance
);
2991 test_strcmp(hostname
, ketama_test_cases
[x
].server
);
2994 memcached_server_list_free(server_pool
);
2995 memcached_free(memc
);
2997 return TEST_SUCCESS
;
3000 /* Large mget() of missing keys with binary proto
3002 * If many binary quiet commands (such as getq's in an mget) fill the output
3003 * buffer and the server chooses not to respond, memcached_flush hangs. See
3004 * http://lists.tangent.org/pipermail/libmemcached/2009-August/000918.html
3007 /* sighandler_t function that always asserts false */
3008 static void fail(int unused
)
3015 static test_return_t
_user_supplied_bug21(memcached_st
* memc
, size_t key_count
)
3020 return TEST_SKIPPED
;
3022 memcached_return_t rc
;
3025 size_t* key_lengths
;
3026 void (*oldalarm
)(int);
3027 memcached_st
*memc_clone
;
3029 memc_clone
= memcached_clone(NULL
, memc
);
3030 test_true(memc_clone
);
3032 /* only binproto uses getq for mget */
3033 memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
3035 /* empty the cache to ensure misses (hence non-responses) */
3036 rc
= memcached_flush(memc_clone
, 0);
3037 test_true(rc
== MEMCACHED_SUCCESS
);
3039 key_lengths
= new (std::nothrow
) size_t[key_count
];
3040 test_true(key_lengths
);
3041 keys
= static_cast<char **>(calloc(key_count
, sizeof(char *)));
3043 for (x
= 0; x
< key_count
; x
++)
3047 snprintf(buffer
, 30, "%u", x
);
3048 keys
[x
]= strdup(buffer
);
3049 key_lengths
[x
]= strlen(keys
[x
]);
3052 oldalarm
= signal(SIGALRM
, fail
);
3055 rc
= memcached_mget(memc_clone
, (const char **)keys
, key_lengths
, key_count
);
3056 test_true(rc
== MEMCACHED_SUCCESS
);
3059 signal(SIGALRM
, oldalarm
);
3061 size_t keys_returned
;
3062 test_true(fetch_all_results(memc
, &keys_returned
) == TEST_SUCCESS
);
3064 for (x
= 0; x
< key_count
; x
++)
3069 memcached_free(memc_clone
);
3071 return TEST_SUCCESS
;
3075 static test_return_t
user_supplied_bug21(memcached_st
*memc
)
3077 test_return_t test_rc
;
3078 test_rc
= pre_binary(memc
);
3080 if (test_rc
!= TEST_SUCCESS
)
3085 /* should work as of r580 */
3086 rc
= _user_supplied_bug21(memc
, 10);
3087 test_true(rc
== TEST_SUCCESS
);
3089 /* should fail as of r580 */
3090 rc
= _user_supplied_bug21(memc
, 1000);
3091 test_true(rc
== TEST_SUCCESS
);
3093 return TEST_SUCCESS
;
3096 static test_return_t
auto_eject_hosts(memcached_st
*trash
)
3099 memcached_server_instance_st instance
;
3101 memcached_return_t rc
;
3102 memcached_st
*memc
= memcached_create(NULL
);
3105 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
3106 test_true(rc
== MEMCACHED_SUCCESS
);
3108 uint64_t value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
3109 test_true(value
== 1);
3111 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
3112 test_true(rc
== MEMCACHED_SUCCESS
);
3114 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
3115 test_true(value
== MEMCACHED_HASH_MD5
);
3117 /* server should be removed when in delay */
3118 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
, 1);
3119 test_true(rc
== MEMCACHED_SUCCESS
);
3121 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS
);
3122 test_true(value
== 1);
3124 memcached_server_st
*server_pool
;
3125 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");
3126 memcached_server_push(memc
, server_pool
);
3128 /* verify that the server list was parsed okay. */
3129 test_true(memcached_server_count(memc
) == 8);
3130 test_true(strcmp(server_pool
[0].hostname
, "10.0.1.1") == 0);
3131 test_true(server_pool
[0].port
== 11211);
3132 test_true(server_pool
[0].weight
== 600);
3133 test_true(strcmp(server_pool
[2].hostname
, "10.0.1.3") == 0);
3134 test_true(server_pool
[2].port
== 11211);
3135 test_true(server_pool
[2].weight
== 200);
3136 test_true(strcmp(server_pool
[7].hostname
, "10.0.1.8") == 0);
3137 test_true(server_pool
[7].port
== 11211);
3138 test_true(server_pool
[7].weight
== 100);
3140 instance
= memcached_server_instance_by_position(memc
, 2);
3141 ((memcached_server_write_instance_st
)instance
)->next_retry
= time(NULL
) + 15;
3142 memc
->ketama
.next_distribution_rebuild
= time(NULL
) - 1;
3145 This would not work if there were only two hosts.
3147 for (size_t x
= 0; x
< 99; x
++)
3149 memcached_autoeject(memc
);
3150 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
3151 test_true(server_idx
!= 2);
3154 /* and re-added when it's back. */
3155 ((memcached_server_write_instance_st
)instance
)->next_retry
= time(NULL
) - 1;
3156 memc
->ketama
.next_distribution_rebuild
= time(NULL
) - 1;
3157 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
,
3158 memc
->distribution
);
3159 for (size_t x
= 0; x
< 99; x
++)
3161 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
3162 // We re-use instance from above.
3164 memcached_server_instance_by_position(memc
, server_idx
);
3165 const char *hostname
= memcached_server_name(instance
);
3166 test_true(strcmp(hostname
, ketama_test_cases
[x
].server
) == 0);
3169 memcached_server_list_free(server_pool
);
3170 memcached_free(memc
);
3172 return TEST_SUCCESS
;
3175 static test_return_t
output_ketama_weighted_keys(memcached_st
*trash
)
3179 memcached_return_t rc
;
3180 memcached_st
*memc
= memcached_create(NULL
);
3184 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
3185 test_true(rc
== MEMCACHED_SUCCESS
);
3187 uint64_t value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
3188 test_true(value
== 1);
3190 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
3191 test_true(rc
== MEMCACHED_SUCCESS
);
3193 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
3194 test_true(value
== MEMCACHED_HASH_MD5
);
3197 test_true(memcached_behavior_set_distribution(memc
, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
) == MEMCACHED_SUCCESS
);
3199 memcached_server_st
*server_pool
;
3200 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");
3201 memcached_server_push(memc
, server_pool
);
3203 // @todo this needs to be refactored to actually test something.
3206 if ((fp
= fopen("ketama_keys.txt", "w")))
3210 printf("cannot write to file ketama_keys.txt");
3211 return TEST_FAILURE
;
3214 for (int x
= 0; x
< 10000; x
++)
3217 snprintf(key
, sizeof(key
), "%d", x
);
3219 uint32_t server_idx
= memcached_generate_hash(memc
, key
, strlen(key
));
3220 char *hostname
= memc
->hosts
[server_idx
].hostname
;
3221 in_port_t port
= memc
->hosts
[server_idx
].port
;
3222 fprintf(fp
, "key %s is on host /%s:%u\n", key
, hostname
, port
);
3223 memcached_server_instance_st instance
=
3224 memcached_server_instance_by_position(memc
, host_index
);
3228 memcached_server_list_free(server_pool
);
3229 memcached_free(memc
);
3231 return TEST_SUCCESS
;
3235 static test_return_t
result_static(memcached_st
*memc
)
3237 memcached_result_st result
;
3238 memcached_result_st
*result_ptr
;
3240 result_ptr
= memcached_result_create(memc
, &result
);
3241 test_true(result
.options
.is_allocated
== false);
3242 test_true(memcached_is_initialized(&result
) == true);
3243 test_true(result_ptr
);
3244 test_true(result_ptr
== &result
);
3246 memcached_result_free(&result
);
3248 test_true(result
.options
.is_allocated
== false);
3249 test_true(memcached_is_initialized(&result
) == false);
3251 return TEST_SUCCESS
;
3254 static test_return_t
result_alloc(memcached_st
*memc
)
3256 memcached_result_st
*result_ptr
;
3258 result_ptr
= memcached_result_create(memc
, NULL
);
3259 test_true(result_ptr
);
3260 test_true(result_ptr
->options
.is_allocated
== true);
3261 test_true(memcached_is_initialized(result_ptr
) == true);
3262 memcached_result_free(result_ptr
);
3264 return TEST_SUCCESS
;
3267 static test_return_t
cleanup_pairs(memcached_st
*memc
)
3270 pairs_free(global_pairs
);
3272 return TEST_SUCCESS
;
3275 static test_return_t
generate_pairs(memcached_st
*memc
)
3278 global_pairs
= pairs_generate(GLOBAL_COUNT
, 400);
3279 global_count
= GLOBAL_COUNT
;
3281 for (size_t x
= 0; x
< global_count
; x
++)
3283 global_keys
[x
]= global_pairs
[x
].key
;
3284 global_keys_length
[x
]= global_pairs
[x
].key_length
;
3287 return TEST_SUCCESS
;
3290 static test_return_t
generate_large_pairs(memcached_st
*memc
)
3293 global_pairs
= pairs_generate(GLOBAL2_COUNT
, MEMCACHED_MAX_BUFFER
+10);
3294 global_count
= GLOBAL2_COUNT
;
3296 for (size_t x
= 0; x
< global_count
; x
++)
3298 global_keys
[x
]= global_pairs
[x
].key
;
3299 global_keys_length
[x
]= global_pairs
[x
].key_length
;
3302 return TEST_SUCCESS
;
3305 static test_return_t
generate_data(memcached_st
*memc
)
3307 unsigned int check_execute
= execute_set(memc
, global_pairs
, global_count
);
3309 test_true(check_execute
== global_count
);
3311 return TEST_SUCCESS
;
3314 static test_return_t
generate_data_with_stats(memcached_st
*memc
)
3316 memcached_stat_st
*stat_p
;
3317 memcached_return_t rc
;
3318 uint32_t host_index
= 0;
3319 unsigned int check_execute
= execute_set(memc
, global_pairs
, global_count
);
3321 test_true(check_execute
== global_count
);
3323 //TODO: hosts used size stats
3324 stat_p
= memcached_stat(memc
, NULL
, &rc
);
3327 for (host_index
= 0; host_index
< SERVERS_TO_CREATE
; host_index
++)
3329 /* This test was changes so that "make test" would work properlly */
3331 memcached_server_instance_st instance
=
3332 memcached_server_instance_by_position(memc
, host_index
);
3334 printf("\nserver %u|%s|%u bytes: %llu\n", host_index
, instance
->hostname
, instance
->port
, (unsigned long long)(stat_p
+ host_index
)->bytes
);
3336 test_true((unsigned long long)(stat_p
+ host_index
)->bytes
);
3339 memcached_stat_free(NULL
, stat_p
);
3341 return TEST_SUCCESS
;
3343 static test_return_t
generate_buffer_data(memcached_st
*memc
)
3348 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, latch
);
3349 generate_data(memc
);
3351 return TEST_SUCCESS
;
3354 static test_return_t
get_read_count(memcached_st
*memc
)
3356 memcached_return_t rc
;
3357 memcached_st
*memc_clone
;
3359 memc_clone
= memcached_clone(NULL
, memc
);
3360 test_true(memc_clone
);
3362 memcached_server_add_with_weight(memc_clone
, "localhost", 6666, 0);
3366 size_t return_value_length
;
3370 for (size_t x
= count
= 0; x
< global_count
; x
++)
3372 return_value
= memcached_get(memc_clone
, global_keys
[x
], global_keys_length
[x
],
3373 &return_value_length
, &flags
, &rc
);
3374 if (rc
== MEMCACHED_SUCCESS
)
3383 memcached_free(memc_clone
);
3385 return TEST_SUCCESS
;
3388 static test_return_t
get_read(memcached_st
*memc
)
3390 memcached_return_t rc
;
3394 size_t return_value_length
;
3397 for (size_t x
= 0; x
< global_count
; x
++)
3399 return_value
= memcached_get(memc
, global_keys
[x
], global_keys_length
[x
],
3400 &return_value_length
, &flags
, &rc
);
3402 test_true(return_value);
3403 test_true(rc == MEMCACHED_SUCCESS);
3405 if (rc
== MEMCACHED_SUCCESS
&& return_value
)
3410 return TEST_SUCCESS
;
3413 static test_return_t
mget_read(memcached_st
*memc
)
3415 memcached_return_t rc
;
3417 if (! libmemcached_util_version_check(memc
, 1, 4, 4))
3418 return TEST_SKIPPED
;
3420 rc
= memcached_mget(memc
, global_keys
, global_keys_length
, global_count
);
3422 test_true_got(rc
== MEMCACHED_SUCCESS
, memcached_strerror(NULL
, rc
));
3424 // Go fetch the keys and test to see if all of them were returned
3426 size_t keys_returned
;
3427 test_true(fetch_all_results(memc
, &keys_returned
) == TEST_SUCCESS
);
3429 snprintf(buffer
, sizeof(buffer
), "%lu", (unsigned long)keys_returned
);
3430 test_true_got(global_count
== keys_returned
, buffer
);
3434 return TEST_SUCCESS
;
3437 static test_return_t
mget_read_result(memcached_st
*memc
)
3439 memcached_return_t rc
;
3441 if (! libmemcached_util_version_check(memc
, 1, 4, 4))
3442 return TEST_SKIPPED
;
3444 rc
= memcached_mget(memc
, global_keys
, global_keys_length
, global_count
);
3446 test_true_got(rc
== MEMCACHED_SUCCESS
, memcached_strerror(NULL
, rc
));
3448 /* Turn this into a help function */
3450 memcached_result_st results_obj
;
3451 memcached_result_st
*results
;
3453 results
= memcached_result_create(memc
, &results_obj
);
3455 while ((results
= memcached_fetch_result(memc
, &results_obj
, &rc
)))
3458 test_true(rc
== MEMCACHED_SUCCESS
);
3461 memcached_result_free(&results_obj
);
3464 return TEST_SUCCESS
;
3467 static test_return_t
mget_read_function(memcached_st
*memc
)
3469 memcached_return_t rc
;
3471 memcached_execute_fn callbacks
[1];
3473 if (! libmemcached_util_version_check(memc
, 1, 4, 4))
3474 return TEST_SKIPPED
;
3476 rc
= memcached_mget(memc
, global_keys
, global_keys_length
, global_count
);
3478 test_true_got(rc
== MEMCACHED_SUCCESS
, memcached_strerror(NULL
, rc
));
3480 callbacks
[0]= &callback_counter
;
3482 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
3484 return TEST_SUCCESS
;
3487 static test_return_t
delete_generate(memcached_st
*memc
)
3489 for (size_t x
= 0; x
< global_count
; x
++)
3491 (void)memcached_delete(memc
, global_keys
[x
], global_keys_length
[x
], (time_t)0);
3494 return TEST_SUCCESS
;
3497 static test_return_t
delete_buffer_generate(memcached_st
*memc
)
3502 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, latch
);
3504 for (size_t x
= 0; x
< global_count
; x
++)
3506 (void)memcached_delete(memc
, global_keys
[x
], global_keys_length
[x
], (time_t)0);
3509 return TEST_SUCCESS
;
3512 static test_return_t
add_host_test1(memcached_st
*memc
)
3514 memcached_return_t rc
;
3515 char servername
[]= "0.example.com";
3516 memcached_server_st
*servers
;
3518 servers
= memcached_server_list_append_with_weight(NULL
, servername
, 400, 0, &rc
);
3520 test_true(1 == memcached_server_list_count(servers
));
3522 for (size_t x
= 2; x
< 20; x
++)
3524 char buffer
[SMALL_STRING_LEN
];
3526 snprintf(buffer
, SMALL_STRING_LEN
, "%lu.example.com", (unsigned long)(400 +x
));
3527 servers
= memcached_server_list_append_with_weight(servers
, buffer
, 401, 0,
3529 test_true(rc
== MEMCACHED_SUCCESS
);
3530 test_true(x
== memcached_server_list_count(servers
));
3533 rc
= memcached_server_push(memc
, servers
);
3534 test_true(rc
== MEMCACHED_SUCCESS
);
3535 rc
= memcached_server_push(memc
, servers
);
3536 test_true(rc
== MEMCACHED_SUCCESS
);
3538 memcached_server_list_free(servers
);
3540 return TEST_SUCCESS
;
3543 static test_return_t
pre_nonblock(memcached_st
*memc
)
3545 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 0);
3547 return TEST_SUCCESS
;
3550 static test_return_t
pre_cork(memcached_st
*memc
)
3552 memcached_return_t rc
;
3555 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_CORK
, set
);
3558 return TEST_SKIPPED
;
3561 if (rc
== MEMCACHED_SUCCESS
)
3562 return TEST_SUCCESS
;
3564 return TEST_SKIPPED
;
3567 static test_return_t
pre_cork_and_nonblock(memcached_st
*memc
)
3574 return TEST_SKIPPED
;
3577 if (rc
!= TEST_SUCCESS
)
3580 return pre_nonblock(memc
);
3583 static test_return_t
pre_nonblock_binary(memcached_st
*memc
)
3585 memcached_return_t rc
= MEMCACHED_FAILURE
;
3586 memcached_st
*memc_clone
;
3588 memc_clone
= memcached_clone(NULL
, memc
);
3589 test_true(memc_clone
);
3590 // The memcached_version needs to be done on a clone, because the server
3591 // will not toggle protocol on an connection.
3592 memcached_version(memc_clone
);
3594 if (libmemcached_util_version_check(memc_clone
, 1, 4, 4))
3596 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 0);
3597 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
3598 test_true(rc
== MEMCACHED_SUCCESS
);
3599 test_true(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 1);
3603 return TEST_SKIPPED
;
3606 memcached_free(memc_clone
);
3608 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3611 static test_return_t
pre_murmur(memcached_st
*memc
)
3613 #ifdef HAVE_MURMUR_HASH
3614 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_MURMUR
);
3615 return TEST_SUCCESS
;
3618 return TEST_SKIPPED
;
3622 static test_return_t
pre_jenkins(memcached_st
*memc
)
3624 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_JENKINS
);
3626 return TEST_SUCCESS
;
3630 static test_return_t
pre_md5(memcached_st
*memc
)
3632 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_MD5
);
3634 return TEST_SUCCESS
;
3637 static test_return_t
pre_crc(memcached_st
*memc
)
3639 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_CRC
);
3641 return TEST_SUCCESS
;
3644 static test_return_t
pre_hsieh(memcached_st
*memc
)
3646 #ifdef HAVE_HSIEH_HASH
3647 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_HSIEH
);
3648 return TEST_SUCCESS
;
3651 return TEST_SKIPPED
;
3655 static test_return_t
pre_hash_fnv1_64(memcached_st
*memc
)
3657 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_MURMUR
);
3659 return TEST_SUCCESS
;
3662 static test_return_t
pre_hash_fnv1a_64(memcached_st
*memc
)
3664 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_FNV1A_64
);
3666 return TEST_SUCCESS
;
3669 static test_return_t
pre_hash_fnv1_32(memcached_st
*memc
)
3671 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_FNV1_32
);
3673 return TEST_SUCCESS
;
3676 static test_return_t
pre_hash_fnv1a_32(memcached_st
*memc
)
3678 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
, (uint64_t)MEMCACHED_HASH_FNV1A_32
);
3680 return TEST_SUCCESS
;
3683 static test_return_t
pre_behavior_ketama(memcached_st
*memc
)
3685 memcached_return_t rc
;
3688 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA
, 1);
3689 test_true(rc
== MEMCACHED_SUCCESS
);
3691 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA
);
3692 test_true(value
== 1);
3694 return TEST_SUCCESS
;
3697 static test_return_t
pre_behavior_ketama_weighted(memcached_st
*memc
)
3699 memcached_return_t rc
;
3702 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
3703 test_true(rc
== MEMCACHED_SUCCESS
);
3705 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
3706 test_true(value
== 1);
3708 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
, MEMCACHED_HASH_MD5
);
3709 test_true(rc
== MEMCACHED_SUCCESS
);
3711 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_HASH
);
3712 test_true(value
== MEMCACHED_HASH_MD5
);
3714 return TEST_SUCCESS
;
3718 @note This should be testing to see if the server really supports the binary protocol.
3720 static test_return_t
pre_binary(memcached_st
*memc
)
3722 memcached_return_t rc
= MEMCACHED_FAILURE
;
3724 if (libmemcached_util_version_check(memc
, 1, 4, 4))
3726 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
3727 test_true(rc
== MEMCACHED_SUCCESS
);
3728 test_true(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
) == 1);
3731 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3734 static test_return_t
pre_sasl(memcached_st
*memc
)
3736 memcached_return_t rc
= MEMCACHED_FAILURE
;
3738 #ifdef LIBMEMCACHED_WITH_SASL_SUPPORT
3739 const char *server
= getenv("LIBMEMCACHED_TEST_SASL_SERVER");
3740 const char *user
= getenv("LIBMEMCACHED_TEST_SASL_USERNAME");
3741 const char *pass
= getenv("LIBMEMCACHED_TEST_SASL_PASSWORD");
3743 if (server
!= NULL
&& user
!= NULL
&& pass
!= NULL
)
3745 memcached_server_st
*servers
= memcached_servers_parse(server
);
3746 test_true(servers
!= NULL
);
3747 memcached_servers_reset(memc
);
3748 test_true(memcached_server_push(memc
, servers
) == MEMCACHED_SUCCESS
);
3749 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
3750 rc
= memcached_set_sasl_auth_data(memc
, user
, pass
);
3751 test_true(rc
== MEMCACHED_SUCCESS
);
3757 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3760 static test_return_t
pre_replication(memcached_st
*memc
)
3762 test_return_t test_rc
;
3763 test_rc
= pre_binary(memc
);
3765 if (test_rc
!= TEST_SUCCESS
)
3769 * Make sure that we store the item on all servers
3770 * (master + replicas == number of servers)
3772 memcached_return_t rc
;
3773 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
,
3774 memcached_server_count(memc
) - 1);
3775 test_true(rc
== MEMCACHED_SUCCESS
);
3776 test_true(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
) == memcached_server_count(memc
) - 1);
3778 return rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_SKIPPED
;
3782 static test_return_t
pre_replication_noblock(memcached_st
*memc
)
3786 rc
= pre_replication(memc
);
3787 if (rc
!= TEST_SUCCESS
)
3790 rc
= pre_nonblock(memc
);
3796 static void my_free(const memcached_st
*ptr
, void *mem
, void *context
)
3800 #ifdef HARD_MALLOC_TESTS
3801 void *real_ptr
= (mem
== NULL
) ? mem
: (void*)((caddr_t
)mem
- 8);
3809 static void *my_malloc(const memcached_st
*ptr
, const size_t size
, void *context
)
3813 #ifdef HARD_MALLOC_TESTS
3814 void *ret
= malloc(size
+ 8);
3817 ret
= (void*)((caddr_t
)ret
+ 8);
3820 void *ret
= malloc(size
);
3825 memset(ret
, 0xff, size
);
3832 static void *my_realloc(const memcached_st
*ptr
, void *mem
, const size_t size
, void *context
)
3835 #ifdef HARD_MALLOC_TESTS
3836 void *real_ptr
= (mem
== NULL
) ? NULL
: (void*)((caddr_t
)mem
- 8);
3837 void *nmem
= realloc(real_ptr
, size
+ 8);
3842 ret
= (void*)((caddr_t
)nmem
+ 8);
3848 return realloc(mem
, size
);
3853 static void *my_calloc(const memcached_st
*ptr
, size_t nelem
, const size_t size
, void *context
)
3856 #ifdef HARD_MALLOC_TESTS
3857 void *mem
= my_malloc(ptr
, nelem
* size
);
3860 memset(mem
, 0, nelem
* size
);
3866 return calloc(nelem
, size
);
3870 static test_return_t
set_prefix(memcached_st
*memc
)
3872 memcached_return_t rc
;
3873 const char *key
= "mine";
3876 /* Make sure be default none exists */
3877 value
= (char*)memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3878 test_true(rc
== MEMCACHED_FAILURE
);
3880 /* Test a clean set */
3881 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, (void *)key
);
3882 test_true_got(rc
== MEMCACHED_SUCCESS
, memcached_last_error_message(memc
));
3884 value
= (char*)memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3886 test_true(memcmp(value
, key
, 4) == 0);
3887 test_true(rc
== MEMCACHED_SUCCESS
);
3889 /* Test that we can turn it off */
3890 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, NULL
);
3891 test_true(rc
== MEMCACHED_SUCCESS
);
3893 value
= (char*)memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3895 test_true(rc
== MEMCACHED_FAILURE
);
3897 /* Now setup for main test */
3898 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, (void *)key
);
3899 test_true(rc
== MEMCACHED_SUCCESS
);
3901 value
= (char *)memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3903 test_true(rc
== MEMCACHED_SUCCESS
);
3904 test_true(memcmp(value
, key
, 4) == 0);
3906 /* Set to Zero, and then Set to something too large */
3909 memset(long_key
, 0, 255);
3911 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, NULL
);
3912 test_true(rc
== MEMCACHED_SUCCESS
);
3914 value
= (char*)memcached_callback_get(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, &rc
);
3916 test_true(rc
== MEMCACHED_FAILURE
);
3917 test_true(value
== NULL
);
3919 /* Test a long key for failure */
3920 /* TODO, extend test to determine based on setting, what result should be */
3921 strncpy(long_key
, "Thisismorethentheallottednumberofcharacters", sizeof(long_key
));
3922 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, long_key
);
3923 //test_true(rc == MEMCACHED_BAD_KEY_PROVIDED);
3924 test_true(rc
== MEMCACHED_SUCCESS
);
3926 /* Now test a key with spaces (which will fail from long key, since bad key is not set) */
3927 strncpy(long_key
, "This is more then the allotted number of characters", sizeof(long_key
));
3928 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, long_key
);
3929 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
3931 /* Test for a bad prefix, but with a short key */
3932 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_VERIFY_KEY
, 1);
3933 test_true(rc
== MEMCACHED_SUCCESS
);
3935 strncpy(long_key
, "dog cat", sizeof(long_key
));
3936 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_PREFIX_KEY
, long_key
);
3937 test_true(rc
== MEMCACHED_BAD_KEY_PROVIDED
);
3940 return TEST_SUCCESS
;
3944 #ifdef MEMCACHED_ENABLE_DEPRECATED
3945 static test_return_t
deprecated_set_memory_alloc(memcached_st
*memc
)
3947 void *test_ptr
= NULL
;
3950 memcached_malloc_fn malloc_cb
=
3951 (memcached_malloc_fn
)my_malloc
;
3952 cb_ptr
= *(void **)&malloc_cb
;
3953 memcached_return_t rc
;
3955 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_MALLOC_FUNCTION
, cb_ptr
);
3956 test_true(rc
== MEMCACHED_SUCCESS
);
3957 test_ptr
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_MALLOC_FUNCTION
, &rc
);
3958 test_true(rc
== MEMCACHED_SUCCESS
);
3959 test_true(test_ptr
== cb_ptr
);
3963 memcached_realloc_fn realloc_cb
=
3964 (memcached_realloc_fn
)my_realloc
;
3965 cb_ptr
= *(void **)&realloc_cb
;
3966 memcached_return_t rc
;
3968 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_REALLOC_FUNCTION
, cb_ptr
);
3969 test_true(rc
== MEMCACHED_SUCCESS
);
3970 test_ptr
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_REALLOC_FUNCTION
, &rc
);
3971 test_true(rc
== MEMCACHED_SUCCESS
);
3972 test_true(test_ptr
== cb_ptr
);
3976 memcached_free_fn free_cb
=
3977 (memcached_free_fn
)my_free
;
3978 cb_ptr
= *(void **)&free_cb
;
3979 memcached_return_t rc
;
3981 rc
= memcached_callback_set(memc
, MEMCACHED_CALLBACK_FREE_FUNCTION
, cb_ptr
);
3982 test_true(rc
== MEMCACHED_SUCCESS
);
3983 test_ptr
= memcached_callback_get(memc
, MEMCACHED_CALLBACK_FREE_FUNCTION
, &rc
);
3984 test_true(rc
== MEMCACHED_SUCCESS
);
3985 test_true(test_ptr
== cb_ptr
);
3988 return TEST_SUCCESS
;
3993 static test_return_t
set_memory_alloc(memcached_st
*memc
)
3995 memcached_return_t rc
;
3996 rc
= memcached_set_memory_allocators(memc
, NULL
, my_free
,
3997 my_realloc
, my_calloc
, NULL
);
3998 test_true(rc
== MEMCACHED_FAILURE
);
4000 rc
= memcached_set_memory_allocators(memc
, my_malloc
, my_free
,
4001 my_realloc
, my_calloc
, NULL
);
4003 memcached_malloc_fn mem_malloc
;
4004 memcached_free_fn mem_free
;
4005 memcached_realloc_fn mem_realloc
;
4006 memcached_calloc_fn mem_calloc
;
4007 memcached_get_memory_allocators(memc
, &mem_malloc
, &mem_free
,
4008 &mem_realloc
, &mem_calloc
);
4010 test_true(mem_malloc
== my_malloc
);
4011 test_true(mem_realloc
== my_realloc
);
4012 test_true(mem_calloc
== my_calloc
);
4013 test_true(mem_free
== my_free
);
4015 return TEST_SUCCESS
;
4018 static test_return_t
enable_consistent_crc(memcached_st
*memc
)
4021 memcached_server_distribution_t value
= MEMCACHED_DISTRIBUTION_CONSISTENT
;
4022 memcached_hash_t hash
;
4023 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
, value
);
4024 if ((rc
= pre_crc(memc
)) != TEST_SUCCESS
)
4027 value
= (memcached_server_distribution_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
);
4028 test_true(value
== MEMCACHED_DISTRIBUTION_CONSISTENT
);
4030 hash
= (memcached_hash_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
4032 if (hash
!= MEMCACHED_HASH_CRC
)
4033 return TEST_SKIPPED
;
4035 return TEST_SUCCESS
;
4038 static test_return_t
enable_consistent_hsieh(memcached_st
*memc
)
4041 memcached_server_distribution_t value
= MEMCACHED_DISTRIBUTION_CONSISTENT
;
4042 memcached_hash_t hash
;
4043 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
, value
);
4044 if ((rc
= pre_hsieh(memc
)) != TEST_SUCCESS
)
4047 value
= (memcached_server_distribution_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_DISTRIBUTION
);
4048 test_true(value
== MEMCACHED_DISTRIBUTION_CONSISTENT
);
4050 hash
= (memcached_hash_t
)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_HASH
);
4052 if (hash
!= MEMCACHED_HASH_HSIEH
)
4053 return TEST_SKIPPED
;
4056 return TEST_SUCCESS
;
4059 static test_return_t
enable_cas(memcached_st
*memc
)
4061 unsigned int set
= 1;
4063 if (libmemcached_util_version_check(memc
, 1, 2, 4))
4065 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, set
);
4067 return TEST_SUCCESS
;
4070 return TEST_SKIPPED
;
4073 static test_return_t
check_for_1_2_3(memcached_st
*memc
)
4075 memcached_version(memc
);
4077 memcached_server_instance_st instance
=
4078 memcached_server_instance_by_position(memc
, 0);
4080 if ((instance
->major_version
>= 1 && (instance
->minor_version
== 2 && instance
->micro_version
>= 4))
4081 || instance
->minor_version
> 2)
4083 return TEST_SUCCESS
;
4086 return TEST_SKIPPED
;
4089 static test_return_t
pre_unix_socket(memcached_st
*memc
)
4091 memcached_return_t rc
;
4094 memcached_servers_reset(memc
);
4096 if (stat("/tmp/memcached.socket", &buf
))
4097 return TEST_SKIPPED
;
4099 rc
= memcached_server_add_unix_socket_with_weight(memc
, "/tmp/memcached.socket", 0);
4101 return ( rc
== MEMCACHED_SUCCESS
? TEST_SUCCESS
: TEST_FAILURE
);
4104 static test_return_t
pre_nodelay(memcached_st
*memc
)
4106 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 0);
4107 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, 0);
4109 return TEST_SUCCESS
;
4112 static test_return_t
pre_settimer(memcached_st
*memc
)
4114 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SND_TIMEOUT
, 1000);
4115 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_RCV_TIMEOUT
, 1000);
4117 return TEST_SUCCESS
;
4120 static test_return_t
poll_timeout(memcached_st
*memc
)
4126 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
, timeout
);
4128 timeout
= (size_t)memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
);
4130 test_true(timeout
== 100);
4132 return TEST_SUCCESS
;
4135 static test_return_t
noreply_test(memcached_st
*memc
)
4137 memcached_return_t ret
;
4138 ret
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 1);
4139 test_true(ret
== MEMCACHED_SUCCESS
);
4140 ret
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
4141 test_true(ret
== MEMCACHED_SUCCESS
);
4142 ret
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
, 1);
4143 test_true(ret
== MEMCACHED_SUCCESS
);
4144 test_true(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_NOREPLY
) == 1);
4145 test_true(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
) == 1);
4146 test_true(memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_SUPPORT_CAS
) == 1);
4148 for (int count
=0; count
< 5; ++count
)
4150 for (size_t x
= 0; x
< 100; ++x
)
4153 int check_length
= (size_t)snprintf(key
, sizeof(key
), "%lu", (unsigned long)x
);
4154 test_false((size_t)check_length
>= sizeof(key
) || check_length
< 0);
4156 size_t len
= (size_t)check_length
;
4161 ret
= memcached_add(memc
, key
, len
, key
, len
, 0, 0);
4164 ret
= memcached_replace(memc
, key
, len
, key
, len
, 0, 0);
4167 ret
= memcached_set(memc
, key
, len
, key
, len
, 0, 0);
4170 ret
= memcached_append(memc
, key
, len
, key
, len
, 0, 0);
4173 ret
= memcached_prepend(memc
, key
, len
, key
, len
, 0, 0);
4179 test_true(ret
== MEMCACHED_SUCCESS
|| ret
== MEMCACHED_BUFFERED
);
4183 ** NOTE: Don't ever do this in your code! this is not a supported use of the
4184 ** API and is _ONLY_ done this way to verify that the library works the
4185 ** way it is supposed to do!!!!
4188 for (uint32_t x
= 0; x
< memcached_server_count(memc
); ++x
)
4190 memcached_server_instance_st instance
=
4191 memcached_server_instance_by_position(memc
, x
);
4192 no_msg
+=(int)(instance
->cursor_active
);
4195 test_true(no_msg
== 0);
4196 test_true(memcached_flush_buffers(memc
) == MEMCACHED_SUCCESS
);
4199 ** Now validate that all items was set properly!
4201 for (size_t x
= 0; x
< 100; ++x
)
4205 int check_length
= (size_t)snprintf(key
, sizeof(key
), "%lu", (unsigned long)x
);
4207 test_false((size_t)check_length
>= sizeof(key
) || check_length
< 0);
4209 size_t len
= (size_t)check_length
;
4212 char* value
=memcached_get(memc
, key
, strlen(key
),
4213 &length
, &flags
, &ret
);
4214 test_true(ret
== MEMCACHED_SUCCESS
&& value
!= NULL
);
4217 case 0: /* FALLTHROUGH */
4218 case 1: /* FALLTHROUGH */
4220 test_true(strncmp(value
, key
, len
) == 0);
4221 test_true(len
== length
);
4224 test_true(length
== len
* 2);
4227 test_true(length
== len
* 3);
4237 /* Try setting an illegal cas value (should not return an error to
4238 * the caller (because we don't expect a return message from the server)
4240 const char* keys
[]= {"0"};
4241 size_t lengths
[]= {1};
4244 memcached_result_st results_obj
;
4245 memcached_result_st
*results
;
4246 ret
= memcached_mget(memc
, keys
, lengths
, 1);
4247 test_true(ret
== MEMCACHED_SUCCESS
);
4249 results
= memcached_result_create(memc
, &results_obj
);
4251 results
= memcached_fetch_result(memc
, &results_obj
, &ret
);
4253 test_true(ret
== MEMCACHED_SUCCESS
);
4254 uint64_t cas
= memcached_result_cas(results
);
4255 memcached_result_free(&results_obj
);
4257 ret
= memcached_cas(memc
, keys
[0], lengths
[0], keys
[0], lengths
[0], 0, 0, cas
);
4258 test_true(ret
== MEMCACHED_SUCCESS
);
4261 * The item will have a new cas value, so try to set it again with the old
4262 * value. This should fail!
4264 ret
= memcached_cas(memc
, keys
[0], lengths
[0], keys
[0], lengths
[0], 0, 0, cas
);
4265 test_true(ret
== MEMCACHED_SUCCESS
);
4266 test_true(memcached_flush_buffers(memc
) == MEMCACHED_SUCCESS
);
4267 char* value
=memcached_get(memc
, keys
[0], lengths
[0], &length
, &flags
, &ret
);
4268 test_true(ret
== MEMCACHED_SUCCESS
&& value
!= NULL
);
4271 return TEST_SUCCESS
;
4274 static test_return_t
analyzer_test(memcached_st
*memc
)
4276 memcached_return_t rc
;
4277 memcached_stat_st
*memc_stat
;
4278 memcached_analysis_st
*report
;
4280 memc_stat
= memcached_stat(memc
, NULL
, &rc
);
4281 test_true(rc
== MEMCACHED_SUCCESS
);
4282 test_true(memc_stat
);
4284 report
= memcached_analyze(memc
, memc_stat
, &rc
);
4285 test_true(rc
== MEMCACHED_SUCCESS
);
4289 memcached_stat_free(NULL
, memc_stat
);
4291 return TEST_SUCCESS
;
4294 /* Count the objects */
4295 static memcached_return_t
callback_dump_counter(const memcached_st
*ptr
,
4300 (void)ptr
; (void)key
; (void)key_length
;
4301 size_t *counter
= (size_t *)context
;
4303 *counter
= *counter
+ 1;
4305 return MEMCACHED_SUCCESS
;
4308 static test_return_t
dump_test(memcached_st
*memc
)
4310 memcached_return_t rc
;
4312 memcached_dump_fn callbacks
[1];
4313 test_return_t main_rc
;
4315 callbacks
[0]= &callback_dump_counter
;
4317 /* No support for Binary protocol yet */
4318 if (memc
->flags
.binary_protocol
)
4319 return TEST_SUCCESS
;
4321 main_rc
= set_test3(memc
);
4323 test_true (main_rc
== TEST_SUCCESS
);
4325 rc
= memcached_dump(memc
, callbacks
, (void *)&counter
, 1);
4326 test_true(rc
== MEMCACHED_SUCCESS
);
4328 /* We may have more then 32 if our previous flush has not completed */
4329 test_true(counter
>= 32);
4331 return TEST_SUCCESS
;
4334 #ifdef HAVE_LIBMEMCACHEDUTIL
4336 struct test_pool_context_st
{
4337 memcached_pool_st
* pool
;
4341 static void* connection_release(void *arg
)
4343 test_pool_context_st
*resource
= static_cast<test_pool_context_st
*>(arg
);
4346 // Release all of the memc we are holding
4347 assert(memcached_pool_push(resource
->pool
, resource
->mmc
) == MEMCACHED_SUCCESS
);
4351 #define POOL_SIZE 10
4352 static test_return_t
connection_pool_test(memcached_st
*memc
)
4354 memcached_pool_st
* pool
= memcached_pool_create(memc
, 5, POOL_SIZE
);
4355 test_true(pool
!= NULL
);
4356 memcached_st
*mmc
[POOL_SIZE
];
4357 memcached_return_t rc
;
4359 // Fill up our array that we will store the memc that are in the pool
4360 for (size_t x
= 0; x
< POOL_SIZE
; ++x
)
4362 mmc
[x
]= memcached_pool_pop(pool
, false, &rc
);
4363 test_true(mmc
[x
] != NULL
);
4364 test_true(rc
== MEMCACHED_SUCCESS
);
4367 // All memc should be gone
4368 test_true(memcached_pool_pop(pool
, false, &rc
) == NULL
);
4369 test_true(rc
== MEMCACHED_SUCCESS
);
4372 test_pool_context_st item
= { pool
, mmc
[9] };
4374 pthread_create(&tid
, NULL
, connection_release
, &item
);
4375 mmc
[9]= memcached_pool_pop(pool
, true, &rc
);
4376 test_true(rc
== MEMCACHED_SUCCESS
);
4377 pthread_join(tid
, NULL
);
4379 const char *key
= "key";
4380 size_t keylen
= strlen(key
);
4382 // verify that I can do ops with all connections
4383 rc
= memcached_set(mmc
[0], key
, keylen
, "0", 1, 0, 0);
4384 test_true(rc
== MEMCACHED_SUCCESS
);
4386 for (size_t x
= 0; x
< POOL_SIZE
; ++x
)
4388 uint64_t number_value
;
4389 rc
= memcached_increment(mmc
[x
], key
, keylen
, 1, &number_value
);
4390 test_true(rc
== MEMCACHED_SUCCESS
);
4391 test_true(number_value
== (x
+1));
4395 for (size_t x
= 0; x
< POOL_SIZE
; ++x
)
4397 test_true(memcached_pool_push(pool
, mmc
[x
]) == MEMCACHED_SUCCESS
);
4401 /* verify that I can set behaviors on the pool when I don't have all
4402 * of the connections in the pool. It should however be enabled
4403 * when I push the item into the pool
4405 mmc
[0]= memcached_pool_pop(pool
, false, &rc
);
4406 test_true(mmc
[0] != NULL
);
4408 rc
= memcached_pool_behavior_set(pool
, MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
, 9999);
4409 test_true(rc
== MEMCACHED_SUCCESS
);
4411 mmc
[1]= memcached_pool_pop(pool
, false, &rc
);
4412 test_true(mmc
[1] != NULL
);
4414 test_true(memcached_behavior_get(mmc
[1], MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
) == 9999);
4415 test_true(memcached_pool_push(pool
, mmc
[1]) == MEMCACHED_SUCCESS
);
4416 test_true(memcached_pool_push(pool
, mmc
[0]) == MEMCACHED_SUCCESS
);
4418 mmc
[0]= memcached_pool_pop(pool
, false, &rc
);
4419 test_true(memcached_behavior_get(mmc
[0], MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK
) == 9999);
4420 test_true(memcached_pool_push(pool
, mmc
[0]) == MEMCACHED_SUCCESS
);
4422 test_true(memcached_pool_destroy(pool
) == memc
);
4424 return TEST_SUCCESS
;
4427 static test_return_t
util_version_test(memcached_st
*memc
)
4431 if_successful
= libmemcached_util_version_check(memc
, 0, 0, 0);
4432 test_true(if_successful
== true);
4434 if_successful
= libmemcached_util_version_check(memc
, 9, 9, 9);
4436 // We expect failure
4439 fprintf(stderr
, "\n----------------------------------------------------------------------\n");
4440 fprintf(stderr
, "\nDumping Server Information\n\n");
4441 memcached_server_fn callbacks
[1];
4443 callbacks
[0]= dump_server_information
;
4444 memcached_server_cursor(memc
, callbacks
, (void *)stderr
, 1);
4445 fprintf(stderr
, "\n----------------------------------------------------------------------\n");
4447 test_true(if_successful
== false);
4449 memcached_server_instance_st instance
=
4450 memcached_server_instance_by_position(memc
, 0);
4452 memcached_version(memc
);
4454 // We only use one binary when we test, so this should be just fine.
4455 if_successful
= libmemcached_util_version_check(memc
, instance
->major_version
, instance
->minor_version
, instance
->micro_version
);
4456 test_true(if_successful
== true);
4458 if (instance
->micro_version
> 0)
4459 if_successful
= libmemcached_util_version_check(memc
, instance
->major_version
, instance
->minor_version
, (uint8_t)(instance
->micro_version
-1));
4460 else if (instance
->minor_version
> 0)
4461 if_successful
= libmemcached_util_version_check(memc
, instance
->major_version
, (uint8_t)(instance
->minor_version
- 1), instance
->micro_version
);
4462 else if (instance
->major_version
> 0)
4463 if_successful
= libmemcached_util_version_check(memc
, (uint8_t)(instance
->major_version
-1), instance
->minor_version
, instance
->micro_version
);
4465 test_true(if_successful
== true);
4467 if (instance
->micro_version
> 0)
4468 if_successful
= libmemcached_util_version_check(memc
, instance
->major_version
, instance
->minor_version
, (uint8_t)(instance
->micro_version
+1));
4469 else if (instance
->minor_version
> 0)
4470 if_successful
= libmemcached_util_version_check(memc
, instance
->major_version
, (uint8_t)(instance
->minor_version
+1), instance
->micro_version
);
4471 else if (instance
->major_version
> 0)
4472 if_successful
= libmemcached_util_version_check(memc
, (uint8_t)(instance
->major_version
+1), instance
->minor_version
, instance
->micro_version
);
4474 test_true(if_successful
== false);
4476 return TEST_SUCCESS
;
4479 static test_return_t
ping_test(memcached_st
*memc
)
4481 memcached_return_t rc
;
4482 memcached_server_instance_st instance
=
4483 memcached_server_instance_by_position(memc
, 0);
4485 // Test both the version that returns a code, and the one that does not.
4486 test_true(libmemcached_util_ping(memcached_server_name(instance
),
4487 memcached_server_port(instance
), NULL
));
4489 test_true(libmemcached_util_ping(memcached_server_name(instance
),
4490 memcached_server_port(instance
), &rc
));
4492 test_true(rc
== MEMCACHED_SUCCESS
);
4494 return TEST_SUCCESS
;
4500 static test_return_t
hash_sanity_test (memcached_st
*memc
)
4504 assert(MEMCACHED_HASH_DEFAULT
== MEMCACHED_HASH_DEFAULT
);
4505 assert(MEMCACHED_HASH_MD5
== MEMCACHED_HASH_MD5
);
4506 assert(MEMCACHED_HASH_CRC
== MEMCACHED_HASH_CRC
);
4507 assert(MEMCACHED_HASH_FNV1_64
== MEMCACHED_HASH_FNV1_64
);
4508 assert(MEMCACHED_HASH_FNV1A_64
== MEMCACHED_HASH_FNV1A_64
);
4509 assert(MEMCACHED_HASH_FNV1_32
== MEMCACHED_HASH_FNV1_32
);
4510 assert(MEMCACHED_HASH_FNV1A_32
== MEMCACHED_HASH_FNV1A_32
);
4511 #ifdef HAVE_HSIEH_HASH
4512 assert(MEMCACHED_HASH_HSIEH
== MEMCACHED_HASH_HSIEH
);
4514 assert(MEMCACHED_HASH_MURMUR
== MEMCACHED_HASH_MURMUR
);
4515 assert(MEMCACHED_HASH_JENKINS
== MEMCACHED_HASH_JENKINS
);
4516 assert(MEMCACHED_HASH_MAX
== MEMCACHED_HASH_MAX
);
4518 return TEST_SUCCESS
;
4522 static test_return_t
hsieh_avaibility_test (memcached_st
*memc
)
4524 memcached_return_t expected_rc
= MEMCACHED_INVALID_ARGUMENTS
;
4525 #ifdef HAVE_HSIEH_HASH
4526 expected_rc
= MEMCACHED_SUCCESS
;
4528 memcached_return_t rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
,
4529 (uint64_t)MEMCACHED_HASH_HSIEH
);
4530 test_true(rc
== expected_rc
);
4532 return TEST_SUCCESS
;
4535 static test_return_t
murmur_avaibility_test (memcached_st
*memc
)
4537 memcached_return_t expected_rc
= MEMCACHED_INVALID_ARGUMENTS
;
4538 #ifdef HAVE_MURMUR_HASH
4539 expected_rc
= MEMCACHED_SUCCESS
;
4541 memcached_return_t rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_HASH
,
4542 (uint64_t)MEMCACHED_HASH_MURMUR
);
4543 test_true(rc
== expected_rc
);
4545 return TEST_SUCCESS
;
4548 static test_return_t
one_at_a_time_run (memcached_st
*memc
)
4554 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4558 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_DEFAULT
);
4559 test_true(one_at_a_time_values
[x
] == hash_val
);
4562 return TEST_SUCCESS
;
4565 static test_return_t
md5_run (memcached_st
*memc
)
4571 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4575 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_MD5
);
4576 test_true(md5_values
[x
] == hash_val
);
4579 return TEST_SUCCESS
;
4582 static test_return_t
crc_run (memcached_st
*memc
)
4588 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4592 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_CRC
);
4593 test_true(crc_values
[x
] == hash_val
);
4596 return TEST_SUCCESS
;
4599 static test_return_t
fnv1_64_run (memcached_st
*memc
)
4605 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4609 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1_64
);
4610 test_true(fnv1_64_values
[x
] == hash_val
);
4613 return TEST_SUCCESS
;
4616 static test_return_t
fnv1a_64_run (memcached_st
*memc
)
4622 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4626 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1A_64
);
4627 test_true(fnv1a_64_values
[x
] == hash_val
);
4630 return TEST_SUCCESS
;
4633 static test_return_t
fnv1_32_run (memcached_st
*memc
)
4639 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4643 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1_32
);
4644 test_true(fnv1_32_values
[x
] == hash_val
);
4647 return TEST_SUCCESS
;
4650 static test_return_t
fnv1a_32_run (memcached_st
*memc
)
4656 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4660 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_FNV1A_32
);
4661 test_true(fnv1a_32_values
[x
] == hash_val
);
4664 return TEST_SUCCESS
;
4667 static test_return_t
hsieh_run (memcached_st
*memc
)
4673 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4677 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_HSIEH
);
4678 test_true(hsieh_values
[x
] == hash_val
);
4681 return TEST_SUCCESS
;
4684 static test_return_t
murmur_run (memcached_st
*memc
)
4686 #ifdef WORDS_BIGENDIAN
4687 (void)murmur_values
;
4688 return TEST_SKIPPED
;
4694 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4698 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_MURMUR
);
4699 test_true(murmur_values
[x
] == hash_val
);
4702 return TEST_SUCCESS
;
4706 static test_return_t
jenkins_run (memcached_st
*memc
)
4712 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4716 hash_val
= memcached_generate_hash_value(*ptr
, strlen(*ptr
), MEMCACHED_HASH_JENKINS
);
4717 test_true(jenkins_values
[x
] == hash_val
);
4720 return TEST_SUCCESS
;
4723 static uint32_t hash_md5_test_function(const char *string
, size_t string_length
, void *context
)
4726 return libhashkit_md5(string
, string_length
);
4729 static uint32_t hash_crc_test_function(const char *string
, size_t string_length
, void *context
)
4732 return libhashkit_crc32(string
, string_length
);
4735 static test_return_t
memcached_get_hashkit_test (memcached_st
*memc
)
4739 const hashkit_st
*kit
;
4741 hashkit_return_t hash_rc
;
4743 uint32_t md5_hosts
[]= {4U, 1U, 0U, 1U, 4U, 2U, 0U, 3U, 0U, 0U, 3U, 1U, 0U, 0U, 1U, 3U, 0U, 0U, 0U, 3U, 1U, 0U, 4U, 4U, 3U};
4744 uint32_t crc_hosts
[]= {2U, 4U, 1U, 0U, 2U, 4U, 4U, 4U, 1U, 2U, 3U, 4U, 3U, 4U, 1U, 3U, 3U, 2U, 0U, 0U, 0U, 1U, 2U, 4U, 0U};
4746 kit
= memcached_get_hashkit(memc
);
4748 hashkit_clone(&new_kit
, kit
);
4749 hash_rc
= hashkit_set_custom_function(&new_kit
, hash_md5_test_function
, NULL
);
4750 test_true(hash_rc
== HASHKIT_SUCCESS
);
4752 memcached_set_hashkit(memc
, &new_kit
);
4755 Verify Setting the hash.
4757 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4761 hash_val
= hashkit_digest(kit
, *ptr
, strlen(*ptr
));
4762 test_true(md5_values
[x
] == hash_val
);
4767 Now check memcached_st.
4769 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4773 hash_val
= memcached_generate_hash(memc
, *ptr
, strlen(*ptr
));
4774 test_true(md5_hosts
[x
] == hash_val
);
4777 hash_rc
= hashkit_set_custom_function(&new_kit
, hash_crc_test_function
, NULL
);
4778 test_true(hash_rc
== HASHKIT_SUCCESS
);
4780 memcached_set_hashkit(memc
, &new_kit
);
4783 Verify Setting the hash.
4785 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4789 hash_val
= hashkit_digest(kit
, *ptr
, strlen(*ptr
));
4790 test_true(crc_values
[x
] == hash_val
);
4793 for (ptr
= list_to_hash
, x
= 0; *ptr
; ptr
++, x
++)
4797 hash_val
= memcached_generate_hash(memc
, *ptr
, strlen(*ptr
));
4798 test_true(crc_hosts
[x
] == hash_val
);
4801 return TEST_SUCCESS
;
4805 Test case adapted from John Gorman <johngorman2@gmail.com>
4807 We are testing the error condition when we connect to a server via memcached_get()
4808 but find that the server is not available.
4810 static test_return_t
memcached_get_MEMCACHED_ERRNO(memcached_st
*memc
)
4813 memcached_st
*tl_memc_h
;
4814 memcached_server_st
*servers
;
4816 const char *key
= "MemcachedLives";
4819 memcached_return rc
;
4823 tl_memc_h
= memcached_create(NULL
);
4824 servers
= memcached_servers_parse("localhost:9898,localhost:9899"); // This server should not exist
4825 memcached_server_push(tl_memc_h
, servers
);
4826 memcached_server_list_free(servers
);
4828 // See if memcached is reachable.
4829 value
= memcached_get(tl_memc_h
, key
, strlen(key
), &len
, &flags
, &rc
);
4832 test_true(len
== 0);
4833 test_false(rc
== MEMCACHED_SUCCESS
);
4835 memcached_free(tl_memc_h
);
4837 return TEST_SUCCESS
;
4841 We connect to a server which exists, but search for a key that does not exist.
4843 static test_return_t
memcached_get_MEMCACHED_NOTFOUND(memcached_st
*memc
)
4845 const char *key
= "MemcachedKeyNotEXIST";
4848 memcached_return rc
;
4851 // See if memcached is reachable.
4852 value
= memcached_get(memc
, key
, strlen(key
), &len
, &flags
, &rc
);
4855 test_true(len
== 0);
4856 test_true(rc
== MEMCACHED_NOTFOUND
);
4858 return TEST_SUCCESS
;
4862 Test case adapted from John Gorman <johngorman2@gmail.com>
4864 We are testing the error condition when we connect to a server via memcached_get_by_key()
4865 but find that the server is not available.
4867 static test_return_t
memcached_get_by_key_MEMCACHED_ERRNO(memcached_st
*memc
)
4870 memcached_st
*tl_memc_h
;
4871 memcached_server_st
*servers
;
4873 const char *key
= "MemcachedLives";
4876 memcached_return rc
;
4880 tl_memc_h
= memcached_create(NULL
);
4881 servers
= memcached_servers_parse("localhost:9898,localhost:9899"); // This server should not exist
4882 memcached_server_push(tl_memc_h
, servers
);
4883 memcached_server_list_free(servers
);
4885 // See if memcached is reachable.
4886 value
= memcached_get_by_key(tl_memc_h
, key
, strlen(key
), key
, strlen(key
), &len
, &flags
, &rc
);
4889 test_true(len
== 0);
4890 test_false(rc
== MEMCACHED_SUCCESS
);
4892 memcached_free(tl_memc_h
);
4894 return TEST_SUCCESS
;
4898 We connect to a server which exists, but search for a key that does not exist.
4900 static test_return_t
memcached_get_by_key_MEMCACHED_NOTFOUND(memcached_st
*memc
)
4902 const char *key
= "MemcachedKeyNotEXIST";
4905 memcached_return rc
;
4908 // See if memcached is reachable.
4909 value
= memcached_get_by_key(memc
, key
, strlen(key
), key
, strlen(key
), &len
, &flags
, &rc
);
4912 test_true(len
== 0);
4913 test_true(rc
== MEMCACHED_NOTFOUND
);
4915 return TEST_SUCCESS
;
4919 static test_return_t
ketama_compatibility_libmemcached(memcached_st
*trash
)
4921 memcached_return_t rc
;
4924 memcached_server_st
*server_pool
;
4929 memc
= memcached_create(NULL
);
4932 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
4933 test_true(rc
== MEMCACHED_SUCCESS
);
4935 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
4936 test_true(value
== 1);
4938 test_true(memcached_behavior_set_distribution(memc
, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
) == MEMCACHED_SUCCESS
);
4939 test_true(memcached_behavior_get_distribution(memc
) == MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
);
4942 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");
4943 memcached_server_push(memc
, server_pool
);
4945 /* verify that the server list was parsed okay. */
4946 test_true(memcached_server_count(memc
) == 8);
4947 test_strcmp(server_pool
[0].hostname
, "10.0.1.1");
4948 test_true(server_pool
[0].port
== 11211);
4949 test_true(server_pool
[0].weight
== 600);
4950 test_strcmp(server_pool
[2].hostname
, "10.0.1.3");
4951 test_true(server_pool
[2].port
== 11211);
4952 test_true(server_pool
[2].weight
== 200);
4953 test_strcmp(server_pool
[7].hostname
, "10.0.1.8");
4954 test_true(server_pool
[7].port
== 11211);
4955 test_true(server_pool
[7].weight
== 100);
4957 /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
4958 * us test the boundary wraparound.
4960 test_true(memcached_generate_hash(memc
, (char *)"VDEAAAAA", 8) == memc
->ketama
.continuum
[0].index
);
4962 /* verify the standard ketama set. */
4963 for (x
= 0; x
< 99; x
++)
4965 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases
[x
].key
, strlen(ketama_test_cases
[x
].key
));
4966 memcached_server_instance_st instance
=
4967 memcached_server_instance_by_position(memc
, server_idx
);
4968 const char *hostname
= memcached_server_name(instance
);
4970 test_strcmp(hostname
, ketama_test_cases
[x
].server
);
4973 memcached_server_list_free(server_pool
);
4974 memcached_free(memc
);
4976 return TEST_SUCCESS
;
4979 static test_return_t
ketama_compatibility_spymemcached(memcached_st
*trash
)
4981 memcached_return_t rc
;
4983 memcached_server_st
*server_pool
;
4988 memc
= memcached_create(NULL
);
4991 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
, 1);
4992 test_true(rc
== MEMCACHED_SUCCESS
);
4994 value
= memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED
);
4995 test_true(value
== 1);
4997 test_true(memcached_behavior_set_distribution(memc
, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
) == MEMCACHED_SUCCESS
);
4998 test_true(memcached_behavior_get_distribution(memc
) == MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
);
5000 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");
5001 assert(server_pool
);
5002 memcached_server_push(memc
, server_pool
);
5004 /* verify that the server list was parsed okay. */
5005 test_true(memcached_server_count(memc
) == 8);
5006 test_strcmp(server_pool
[0].hostname
, "10.0.1.1");
5007 test_true(server_pool
[0].port
== 11211);
5008 test_true(server_pool
[0].weight
== 600);
5009 test_strcmp(server_pool
[2].hostname
, "10.0.1.3");
5010 test_true(server_pool
[2].port
== 11211);
5011 test_true(server_pool
[2].weight
== 200);
5012 test_strcmp(server_pool
[7].hostname
, "10.0.1.8");
5013 test_true(server_pool
[7].port
== 11211);
5014 test_true(server_pool
[7].weight
== 100);
5016 /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
5017 * us test the boundary wraparound.
5019 test_true(memcached_generate_hash(memc
, (char *)"VDEAAAAA", 8) == memc
->ketama
.continuum
[0].index
);
5021 /* verify the standard ketama set. */
5022 for (uint32_t x
= 0; x
< 99; x
++)
5024 uint32_t server_idx
= memcached_generate_hash(memc
, ketama_test_cases_spy
[x
].key
, strlen(ketama_test_cases_spy
[x
].key
));
5026 memcached_server_instance_st instance
=
5027 memcached_server_instance_by_position(memc
, server_idx
);
5029 const char *hostname
= memcached_server_name(instance
);
5031 test_strcmp(hostname
, ketama_test_cases_spy
[x
].server
);
5034 memcached_server_list_free(server_pool
);
5035 memcached_free(memc
);
5037 return TEST_SUCCESS
;
5040 static test_return_t
regression_bug_434484(memcached_st
*memc
)
5042 test_return_t test_rc
;
5043 test_rc
= pre_binary(memc
);
5045 if (test_rc
!= TEST_SUCCESS
)
5048 const char *key
= "regression_bug_434484";
5049 size_t keylen
= strlen(key
);
5051 memcached_return_t ret
= memcached_append(memc
, key
, keylen
, key
, keylen
, 0, 0);
5052 test_true(ret
== MEMCACHED_NOTSTORED
);
5054 size_t size
= 2048 * 1024;
5055 char *data
= (char*)calloc(1, size
);
5057 ret
= memcached_set(memc
, key
, keylen
, data
, size
, 0, 0);
5058 test_true(ret
== MEMCACHED_E2BIG
);
5061 return TEST_SUCCESS
;
5064 static test_return_t
regression_bug_434843(memcached_st
*memc
)
5066 test_return_t test_rc
;
5067 test_rc
= pre_binary(memc
);
5069 if (test_rc
!= TEST_SUCCESS
)
5072 memcached_return_t rc
;
5074 memcached_execute_fn callbacks
[]= { &callback_counter
};
5077 * I only want to hit only _one_ server so I know the number of requests I'm
5078 * sending in the pipleine to the server. Let's try to do a multiget of
5079 * 1024 (that should satisfy most users don't you think?). Future versions
5080 * will include a mget_execute function call if you need a higher number.
5082 uint32_t number_of_hosts
= memcached_server_count(memc
);
5083 memc
->number_of_hosts
= 1;
5084 const size_t max_keys
= 1024;
5085 char **keys
= (char**)calloc(max_keys
, sizeof(char*));
5086 size_t *key_length
= (size_t *)calloc(max_keys
, sizeof(size_t));
5088 for (size_t x
= 0; x
< max_keys
; ++x
)
5092 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%lu", (unsigned long)x
);
5094 test_true(keys
[x
] != NULL
);
5098 * Run two times.. the first time we should have 100% cache miss,
5099 * and the second time we should have 100% cache hits
5101 for (size_t y
= 0; y
< 2; y
++)
5103 rc
= memcached_mget(memc
, (const char**)keys
, key_length
, max_keys
);
5104 test_true(rc
== MEMCACHED_SUCCESS
);
5105 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5109 /* The first iteration should give me a 100% cache miss. verify that*/
5110 char blob
[1024]= { 0 };
5112 test_true(counter
== 0);
5114 for (size_t x
= 0; x
< max_keys
; ++x
)
5116 rc
= memcached_add(memc
, keys
[x
], key_length
[x
],
5117 blob
, sizeof(blob
), 0, 0);
5118 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5123 /* Verify that we received all of the key/value pairs */
5124 test_true(counter
== max_keys
);
5128 /* Release allocated resources */
5129 for (size_t x
= 0; x
< max_keys
; ++x
)
5136 memc
->number_of_hosts
= number_of_hosts
;
5138 return TEST_SUCCESS
;
5141 static test_return_t
regression_bug_434843_buffered(memcached_st
*memc
)
5143 memcached_return_t rc
;
5144 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
5145 test_true(rc
== MEMCACHED_SUCCESS
);
5147 return regression_bug_434843(memc
);
5150 static test_return_t
regression_bug_421108(memcached_st
*memc
)
5152 memcached_return_t rc
;
5153 memcached_stat_st
*memc_stat
= memcached_stat(memc
, NULL
, &rc
);
5154 test_true(rc
== MEMCACHED_SUCCESS
);
5156 char *bytes
= memcached_stat_get_value(memc
, memc_stat
, "bytes", &rc
);
5157 test_true(rc
== MEMCACHED_SUCCESS
);
5158 test_true(bytes
!= NULL
);
5159 char *bytes_read
= memcached_stat_get_value(memc
, memc_stat
,
5161 test_true(rc
== MEMCACHED_SUCCESS
);
5162 test_true(bytes_read
!= NULL
);
5164 char *bytes_written
= memcached_stat_get_value(memc
, memc_stat
,
5165 "bytes_written", &rc
);
5166 test_true(rc
== MEMCACHED_SUCCESS
);
5167 test_true(bytes_written
!= NULL
);
5169 test_true(strcmp(bytes
, bytes_read
) != 0);
5170 test_true(strcmp(bytes
, bytes_written
) != 0);
5172 /* Release allocated resources */
5175 free(bytes_written
);
5176 memcached_stat_free(NULL
, memc_stat
);
5178 return TEST_SUCCESS
;
5182 * The test case isn't obvious so I should probably document why
5183 * it works the way it does. Bug 442914 was caused by a bug
5184 * in the logic in memcached_purge (it did not handle the case
5185 * where the number of bytes sent was equal to the watermark).
5186 * In this test case, create messages so that we hit that case
5187 * and then disable noreply mode and issue a new command to
5188 * verify that it isn't stuck. If we change the format for the
5189 * delete command or the watermarks, we need to update this
5192 static test_return_t
regression_bug_442914(memcached_st
*memc
)
5194 memcached_return_t rc
;
5195 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 1);
5196 test_true(rc
== MEMCACHED_SUCCESS
);
5197 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, 1);
5199 uint32_t number_of_hosts
= memcached_server_count(memc
);
5200 memc
->number_of_hosts
= 1;
5205 for (uint32_t x
= 0; x
< 250; ++x
)
5207 len
= (size_t)snprintf(k
, sizeof(k
), "%0250u", x
);
5208 rc
= memcached_delete(memc
, k
, len
, 0);
5209 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5212 (void)snprintf(k
, sizeof(k
), "%037u", 251U);
5215 rc
= memcached_delete(memc
, k
, len
, 0);
5216 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5218 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 0);
5219 test_true(rc
== MEMCACHED_SUCCESS
);
5220 rc
= memcached_delete(memc
, k
, len
, 0);
5221 test_true(rc
== MEMCACHED_NOTFOUND
);
5223 memc
->number_of_hosts
= number_of_hosts
;
5225 return TEST_SUCCESS
;
5228 static test_return_t
regression_bug_447342(memcached_st
*memc
)
5230 memcached_server_instance_st instance_one
;
5231 memcached_server_instance_st instance_two
;
5233 if (memcached_server_count(memc
) < 3 || pre_replication(memc
) != TEST_SUCCESS
)
5234 return TEST_SKIPPED
;
5236 memcached_return_t rc
;
5238 rc
= memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS
, 2);
5239 test_true(rc
== MEMCACHED_SUCCESS
);
5241 const size_t max_keys
= 100;
5242 char **keys
= (char**)calloc(max_keys
, sizeof(char*));
5243 size_t *key_length
= (size_t *)calloc(max_keys
, sizeof(size_t));
5245 for (size_t x
= 0; x
< max_keys
; ++x
)
5249 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%lu", (unsigned long)x
);
5251 test_true(keys
[x
] != NULL
);
5252 rc
= memcached_set(memc
, k
, key_length
[x
], k
, key_length
[x
], 0, 0);
5253 test_true(rc
== MEMCACHED_SUCCESS
);
5257 ** We are using the quiet commands to store the replicas, so we need
5258 ** to ensure that all of them are processed before we can continue.
5259 ** In the test we go directly from storing the object to trying to
5260 ** receive the object from all of the different servers, so we
5261 ** could end up in a race condition (the memcached server hasn't yet
5262 ** processed the quiet command from the replication set when it process
5263 ** the request from the other client (created by the clone)). As a
5264 ** workaround for that we call memcached_quit to send the quit command
5265 ** to the server and wait for the response ;-) If you use the test code
5266 ** as an example for your own code, please note that you shouldn't need
5269 memcached_quit(memc
);
5271 /* Verify that all messages are stored, and we didn't stuff too much
5274 rc
= memcached_mget(memc
, (const char* const *)keys
, key_length
, max_keys
);
5275 test_true(rc
== MEMCACHED_SUCCESS
);
5278 memcached_execute_fn callbacks
[]= { &callback_counter
};
5279 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5280 /* Verify that we received all of the key/value pairs */
5281 test_true(counter
== max_keys
);
5283 memcached_quit(memc
);
5285 * Don't do the following in your code. I am abusing the internal details
5286 * within the library, and this is not a supported interface.
5287 * This is to verify correct behavior in the library. Fake that two servers
5290 instance_one
= memcached_server_instance_by_position(memc
, 0);
5291 instance_two
= memcached_server_instance_by_position(memc
, 2);
5292 in_port_t port0
= instance_one
->port
;
5293 in_port_t port2
= instance_two
->port
;
5295 ((memcached_server_write_instance_st
)instance_one
)->port
= 0;
5296 ((memcached_server_write_instance_st
)instance_two
)->port
= 0;
5298 rc
= memcached_mget(memc
, (const char* const *)keys
, key_length
, max_keys
);
5299 test_true(rc
== MEMCACHED_SUCCESS
);
5302 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5303 test_true(counter
== (unsigned int)max_keys
);
5305 /* restore the memc handle */
5306 ((memcached_server_write_instance_st
)instance_one
)->port
= port0
;
5307 ((memcached_server_write_instance_st
)instance_two
)->port
= port2
;
5309 memcached_quit(memc
);
5311 /* Remove half of the objects */
5312 for (size_t x
= 0; x
< max_keys
; ++x
)
5316 rc
= memcached_delete(memc
, keys
[x
], key_length
[x
], 0);
5317 test_true(rc
== MEMCACHED_SUCCESS
);
5321 memcached_quit(memc
);
5322 ((memcached_server_write_instance_st
)instance_one
)->port
= 0;
5323 ((memcached_server_write_instance_st
)instance_two
)->port
= 0;
5325 /* now retry the command, this time we should have cache misses */
5326 rc
= memcached_mget(memc
, (const char* const *)keys
, key_length
, max_keys
);
5327 test_true(rc
== MEMCACHED_SUCCESS
);
5330 rc
= memcached_fetch_execute(memc
, callbacks
, (void *)&counter
, 1);
5331 test_true(counter
== (unsigned int)(max_keys
>> 1));
5333 /* Release allocated resources */
5334 for (size_t x
= 0; x
< max_keys
; ++x
)
5341 /* restore the memc handle */
5342 ((memcached_server_write_instance_st
)instance_one
)->port
= port0
;
5343 ((memcached_server_write_instance_st
)instance_two
)->port
= port2
;
5345 return TEST_SUCCESS
;
5348 static test_return_t
regression_bug_463297(memcached_st
*memc
)
5350 memcached_st
*memc_clone
= memcached_clone(NULL
, memc
);
5351 test_true(memc_clone
!= NULL
);
5352 test_true(memcached_version(memc_clone
) == MEMCACHED_SUCCESS
);
5354 memcached_server_instance_st instance
=
5355 memcached_server_instance_by_position(memc_clone
, 0);
5357 if (instance
->major_version
> 1 ||
5358 (instance
->major_version
== 1 &&
5359 instance
->minor_version
> 2))
5361 /* Binary protocol doesn't support deferred delete */
5362 memcached_st
*bin_clone
= memcached_clone(NULL
, memc
);
5363 test_true(bin_clone
!= NULL
);
5364 test_true(memcached_behavior_set(bin_clone
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1) == MEMCACHED_SUCCESS
);
5365 test_true(memcached_delete(bin_clone
, "foo", 3, 1) == MEMCACHED_INVALID_ARGUMENTS
);
5366 memcached_free(bin_clone
);
5368 memcached_quit(memc_clone
);
5370 /* If we know the server version, deferred delete should fail
5371 * with invalid arguments */
5372 test_true(memcached_delete(memc_clone
, "foo", 3, 1) == MEMCACHED_INVALID_ARGUMENTS
);
5374 /* If we don't know the server version, we should get a protocol error */
5375 memcached_return_t rc
= memcached_delete(memc
, "foo", 3, 1);
5377 /* but there is a bug in some of the memcached servers (1.4) that treats
5378 * the counter as noreply so it doesn't send the proper error message
5380 test_true_got(rc
== MEMCACHED_PROTOCOL_ERROR
|| rc
== MEMCACHED_NOTFOUND
|| rc
== MEMCACHED_CLIENT_ERROR
|| rc
== MEMCACHED_INVALID_ARGUMENTS
, memcached_strerror(NULL
, rc
));
5382 /* And buffered mode should be disabled and we should get protocol error */
5383 test_true(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1) == MEMCACHED_SUCCESS
);
5384 rc
= memcached_delete(memc
, "foo", 3, 1);
5385 test_true_got(rc
== MEMCACHED_PROTOCOL_ERROR
|| rc
== MEMCACHED_NOTFOUND
|| rc
== MEMCACHED_CLIENT_ERROR
|| rc
== MEMCACHED_INVALID_ARGUMENTS
, memcached_strerror(NULL
, rc
));
5387 /* Same goes for noreply... */
5388 test_true(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 1) == MEMCACHED_SUCCESS
);
5389 rc
= memcached_delete(memc
, "foo", 3, 1);
5390 test_true_got(rc
== MEMCACHED_PROTOCOL_ERROR
|| rc
== MEMCACHED_NOTFOUND
|| rc
== MEMCACHED_CLIENT_ERROR
|| rc
== MEMCACHED_INVALID_ARGUMENTS
, memcached_strerror(NULL
, rc
));
5392 /* but a normal request should go through (and be buffered) */
5393 test_true((rc
= memcached_delete(memc
, "foo", 3, 0)) == MEMCACHED_BUFFERED
);
5394 test_true(memcached_flush_buffers(memc
) == MEMCACHED_SUCCESS
);
5396 test_true(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 0) == MEMCACHED_SUCCESS
);
5397 /* unbuffered noreply should be success */
5398 test_true(memcached_delete(memc
, "foo", 3, 0) == MEMCACHED_SUCCESS
);
5399 /* unbuffered with reply should be not found... */
5400 test_true(memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NOREPLY
, 0) == MEMCACHED_SUCCESS
);
5401 test_true(memcached_delete(memc
, "foo", 3, 0) == MEMCACHED_NOTFOUND
);
5404 memcached_free(memc_clone
);
5405 return TEST_SUCCESS
;
5409 /* Test memcached_server_get_last_disconnect
5410 * For a working server set, shall be NULL
5411 * For a set of non existing server, shall not be NULL
5413 static test_return_t
test_get_last_disconnect(memcached_st
*memc
)
5415 memcached_return_t rc
;
5416 memcached_server_instance_st disconnected_server
;
5418 /* With the working set of server */
5419 const char *key
= "marmotte";
5420 const char *value
= "milka";
5422 memcached_reset_last_disconnected_server(memc
);
5423 rc
= memcached_set(memc
, key
, strlen(key
),
5424 value
, strlen(value
),
5425 (time_t)0, (uint32_t)0);
5426 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5428 disconnected_server
= memcached_server_get_last_disconnect(memc
);
5429 test_true(disconnected_server
== NULL
);
5431 /* With a non existing server */
5433 memcached_server_st
*servers
;
5435 const char *server_list
= "localhost:9";
5437 servers
= memcached_servers_parse(server_list
);
5439 mine
= memcached_create(NULL
);
5440 rc
= memcached_server_push(mine
, servers
);
5441 test_true(rc
== MEMCACHED_SUCCESS
);
5442 memcached_server_list_free(servers
);
5445 rc
= memcached_set(mine
, key
, strlen(key
),
5446 value
, strlen(value
),
5447 (time_t)0, (uint32_t)0);
5448 test_true(rc
!= MEMCACHED_SUCCESS
);
5450 disconnected_server
= memcached_server_get_last_disconnect(mine
);
5451 if (disconnected_server
== NULL
)
5453 fprintf(stderr
, "RC %s\n", memcached_strerror(mine
, rc
));
5456 test_true(disconnected_server
!= NULL
);
5457 test_true(memcached_server_port(disconnected_server
)== 9);
5458 test_true(strncmp(memcached_server_name(disconnected_server
),"localhost",9) == 0);
5460 memcached_quit(mine
);
5461 memcached_free(mine
);
5463 return TEST_SUCCESS
;
5466 static test_return_t
test_verbosity(memcached_st
*memc
)
5468 memcached_verbosity(memc
, 3);
5470 return TEST_SUCCESS
;
5473 static test_return_t
test_server_failure(memcached_st
*memc
)
5475 memcached_st
*local_memc
;
5476 memcached_server_instance_st instance
= memcached_server_instance_by_position(memc
, 0);
5478 local_memc
= memcached_create(NULL
);
5480 memcached_server_add(local_memc
, memcached_server_name(instance
), memcached_server_port(instance
));
5481 memcached_behavior_set(local_memc
, MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
, 2);
5483 uint32_t server_count
= memcached_server_count(local_memc
);
5485 test_true(server_count
== 1);
5487 // Disable the server
5488 instance
= memcached_server_instance_by_position(local_memc
, 0);
5489 ((memcached_server_write_instance_st
)instance
)->server_failure_counter
= 2;
5491 memcached_return_t rc
;
5492 rc
= memcached_set(local_memc
, "foo", strlen("foo"),
5494 (time_t)0, (uint32_t)0);
5495 test_true(rc
== MEMCACHED_SERVER_MARKED_DEAD
);
5497 ((memcached_server_write_instance_st
)instance
)->server_failure_counter
= 0;
5498 rc
= memcached_set(local_memc
, "foo", strlen("foo"),
5500 (time_t)0, (uint32_t)0);
5501 test_true(rc
== MEMCACHED_SUCCESS
);
5504 memcached_free(local_memc
);
5506 return TEST_SUCCESS
;
5509 static test_return_t
test_cull_servers(memcached_st
*memc
)
5511 uint32_t count
= memcached_server_count(memc
);
5513 // Do not do this in your code, it is not supported.
5514 memc
->servers
[1].options
.is_dead
= true;
5515 memc
->state
.is_time_for_rebuild
= true;
5517 uint32_t new_count
= memcached_server_count(memc
);
5518 test_true(count
== new_count
);
5521 test_true(count
== new_count
+ 1 );
5524 return TEST_SUCCESS
;
5528 static memcached_return_t
stat_printer(memcached_server_instance_st server
,
5529 const char *key
, size_t key_length
,
5530 const char *value
, size_t value_length
,
5540 return MEMCACHED_SUCCESS
;
5543 static test_return_t
memcached_stat_execute_test(memcached_st
*memc
)
5545 memcached_return_t rc
= memcached_stat_execute(memc
, NULL
, stat_printer
, NULL
);
5546 test_true(rc
== MEMCACHED_SUCCESS
);
5548 rc
= memcached_stat_execute(memc
, "slabs", stat_printer
, NULL
);
5549 test_true(rc
== MEMCACHED_SUCCESS
);
5551 rc
= memcached_stat_execute(memc
, "items", stat_printer
, NULL
);
5552 test_true(rc
== MEMCACHED_SUCCESS
);
5554 rc
= memcached_stat_execute(memc
, "sizes", stat_printer
, NULL
);
5555 test_true(rc
== MEMCACHED_SUCCESS
);
5557 return TEST_SUCCESS
;
5561 * This test ensures that the failure counter isn't incremented during
5562 * normal termination of the memcached instance.
5564 static test_return_t
wrong_failure_counter_test(memcached_st
*memc
)
5566 memcached_return_t rc
;
5567 memcached_server_instance_st instance
;
5569 /* Set value to force connection to the server */
5570 const char *key
= "marmotte";
5571 const char *value
= "milka";
5574 * Please note that I'm abusing the internal structures in libmemcached
5575 * in a non-portable way and you shouldn't be doing this. I'm only
5576 * doing this in order to verify that the library works the way it should
5578 uint32_t number_of_hosts
= memcached_server_count(memc
);
5579 memc
->number_of_hosts
= 1;
5581 /* Ensure that we are connected to the server by setting a value */
5582 rc
= memcached_set(memc
, key
, strlen(key
),
5583 value
, strlen(value
),
5584 (time_t)0, (uint32_t)0);
5585 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
);
5588 instance
= memcached_server_instance_by_position(memc
, 0);
5589 /* The test is to see that the memcached_quit doesn't increase the
5590 * the server failure conter, so let's ensure that it is zero
5591 * before sending quit
5593 ((memcached_server_write_instance_st
)instance
)->server_failure_counter
= 0;
5595 memcached_quit(memc
);
5597 /* Verify that it memcached_quit didn't increment the failure counter
5598 * Please note that this isn't bullet proof, because an error could
5601 test_true(instance
->server_failure_counter
== 0);
5603 /* restore the instance */
5604 memc
->number_of_hosts
= number_of_hosts
;
5606 return TEST_SUCCESS
;
5610 * This tests ensures expected disconnections (for some behavior changes
5611 * for instance) do not wrongly increase failure counter
5613 static test_return_t
wrong_failure_counter_two_test(memcached_st
*memc
)
5615 memcached_return rc
;
5617 memcached_st
*memc_clone
;
5618 memc_clone
= memcached_clone(NULL
, memc
);
5619 test_true(memc_clone
);
5621 /* Set value to force connection to the server */
5622 const char *key
= "marmotte";
5623 const char *value
= "milka";
5624 char *string
= NULL
;
5625 size_t string_length
;
5628 rc
= memcached_set(memc_clone
, key
, strlen(key
),
5629 value
, strlen(value
),
5630 (time_t)0, (uint32_t)0);
5631 test_true_got(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
, memcached_strerror(NULL
, rc
));
5634 /* put failure limit to 1 */
5635 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
, 1);
5636 assert(rc
== MEMCACHED_SUCCESS
);
5638 /* Put a retry timeout to effectively activate failure_limit effect */
5639 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_RETRY_TIMEOUT
, 1);
5640 assert(rc
== MEMCACHED_SUCCESS
);
5642 /* change behavior that triggers memcached_quit()*/
5643 rc
= memcached_behavior_set(memc_clone
, MEMCACHED_BEHAVIOR_TCP_NODELAY
, 1);
5644 assert(rc
== MEMCACHED_SUCCESS
);
5647 /* Check if we still are connected */
5648 string
= memcached_get(memc_clone
, key
, strlen(key
),
5649 &string_length
, &flags
, &rc
);
5651 test_true_got(rc
== MEMCACHED_SUCCESS
, memcached_strerror(NULL
, rc
));
5654 memcached_free(memc_clone
);
5656 return TEST_SUCCESS
;
5663 * Test that ensures mget_execute does not end into recursive calls that finally fails
5665 static test_return_t
regression_bug_490486(memcached_st
*memc
)
5667 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
5668 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_NO_BLOCK
, 1);
5669 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
, 1000);
5670 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
, 1);
5671 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_RETRY_TIMEOUT
, 3600);
5674 return TEST_SKIPPED
; // My MAC can't handle this test
5678 * I only want to hit _one_ server so I know the number of requests I'm
5679 * sending in the pipeline.
5681 uint32_t number_of_hosts
= memc
->number_of_hosts
;
5682 memc
->number_of_hosts
= 1;
5683 size_t max_keys
= 20480;
5686 char **keys
= (char **)calloc(max_keys
, sizeof(char*));
5687 size_t *key_length
= (size_t *)calloc(max_keys
, sizeof(size_t));
5689 /* First add all of the items.. */
5691 char blob
[1024]= { 0 };
5692 memcached_return rc
;
5693 for (size_t x
= 0; x
< max_keys
; ++x
)
5696 key_length
[x
]= (size_t)snprintf(k
, sizeof(k
), "0200%lu", (unsigned long)x
);
5698 assert(keys
[x
] != NULL
);
5699 rc
= memcached_set(memc
, keys
[x
], key_length
[x
], blob
, sizeof(blob
), 0, 0);
5701 if (rc
== MEMCACHED_SERVER_MARKED_DEAD
)
5703 break; // We are out of business
5706 test_true(rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
|| rc
== MEMCACHED_TIMEOUT
); // MEMCACHED_TIMEOUT <-- only observed on OSX
5708 if (rc
== MEMCACHED_TIMEOUT
&& slept
== false)
5711 sleep(1);// We will try to sleep
5714 else if (rc
== MEMCACHED_TIMEOUT
&& slept
== true)
5716 // We failed to send everything.
5721 if (rc
!= MEMCACHED_SERVER_MARKED_DEAD
)
5724 /* Try to get all of them with a large multiget */
5726 memcached_execute_function callbacks
[]= { &callback_counter
};
5727 rc
= memcached_mget_execute(memc
, (const char**)keys
, key_length
,
5728 (size_t)max_keys
, callbacks
, &counter
, 1);
5730 assert(rc
== MEMCACHED_SUCCESS
);
5731 char* the_value
= NULL
;
5732 char the_key
[MEMCACHED_MAX_KEY
];
5733 size_t the_key_length
;
5734 size_t the_value_length
;
5738 the_value
= memcached_fetch(memc
, the_key
, &the_key_length
, &the_value_length
, &the_flags
, &rc
);
5740 if ((the_value
!= NULL
) && (rc
== MEMCACHED_SUCCESS
))
5746 } while ( (the_value
!= NULL
) && (rc
== MEMCACHED_SUCCESS
));
5749 assert(rc
== MEMCACHED_END
);
5751 /* Verify that we got all of the items */
5752 assert(counter
== max_keys
);
5755 /* Release all allocated resources */
5756 for (size_t x
= 0; x
< max_keys
; ++x
)
5763 memc
->number_of_hosts
= number_of_hosts
;
5765 return TEST_SUCCESS
;
5768 static test_return_t
regression_bug_583031(memcached_st
*unused
)
5772 memcached_st
*memc
= memcached_create(NULL
);
5774 memcached_server_add(memc
, "10.2.3.4", 11211);
5776 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT
, 1000);
5777 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_RETRY_TIMEOUT
, 1000);
5778 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SND_TIMEOUT
, 1000);
5779 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_RCV_TIMEOUT
, 1000);
5780 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_POLL_TIMEOUT
, 1000);
5781 memcached_behavior_set(memc
, MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
, 3);
5783 memcached_return_t rc
;
5787 (void)memcached_get(memc
, "dsf", 3, &length
, &flags
, &rc
);
5789 test_true_got(rc
== MEMCACHED_TIMEOUT
|| rc
== MEMCACHED_ERRNO
|| rc
== MEMCACHED_FAILURE
, memcached_strerror(memc
, rc
));
5791 memcached_free(memc
);
5793 return TEST_SUCCESS
;
5796 static test_return_t
regression_bug_581030(memcached_st
*unused
)
5801 memcached_stat_st
*local_stat
= memcached_stat(NULL
, NULL
, NULL
);
5802 test_false(local_stat
);
5804 memcached_stat_free(NULL
, NULL
);
5807 return TEST_SUCCESS
;
5810 static void memcached_die(memcached_st
* mc
, memcached_return error
, const char* what
, uint32_t it
)
5812 fprintf(stderr
, "Iteration #%u: ", it
);
5814 if(error
== MEMCACHED_ERRNO
)
5816 fprintf(stderr
, "system error %d from %s: %s\n",
5817 errno
, what
, strerror(errno
));
5821 fprintf(stderr
, "error %d from %s: %s\n", error
, what
,
5822 memcached_strerror(mc
, error
));
5826 #define TEST_CONSTANT_CREATION 200
5828 static test_return_t
regression_bug_(memcached_st
*memc
)
5830 const char *remote_server
;
5833 if (! (remote_server
= getenv("LIBMEMCACHED_REMOTE_SERVER")))
5835 return TEST_SKIPPED
;
5838 for (uint32_t x
= 0; x
< TEST_CONSTANT_CREATION
; x
++)
5840 memcached_st
* mc
= memcached_create(NULL
);
5841 memcached_return rc
;
5843 rc
= memcached_behavior_set(mc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1);
5844 if (rc
!= MEMCACHED_SUCCESS
)
5846 memcached_die(mc
, rc
, "memcached_behavior_set", x
);
5849 rc
= memcached_behavior_set(mc
, MEMCACHED_BEHAVIOR_CACHE_LOOKUPS
, 1);
5850 if (rc
!= MEMCACHED_SUCCESS
)
5852 memcached_die(mc
, rc
, "memcached_behavior_set", x
);
5855 rc
= memcached_server_add(mc
, remote_server
, 0);
5856 if (rc
!= MEMCACHED_SUCCESS
)
5858 memcached_die(mc
, rc
, "memcached_server_add", x
);
5861 const char *set_key
= "akey";
5862 const size_t set_key_len
= strlen(set_key
);
5863 const char *set_value
= "a value";
5864 const size_t set_value_len
= strlen(set_value
);
5866 if (rc
== MEMCACHED_SUCCESS
)
5870 size_t get_value_len
;
5872 uint32_t get_value_flags
;
5874 get_value
= memcached_get(mc
, set_key
, set_key_len
, &get_value_len
,
5875 &get_value_flags
, &rc
);
5876 if (rc
!= MEMCACHED_SUCCESS
)
5878 memcached_die(mc
, rc
, "memcached_get", x
);
5884 (get_value_len
!= set_value_len
5885 || 0!=strncmp(get_value
, set_value
, get_value_len
)))
5887 fprintf(stderr
, "Values don't match?\n");
5888 rc
= MEMCACHED_FAILURE
;
5894 rc
= memcached_set(mc
,
5895 set_key
, set_key_len
,
5896 set_value
, set_value_len
,
5900 if (rc
!= MEMCACHED_SUCCESS
)
5902 memcached_die(mc
, rc
, "memcached_set", x
);
5909 if (rc
!= MEMCACHED_SUCCESS
)
5915 return TEST_SUCCESS
;
5919 * Test that the sasl authentication works. We cannot use the default
5920 * pool of servers, because that would require that all servers we want
5921 * to test supports SASL authentication, and that they use the default
5924 static test_return_t
sasl_auth_test(memcached_st
*memc
)
5926 #ifdef LIBMEMCACHED_WITH_SASL_SUPPORT
5927 memcached_return_t rc
;
5929 rc
= memcached_set(memc
, "foo", 3, "bar", 3, (time_t)0, (uint32_t)0);
5930 test_true(rc
== MEMCACHED_SUCCESS
);
5931 test_true((rc
= memcached_delete(memc
, "foo", 3, 0)) == MEMCACHED_SUCCESS
);
5932 test_true((rc
= memcached_destroy_sasl_auth_data(memc
)) == MEMCACHED_SUCCESS
);
5933 test_true((rc
= memcached_destroy_sasl_auth_data(memc
)) == MEMCACHED_FAILURE
);
5934 test_true((rc
= memcached_destroy_sasl_auth_data(NULL
)) == MEMCACHED_FAILURE
);
5935 memcached_quit(memc
);
5937 rc
= memcached_set_sasl_auth_data(memc
,
5938 getenv("LIBMEMCACHED_TEST_SASL_USERNAME"),
5939 getenv("LIBMEMCACHED_TEST_SASL_SERVER"));
5940 test_true(rc
== MEMCACHED_SUCCESS
);
5942 rc
= memcached_set(memc
, "foo", 3, "bar", 3, (time_t)0, (uint32_t)0);
5943 test_true(rc
== MEMCACHED_AUTH_FAILURE
);
5944 test_true(memcached_destroy_sasl_auth_data(memc
) == MEMCACHED_SUCCESS
);
5946 memcached_quit(memc
);
5947 return TEST_SUCCESS
;
5950 return TEST_FAILURE
;
5954 /* Clean the server before beginning testing */
5956 {"util_version", 1, (test_callback_fn
)util_version_test
},
5957 {"flush", 0, (test_callback_fn
)flush_test
},
5958 {"init", 0, (test_callback_fn
)init_test
},
5959 {"allocation", 0, (test_callback_fn
)allocation_test
},
5960 {"server_list_null_test", 0, (test_callback_fn
)server_list_null_test
},
5961 {"server_unsort", 0, (test_callback_fn
)server_unsort_test
},
5962 {"server_sort", 0, (test_callback_fn
)server_sort_test
},
5963 {"server_sort2", 0, (test_callback_fn
)server_sort2_test
},
5964 {"memcached_server_remove", 0, (test_callback_fn
)memcached_server_remove_test
},
5965 {"clone_test", 0, (test_callback_fn
)clone_test
},
5966 {"connection_test", 0, (test_callback_fn
)connection_test
},
5967 {"callback_test", 0, (test_callback_fn
)callback_test
},
5968 {"userdata_test", 0, (test_callback_fn
)userdata_test
},
5969 {"error", 0, (test_callback_fn
)error_test
},
5970 {"set", 0, (test_callback_fn
)set_test
},
5971 {"set2", 0, (test_callback_fn
)set_test2
},
5972 {"set3", 0, (test_callback_fn
)set_test3
},
5973 {"dump", 1, (test_callback_fn
)dump_test
},
5974 {"add", 1, (test_callback_fn
)add_test
},
5975 {"replace", 1, (test_callback_fn
)replace_test
},
5976 {"delete", 1, (test_callback_fn
)delete_test
},
5977 {"get", 1, (test_callback_fn
)get_test
},
5978 {"get2", 0, (test_callback_fn
)get_test2
},
5979 {"get3", 0, (test_callback_fn
)get_test3
},
5980 {"get4", 0, (test_callback_fn
)get_test4
},
5981 {"partial mget", 0, (test_callback_fn
)get_test5
},
5982 {"stats_servername", 0, (test_callback_fn
)stats_servername_test
},
5983 {"increment", 0, (test_callback_fn
)increment_test
},
5984 {"increment_with_initial", 1, (test_callback_fn
)increment_with_initial_test
},
5985 {"decrement", 0, (test_callback_fn
)decrement_test
},
5986 {"decrement_with_initial", 1, (test_callback_fn
)decrement_with_initial_test
},
5987 {"increment_by_key", 0, (test_callback_fn
)increment_by_key_test
},
5988 {"increment_with_initial_by_key", 1, (test_callback_fn
)increment_with_initial_by_key_test
},
5989 {"decrement_by_key", 0, (test_callback_fn
)decrement_by_key_test
},
5990 {"decrement_with_initial_by_key", 1, (test_callback_fn
)decrement_with_initial_by_key_test
},
5991 {"quit", 0, (test_callback_fn
)quit_test
},
5992 {"mget", 1, (test_callback_fn
)mget_test
},
5993 {"mget_result", 1, (test_callback_fn
)mget_result_test
},
5994 {"mget_result_alloc", 1, (test_callback_fn
)mget_result_alloc_test
},
5995 {"mget_result_function", 1, (test_callback_fn
)mget_result_function
},
5996 {"mget_execute", 1, (test_callback_fn
)mget_execute
},
5997 {"mget_end", 0, (test_callback_fn
)mget_end
},
5998 {"get_stats", 0, (test_callback_fn
)get_stats
},
5999 {"add_host_test", 0, (test_callback_fn
)add_host_test
},
6000 {"add_host_test_1", 0, (test_callback_fn
)add_host_test1
},
6001 {"get_stats_keys", 0, (test_callback_fn
)get_stats_keys
},
6002 {"version_string_test", 0, (test_callback_fn
)version_string_test
},
6003 {"bad_key", 1, (test_callback_fn
)bad_key_test
},
6004 {"memcached_server_cursor", 1, (test_callback_fn
)memcached_server_cursor_test
},
6005 {"read_through", 1, (test_callback_fn
)read_through
},
6006 {"delete_through", 1, (test_callback_fn
)delete_through
},
6007 {"noreply", 1, (test_callback_fn
)noreply_test
},
6008 {"analyzer", 1, (test_callback_fn
)analyzer_test
},
6009 {"connectionpool", 1, (test_callback_fn
)connection_pool_test
},
6010 {"memcached_pool_test", 1, (test_callback_fn
)memcached_pool_test
},
6011 {"ping", 1, (test_callback_fn
)ping_test
},
6012 {"test_get_last_disconnect", 1, (test_callback_fn
)test_get_last_disconnect
},
6013 {"verbosity", 1, (test_callback_fn
)test_verbosity
},
6014 {"test_server_failure", 1, (test_callback_fn
)test_server_failure
},
6015 {"cull_servers", 1, (test_callback_fn
)test_cull_servers
},
6016 {"memcached_stat_execute", 1, (test_callback_fn
)memcached_stat_execute_test
},
6020 test_st behavior_tests
[] ={
6021 {"behavior_test", 0, (test_callback_fn
)behavior_test
},
6022 {"MEMCACHED_BEHAVIOR_CORK", 0, (test_callback_fn
)MEMCACHED_BEHAVIOR_CORK_test
},
6023 {"MEMCACHED_BEHAVIOR_TCP_KEEPALIVE", 0, (test_callback_fn
)MEMCACHED_BEHAVIOR_TCP_KEEPALIVE_test
},
6024 {"MEMCACHED_BEHAVIOR_TCP_KEEPIDLE", 0, (test_callback_fn
)MEMCACHED_BEHAVIOR_TCP_KEEPIDLE_test
},
6028 test_st basic_tests
[] ={
6029 {"init", 1, (test_callback_fn
)basic_init_test
},
6030 {"clone", 1, (test_callback_fn
)basic_clone_test
},
6031 {"reset", 1, (test_callback_fn
)basic_reset_stack_test
},
6032 {"reset heap", 1, (test_callback_fn
)basic_reset_heap_test
},
6033 {"reset stack clone", 1, (test_callback_fn
)basic_reset_stack_clone_test
},
6034 {"reset heap clone", 1, (test_callback_fn
)basic_reset_heap_clone_test
},
6038 test_st regression_binary_vs_block
[] ={
6039 {"block add", 1, (test_callback_fn
)block_add_regression
},
6040 {"binary add", 1, (test_callback_fn
)binary_add_regression
},
6044 test_st async_tests
[] ={
6045 {"add", 1, (test_callback_fn
)add_wrapper
},
6049 test_st string_tests
[] ={
6050 {"string static with null", 0, (test_callback_fn
)string_static_null
},
6051 {"string alloc with null", 0, (test_callback_fn
)string_alloc_null
},
6052 {"string alloc with 1K", 0, (test_callback_fn
)string_alloc_with_size
},
6053 {"string alloc with malloc failure", 0, (test_callback_fn
)string_alloc_with_size_toobig
},
6054 {"string append", 0, (test_callback_fn
)string_alloc_append
},
6055 {"string append failure (too big)", 0, (test_callback_fn
)string_alloc_append_toobig
},
6056 {"string_alloc_append_multiple", 0, (test_callback_fn
)string_alloc_append_multiple
},
6057 {0, 0, (test_callback_fn
)0}
6060 test_st result_tests
[] ={
6061 {"result static", 0, (test_callback_fn
)result_static
},
6062 {"result alloc", 0, (test_callback_fn
)result_alloc
},
6063 {0, 0, (test_callback_fn
)0}
6066 test_st version_1_2_3
[] ={
6067 {"append", 0, (test_callback_fn
)append_test
},
6068 {"prepend", 0, (test_callback_fn
)prepend_test
},
6069 {"cas", 0, (test_callback_fn
)cas_test
},
6070 {"cas2", 0, (test_callback_fn
)cas2_test
},
6071 {"append_binary", 0, (test_callback_fn
)append_binary_test
},
6072 {0, 0, (test_callback_fn
)0}
6075 test_st user_tests
[] ={
6076 {"user_supplied_bug1", 0, (test_callback_fn
)user_supplied_bug1
},
6077 {"user_supplied_bug2", 0, (test_callback_fn
)user_supplied_bug2
},
6078 {"user_supplied_bug3", 0, (test_callback_fn
)user_supplied_bug3
},
6079 {"user_supplied_bug4", 0, (test_callback_fn
)user_supplied_bug4
},
6080 {"user_supplied_bug5", 1, (test_callback_fn
)user_supplied_bug5
},
6081 {"user_supplied_bug6", 1, (test_callback_fn
)user_supplied_bug6
},
6082 {"user_supplied_bug7", 1, (test_callback_fn
)user_supplied_bug7
},
6083 {"user_supplied_bug8", 1, (test_callback_fn
)user_supplied_bug8
},
6084 {"user_supplied_bug9", 1, (test_callback_fn
)user_supplied_bug9
},
6085 {"user_supplied_bug10", 1, (test_callback_fn
)user_supplied_bug10
},
6086 {"user_supplied_bug11", 1, (test_callback_fn
)user_supplied_bug11
},
6087 {"user_supplied_bug12", 1, (test_callback_fn
)user_supplied_bug12
},
6088 {"user_supplied_bug13", 1, (test_callback_fn
)user_supplied_bug13
},
6089 {"user_supplied_bug14", 1, (test_callback_fn
)user_supplied_bug14
},
6090 {"user_supplied_bug15", 1, (test_callback_fn
)user_supplied_bug15
},
6091 {"user_supplied_bug16", 1, (test_callback_fn
)user_supplied_bug16
},
6092 #if !defined(__sun) && !defined(__OpenBSD__)
6094 ** It seems to be something weird with the character sets..
6095 ** value_fetch is unable to parse the value line (iscntrl "fails"), so I
6096 ** guess I need to find out how this is supposed to work.. Perhaps I need
6097 ** to run the test in a specific locale (I tried zh_CN.UTF-8 without success,
6098 ** so just disable the code for now...).
6100 {"user_supplied_bug17", 1, (test_callback_fn
)user_supplied_bug17
},
6102 {"user_supplied_bug18", 1, (test_callback_fn
)user_supplied_bug18
},
6103 {"user_supplied_bug19", 1, (test_callback_fn
)user_supplied_bug19
},
6104 {"user_supplied_bug20", 1, (test_callback_fn
)user_supplied_bug20
},
6105 {"user_supplied_bug21", 1, (test_callback_fn
)user_supplied_bug21
},
6106 {"wrong_failure_counter_test", 1, (test_callback_fn
)wrong_failure_counter_test
},
6107 {"wrong_failure_counter_two_test", 1, (test_callback_fn
)wrong_failure_counter_two_test
},
6108 {0, 0, (test_callback_fn
)0}
6111 test_st replication_tests
[]= {
6112 {"set", 1, (test_callback_fn
)replication_set_test
},
6113 {"get", 0, (test_callback_fn
)replication_get_test
},
6114 {"mget", 0, (test_callback_fn
)replication_mget_test
},
6115 {"delete", 0, (test_callback_fn
)replication_delete_test
},
6116 {"rand_mget", 0, (test_callback_fn
)replication_randomize_mget_test
},
6117 {0, 0, (test_callback_fn
)0}
6121 * The following test suite is used to verify that we don't introduce
6122 * regression bugs. If you want more information about the bug / test,
6123 * you should look in the bug report at
6124 * http://bugs.launchpad.net/libmemcached
6126 test_st regression_tests
[]= {
6127 {"lp:434484", 1, (test_callback_fn
)regression_bug_434484
},
6128 {"lp:434843", 1, (test_callback_fn
)regression_bug_434843
},
6129 {"lp:434843-buffered", 1, (test_callback_fn
)regression_bug_434843_buffered
},
6130 {"lp:421108", 1, (test_callback_fn
)regression_bug_421108
},
6131 {"lp:442914", 1, (test_callback_fn
)regression_bug_442914
},
6132 {"lp:447342", 1, (test_callback_fn
)regression_bug_447342
},
6133 {"lp:463297", 1, (test_callback_fn
)regression_bug_463297
},
6134 {"lp:490486", 1, (test_callback_fn
)regression_bug_490486
},
6135 {"lp:583031", 1, (test_callback_fn
)regression_bug_583031
},
6136 {"lp:?", 1, (test_callback_fn
)regression_bug_
},
6137 {"lp:728286", 1, (test_callback_fn
)regression_bug_728286
},
6138 {"lp:581030", 1, (test_callback_fn
)regression_bug_581030
},
6139 {0, 0, (test_callback_fn
)0}
6142 test_st sasl_auth_tests
[]= {
6143 {"sasl_auth", 1, (test_callback_fn
)sasl_auth_test
},
6144 {0, 0, (test_callback_fn
)0}
6147 test_st ketama_compatibility
[]= {
6148 {"libmemcached", 1, (test_callback_fn
)ketama_compatibility_libmemcached
},
6149 {"spymemcached", 1, (test_callback_fn
)ketama_compatibility_spymemcached
},
6150 {0, 0, (test_callback_fn
)0}
6153 test_st generate_tests
[] ={
6154 {"generate_pairs", 1, (test_callback_fn
)generate_pairs
},
6155 {"generate_data", 1, (test_callback_fn
)generate_data
},
6156 {"get_read", 0, (test_callback_fn
)get_read
},
6157 {"delete_generate", 0, (test_callback_fn
)delete_generate
},
6158 {"generate_buffer_data", 1, (test_callback_fn
)generate_buffer_data
},
6159 {"delete_buffer", 0, (test_callback_fn
)delete_buffer_generate
},
6160 {"generate_data", 1, (test_callback_fn
)generate_data
},
6161 {"mget_read", 0, (test_callback_fn
)mget_read
},
6162 {"mget_read_result", 0, (test_callback_fn
)mget_read_result
},
6163 {"mget_read_function", 0, (test_callback_fn
)mget_read_function
},
6164 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
6165 {"generate_large_pairs", 1, (test_callback_fn
)generate_large_pairs
},
6166 {"generate_data", 1, (test_callback_fn
)generate_data
},
6167 {"generate_buffer_data", 1, (test_callback_fn
)generate_buffer_data
},
6168 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
6169 {0, 0, (test_callback_fn
)0}
6172 test_st consistent_tests
[] ={
6173 {"generate_pairs", 1, (test_callback_fn
)generate_pairs
},
6174 {"generate_data", 1, (test_callback_fn
)generate_data
},
6175 {"get_read", 0, (test_callback_fn
)get_read_count
},
6176 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
6177 {0, 0, (test_callback_fn
)0}
6180 test_st consistent_weighted_tests
[] ={
6181 {"generate_pairs", 1, (test_callback_fn
)generate_pairs
},
6182 {"generate_data", 1, (test_callback_fn
)generate_data_with_stats
},
6183 {"get_read", 0, (test_callback_fn
)get_read_count
},
6184 {"cleanup", 1, (test_callback_fn
)cleanup_pairs
},
6185 {0, 0, (test_callback_fn
)0}
6188 test_st hsieh_availability
[] ={
6189 {"hsieh_avaibility_test", 0, (test_callback_fn
)hsieh_avaibility_test
},
6190 {0, 0, (test_callback_fn
)0}
6193 test_st murmur_availability
[] ={
6194 {"murmur_avaibility_test", 0, (test_callback_fn
)murmur_avaibility_test
},
6195 {0, 0, (test_callback_fn
)0}
6199 test_st hash_sanity
[] ={
6200 {"hash sanity", 0, (test_callback_fn
)hash_sanity_test
},
6201 {0, 0, (test_callback_fn
)0}
6205 test_st ketama_auto_eject_hosts
[] ={
6206 {"auto_eject_hosts", 1, (test_callback_fn
)auto_eject_hosts
},
6207 {"output_ketama_weighted_keys", 1, (test_callback_fn
)output_ketama_weighted_keys
},
6208 {0, 0, (test_callback_fn
)0}
6211 test_st hash_tests
[] ={
6212 {"one_at_a_time_run", 0, (test_callback_fn
)one_at_a_time_run
},
6213 {"md5", 0, (test_callback_fn
)md5_run
},
6214 {"crc", 0, (test_callback_fn
)crc_run
},
6215 {"fnv1_64", 0, (test_callback_fn
)fnv1_64_run
},
6216 {"fnv1a_64", 0, (test_callback_fn
)fnv1a_64_run
},
6217 {"fnv1_32", 0, (test_callback_fn
)fnv1_32_run
},
6218 {"fnv1a_32", 0, (test_callback_fn
)fnv1a_32_run
},
6219 {"hsieh", 0, (test_callback_fn
)hsieh_run
},
6220 {"murmur", 0, (test_callback_fn
)murmur_run
},
6221 {"jenkis", 0, (test_callback_fn
)jenkins_run
},
6222 {"memcached_get_hashkit", 0, (test_callback_fn
)memcached_get_hashkit_test
},
6223 {0, 0, (test_callback_fn
)0}
6226 test_st error_conditions
[] ={
6227 {"memcached_get(MEMCACHED_ERRNO)", 0, (test_callback_fn
)memcached_get_MEMCACHED_ERRNO
},
6228 {"memcached_get(MEMCACHED_NOTFOUND)", 0, (test_callback_fn
)memcached_get_MEMCACHED_NOTFOUND
},
6229 {"memcached_get_by_key(MEMCACHED_ERRNO)", 0, (test_callback_fn
)memcached_get_by_key_MEMCACHED_ERRNO
},
6230 {"memcached_get_by_key(MEMCACHED_NOTFOUND)", 0, (test_callback_fn
)memcached_get_by_key_MEMCACHED_NOTFOUND
},
6231 {"memcached_get_by_key(MEMCACHED_NOTFOUND)", 0, (test_callback_fn
)memcached_get_by_key_MEMCACHED_NOTFOUND
},
6232 {"memcached_increment(MEMCACHED_NO_SERVERS)", 0, (test_callback_fn
)memcached_increment_MEMCACHED_NO_SERVERS
},
6233 {0, 0, (test_callback_fn
)0}
6237 test_st parser_tests
[] ={
6238 {"behavior", 0, (test_callback_fn
)behavior_parser_test
},
6239 {"boolean_options", 0, (test_callback_fn
)parser_boolean_options_test
},
6240 {"configure_file", 0, (test_callback_fn
)memcached_create_with_options_with_filename
},
6241 {"distribtions", 0, (test_callback_fn
)parser_distribution_test
},
6242 {"hash", 0, (test_callback_fn
)parser_hash_test
},
6243 {"libmemcached_check_configuration", 0, (test_callback_fn
)libmemcached_check_configuration_test
},
6244 {"libmemcached_check_configuration_with_filename", 0, (test_callback_fn
)libmemcached_check_configuration_with_filename_test
},
6245 {"number_options", 0, (test_callback_fn
)parser_number_options_test
},
6246 {"randomly generated options", 0, (test_callback_fn
)random_statement_build_test
},
6247 {"prefix_key", 0, (test_callback_fn
)parser_key_prefix_test
},
6248 {"server", 0, (test_callback_fn
)server_test
},
6249 {"bad server strings", 0, (test_callback_fn
)servers_bad_test
},
6250 {"server with weights", 0, (test_callback_fn
)server_with_weight_test
},
6251 {0, 0, (test_callback_fn
)0}
6254 test_st virtual_bucket_tests
[] ={
6255 {"basic", 0, (test_callback_fn
)virtual_back_map
},
6256 {0, 0, (test_callback_fn
)0}
6259 collection_st collection
[] ={
6261 {"hash_sanity", 0, 0, hash_sanity
},
6263 {"basic", 0, 0, basic_tests
},
6264 {"hsieh_availability", 0, 0, hsieh_availability
},
6265 {"murmur_availability", 0, 0, murmur_availability
},
6266 {"block", 0, 0, tests
},
6267 {"binary", (test_callback_fn
)pre_binary
, 0, tests
},
6268 {"nonblock", (test_callback_fn
)pre_nonblock
, 0, tests
},
6269 {"nodelay", (test_callback_fn
)pre_nodelay
, 0, tests
},
6270 {"settimer", (test_callback_fn
)pre_settimer
, 0, tests
},
6271 {"md5", (test_callback_fn
)pre_md5
, 0, tests
},
6272 {"crc", (test_callback_fn
)pre_crc
, 0, tests
},
6273 {"hsieh", (test_callback_fn
)pre_hsieh
, 0, tests
},
6274 {"jenkins", (test_callback_fn
)pre_jenkins
, 0, tests
},
6275 {"fnv1_64", (test_callback_fn
)pre_hash_fnv1_64
, 0, tests
},
6276 {"fnv1a_64", (test_callback_fn
)pre_hash_fnv1a_64
, 0, tests
},
6277 {"fnv1_32", (test_callback_fn
)pre_hash_fnv1_32
, 0, tests
},
6278 {"fnv1a_32", (test_callback_fn
)pre_hash_fnv1a_32
, 0, tests
},
6279 {"ketama", (test_callback_fn
)pre_behavior_ketama
, 0, tests
},
6280 {"ketama_auto_eject_hosts", (test_callback_fn
)pre_behavior_ketama
, 0, ketama_auto_eject_hosts
},
6281 {"unix_socket", (test_callback_fn
)pre_unix_socket
, 0, tests
},
6282 {"unix_socket_nodelay", (test_callback_fn
)pre_nodelay
, 0, tests
},
6283 {"poll_timeout", (test_callback_fn
)poll_timeout
, 0, tests
},
6284 {"gets", (test_callback_fn
)enable_cas
, 0, tests
},
6285 {"consistent_crc", (test_callback_fn
)enable_consistent_crc
, 0, tests
},
6286 {"consistent_hsieh", (test_callback_fn
)enable_consistent_hsieh
, 0, tests
},
6287 #ifdef MEMCACHED_ENABLE_DEPRECATED
6288 {"deprecated_memory_allocators", (test_callback_fn
)deprecated_set_memory_alloc
, 0, tests
},
6290 {"memory_allocators", (test_callback_fn
)set_memory_alloc
, 0, tests
},
6291 {"prefix", (test_callback_fn
)set_prefix
, 0, tests
},
6292 {"sasl_auth", (test_callback_fn
)pre_sasl
, 0, sasl_auth_tests
},
6293 {"sasl", (test_callback_fn
)pre_sasl
, 0, tests
},
6294 {"version_1_2_3", (test_callback_fn
)check_for_1_2_3
, 0, version_1_2_3
},
6295 {"string", 0, 0, string_tests
},
6296 {"result", 0, 0, result_tests
},
6297 {"async", (test_callback_fn
)pre_nonblock
, 0, async_tests
},
6298 {"async_binary", (test_callback_fn
)pre_nonblock_binary
, 0, async_tests
},
6299 {"user", 0, 0, user_tests
},
6300 {"generate", 0, 0, generate_tests
},
6301 {"generate_hsieh", (test_callback_fn
)pre_hsieh
, 0, generate_tests
},
6302 {"generate_ketama", (test_callback_fn
)pre_behavior_ketama
, 0, generate_tests
},
6303 {"generate_hsieh_consistent", (test_callback_fn
)enable_consistent_hsieh
, 0, generate_tests
},
6304 {"generate_md5", (test_callback_fn
)pre_md5
, 0, generate_tests
},
6305 {"generate_murmur", (test_callback_fn
)pre_murmur
, 0, generate_tests
},
6306 {"generate_jenkins", (test_callback_fn
)pre_jenkins
, 0, generate_tests
},
6307 {"generate_nonblock", (test_callback_fn
)pre_nonblock
, 0, generate_tests
},
6309 {"generate_corked", (test_callback_fn
)pre_cork
, 0, generate_tests
},
6310 {"generate_corked_and_nonblock", (test_callback_fn
)pre_cork_and_nonblock
, 0, generate_tests
},
6311 {"consistent_not", 0, 0, consistent_tests
},
6312 {"consistent_ketama", (test_callback_fn
)pre_behavior_ketama
, 0, consistent_tests
},
6313 {"consistent_ketama_weighted", (test_callback_fn
)pre_behavior_ketama_weighted
, 0, consistent_weighted_tests
},
6314 {"ketama_compat", 0, 0, ketama_compatibility
},
6315 {"test_hashes", 0, 0, hash_tests
},
6316 {"replication", (test_callback_fn
)pre_replication
, 0, replication_tests
},
6317 {"replication_noblock", (test_callback_fn
)pre_replication_noblock
, 0, replication_tests
},
6318 {"regression", 0, 0, regression_tests
},
6319 {"behaviors", 0, 0, behavior_tests
},
6320 {"regression_binary_vs_block", (test_callback_fn
)key_setup
, (test_callback_fn
)key_teardown
, regression_binary_vs_block
},
6321 {"error_conditions", 0, 0, error_conditions
},
6322 {"parser", 0, 0, parser_tests
},
6323 {"virtual buckets", 0, 0, virtual_bucket_tests
},
6327 #include "tests/libmemcached_world.h"
6329 void get_world(world_st
*world
)
6331 world
->collections
= collection
;
6333 world
->create
= (test_callback_create_fn
)world_create
;
6334 world
->destroy
= (test_callback_fn
)world_destroy
;
6336 world
->test
.startup
= (test_callback_fn
)world_test_startup
;
6337 world
->test
.flush
= (test_callback_fn
)world_flush
;
6338 world
->test
.pre_run
= (test_callback_fn
)world_pre_run
;
6339 world
->test
.post_run
= (test_callback_fn
)world_post_run
;
6340 world
->test
.on_error
= (test_callback_error_fn
)world_on_error
;
6342 world
->collection
.startup
= (test_callback_fn
)world_container_startup
;
6343 world
->collection
.shutdown
= (test_callback_fn
)world_container_shutdown
;
6345 world
->runner
= &defualt_libmemcached_runner
;