X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Flibmemcached_world.h;h=824aabe751adfa503384f780d83233d404f81db1;hb=d521f204f60a10080bc130ab083a21e495e136bc;hp=fc0b6ae8a8dad12ec3d830a16f8e942d16d04735;hpb=ecc7382f48857cb22e74ffa9496f9a31e956bde3;p=m6w6%2Flibmemcached diff --git a/tests/libmemcached_world.h b/tests/libmemcached_world.h index fc0b6ae8..824aabe7 100644 --- a/tests/libmemcached_world.h +++ b/tests/libmemcached_world.h @@ -9,73 +9,162 @@ * */ -#ifdef __cplusplus -extern "C" { -#endif +#pragma once + +#include /* The structure we use for the test system */ struct libmemcached_test_container_st { - server_startup_st construct; + server_startup_st& construct; memcached_st *parent; memcached_st *memc; - libmemcached_test_container_st() : + libmemcached_test_container_st(server_startup_st &construct_arg) : + construct(construct_arg), parent(NULL), memc(NULL) + { } +}; + +static void *world_create(server_startup_st& servers, test_return_t& error) +{ + if (HAVE_MEMCACHED_BINARY == 0) { - memset(&construct, 0, sizeof(server_startup_st)); + error= TEST_SKIPPED; + return NULL; } -}; -/* Prototypes for functions we will pass to test framework */ -libmemcached_test_container_st *world_create(test_return_t *error); -test_return_t world_test_startup(libmemcached_test_container_st *); -test_return_t world_flush(libmemcached_test_container_st *container); -test_return_t world_pre_run(libmemcached_test_container_st *); + if (servers.sasl() and (LIBMEMCACHED_WITH_SASL_SUPPORT == 0 or MEMCACHED_SASL_BINARY == 0)) + { + error= TEST_SKIPPED; + return NULL; + } -test_return_t world_post_run(libmemcached_test_container_st *); -test_return_t world_on_error(test_return_t, libmemcached_test_container_st *); -test_return_t world_destroy(libmemcached_test_container_st *); + // Assume we are running under valgrind, and bail + if (servers.sasl() and getenv("TESTS_ENVIRONMENT")) + { + error= TEST_SKIPPED; + return NULL; + } -static libmemcached_test_container_st global_container; + in_port_t max_port= TEST_PORT_BASE; + for (uint32_t x= 0; x < servers.count(); x++) + { + in_port_t port; + + char variable_buffer[1024]; + snprintf(variable_buffer, sizeof(variable_buffer), "LIBMEMCACHED_PORT_%u", x); + + char *var; + if ((var= getenv(variable_buffer))) + { + port= in_port_t(atoi(var)); + } + else + { + port= in_port_t(TEST_PORT_BASE +x); + } + + max_port= port; + const char *argv[1]= { "memcached" }; + if (servers.sasl()) + { + if (not server_startup(servers, "memcached-sasl", port, 1, argv)) + { + error= TEST_FATAL; + return NULL; + } + } + else + { + if (not server_startup(servers, "memcached", port, 1, argv)) + { + error= TEST_FATAL; + return NULL; + } + } + } -/** - @note generic shutdown/startup for libmemcached tests. -*/ -test_return_t world_container_startup(libmemcached_test_container_st *container); -test_return_t world_container_shutdown(libmemcached_test_container_st *container); + if (servers.socket()) + { + if (servers.sasl()) + { + const char *argv[1]= { "memcached" }; + if (not servers.start_socket_server("memcached-sasl", max_port +1, 1, argv)) + { + error= TEST_FATAL; + return NULL; + } + } + else + { + const char *argv[1]= { "memcached" }; + if (not servers.start_socket_server("memcached", max_port +1, 1, argv)) + { + error= TEST_FATAL; + return NULL; + } + } + } -libmemcached_test_container_st *world_create(test_return_t *error) -{ - global_container.construct.count= SERVERS_TO_CREATE; - global_container.construct.udp= 0; - server_startup(&global_container.construct); - if (not global_container.construct.servers) + libmemcached_test_container_st *global_container= new libmemcached_test_container_st(servers); + if (global_container == NULL) { - *error= TEST_FAILURE; - server_shutdown(&global_container.construct); + error= TEST_MEMORY_ALLOCATION_FAILURE; return NULL; } - *error= TEST_SUCCESS; + error= TEST_SUCCESS; - return &global_container; + return global_container; } -test_return_t world_container_startup(libmemcached_test_container_st *container) +static test_return_t world_container_startup(libmemcached_test_container_st *container) { - container->parent= memcached_create(NULL); - test_true((container->parent != NULL)); + char buffer[BUFSIZ]; + + test_compare_got(MEMCACHED_SUCCESS, + libmemcached_check_configuration(container->construct.option_string().c_str(), container->construct.option_string().size(), + buffer, sizeof(buffer)), + container->construct.option_string().c_str()); - test_compare(MEMCACHED_SUCCESS, - memcached_server_push(container->parent, container->construct.servers)); + test_null(container->parent); + container->parent= memcached(container->construct.option_string().c_str(), container->construct.option_string().size()); + test_true(container->parent); + test_compare(MEMCACHED_SUCCESS, memcached_version(container->parent)); + + if (container->construct.sasl()) + { + if (memcached_failed(memcached_behavior_set(container->parent, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1))) + { + memcached_free(container->parent); + return TEST_FAILURE; + } + + if (memcached_failed(memcached_set_sasl_auth_data(container->parent, container->construct.username().c_str(), container->construct.password().c_str()))) + { + memcached_free(container->parent); + return TEST_FAILURE; + } + } + + for (uint32_t host= 0; host < memcached_server_count(container->parent); ++host) + { + memcached_server_instance_st instance= + memcached_server_instance_by_position(container->parent, host); + + if (instance->type == MEMCACHED_CONNECTION_TCP) + { + test_true_got(memcached_server_port(instance) >= TEST_PORT_BASE, memcached_server_port(instance)); + } + } return TEST_SUCCESS; } -test_return_t world_container_shutdown(libmemcached_test_container_st *container) +static test_return_t world_container_shutdown(libmemcached_test_container_st *container) { memcached_free(container->parent); container->parent= NULL; @@ -83,79 +172,96 @@ test_return_t world_container_shutdown(libmemcached_test_container_st *container return TEST_SUCCESS; } -test_return_t world_test_startup(libmemcached_test_container_st *container) +static test_return_t world_test_startup(libmemcached_test_container_st *container) { + test_true(container); + test_null(container->memc); + test_true(container->parent); container->memc= memcached_clone(NULL, container->parent); - test_true((container->memc != NULL)); + test_true(container->memc); return TEST_SUCCESS; } +test_return_t world_flush(libmemcached_test_container_st *container); test_return_t world_flush(libmemcached_test_container_st *container) { + test_true(container->memc); memcached_flush(container->memc, 0); memcached_quit(container->memc); return TEST_SUCCESS; } -test_return_t world_pre_run(libmemcached_test_container_st *container) +static test_return_t world_pre_run(libmemcached_test_container_st *container) { + test_true(container->memc); for (uint32_t loop= 0; loop < memcached_server_list_count(container->memc->servers); loop++) { memcached_server_instance_st instance= memcached_server_instance_by_position(container->memc, loop); test_compare(-1, instance->fd); - test_compare(0, instance->cursor_active); + test_compare(0U, instance->cursor_active); } return TEST_SUCCESS; } -test_return_t world_post_run(libmemcached_test_container_st *container) +static test_return_t world_post_run(libmemcached_test_container_st *container) { test_true(container->memc); return TEST_SUCCESS; } -test_return_t world_on_error(test_return_t test_state, libmemcached_test_container_st *container) +static test_return_t world_on_error(test_return_t , libmemcached_test_container_st *container) { - (void)test_state; + test_true(container->memc); memcached_free(container->memc); container->memc= NULL; return TEST_SUCCESS; } -test_return_t world_destroy(libmemcached_test_container_st *container) +static bool world_destroy(void *object) { - server_startup_st *construct= &container->construct; - memcached_server_st *servers= container->construct.servers; - memcached_server_list_free(servers); - - server_shutdown(construct); - -#ifdef LIBMEMCACHED_WITH_SASL_SUPPORT - sasl_done(); + libmemcached_test_container_st *container= (libmemcached_test_container_st *)object; +#if defined(LIBMEMCACHED_WITH_SASL_SUPPORT) && LIBMEMCACHED_WITH_SASL_SUPPORT + if (LIBMEMCACHED_WITH_SASL_SUPPORT) + { + sasl_done(); + } #endif + delete container; + return TEST_SUCCESS; } typedef test_return_t (*libmemcached_test_callback_fn)(memcached_st *); + static test_return_t _runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container) { if (func) { - return func(container->memc); - } - else - { - return TEST_SUCCESS; + test_true(container); + test_true(container->memc); + test_return_t ret; + try { + ret= func(container->memc); + } + catch (std::exception& e) + { + Error << e.what(); + return TEST_FAILURE; + } + + return ret; } + + return TEST_SUCCESS; } static test_return_t _pre_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container) @@ -164,10 +270,8 @@ static test_return_t _pre_runner_default(libmemcached_test_callback_fn func, lib { return func(container->parent); } - else - { - return TEST_SUCCESS; - } + + return TEST_SUCCESS; } static test_return_t _post_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container) @@ -176,30 +280,26 @@ static test_return_t _post_runner_default(libmemcached_test_callback_fn func, li { return func(container->parent); } - else - { - return TEST_SUCCESS; - } -} -#ifdef __cplusplus + return TEST_SUCCESS; } -#endif -#ifdef __cplusplus - -static Runner defualt_libmemcached_runner= { - reinterpret_cast(_pre_runner_default), - reinterpret_cast(_runner_default), - reinterpret_cast(_post_runner_default) -}; +class LibmemcachedRunner : public Runner { +public: + test_return_t run(test_callback_fn* func, void *object) + { + return _runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object); + } -#else + test_return_t pre(test_callback_fn* func, void *object) + { + return _pre_runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object); + } -static Runner defualt_libmemcached_runner= { - (test_callback_runner_fn)_pre_runner_default, - (test_callback_runner_fn)_runner_default, - (test_callback_runner_fn)_post_runner_default + test_return_t post(test_callback_fn* func, void *object) + { + return _post_runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object); + } }; -#endif +static LibmemcachedRunner defualt_libmemcached_runner;