X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Flibmemcached_world.h;h=5a5e15b5c4fb5ff622e08e96d08357025be29fab;hb=cf630fa0430ea62a93a8ed8c2845c68590d09ed1;hp=c26323119b35696044d2e13f94ffc0d0dc23a521;hpb=a246ac50a88e4af750fd2dd209eff94dcadf72d2;p=awesomized%2Flibmemcached diff --git a/tests/libmemcached_world.h b/tests/libmemcached_world.h index c2632311..5a5e15b5 100644 --- a/tests/libmemcached_world.h +++ b/tests/libmemcached_world.h @@ -4,7 +4,7 @@ * * Use and distribution licensed under the BSD license. See * the COPYING file in the parent directory for full text. - * + * * Description: This is the startup bits for any libmemcached test. * */ @@ -17,12 +17,13 @@ extern "C" { typedef struct { server_startup_st construct; + memcached_st *parent; memcached_st *memc; } libmemcached_test_container_st; /* Prototypes for functions we will pass to test framework */ -libmemcached_test_container_st *world_create(void); -test_return_t world_collection_startup(libmemcached_test_container_st *); +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 *); @@ -32,27 +33,55 @@ test_return_t world_destroy(libmemcached_test_container_st *); static libmemcached_test_container_st global_container; -libmemcached_test_container_st *world_create(void) +/** + @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); + +libmemcached_test_container_st *world_create(test_return_t *error) { memset(&global_container, 0, sizeof(global_container)); global_container.construct.count= SERVERS_TO_CREATE; global_container.construct.udp= 0; server_startup(&global_container.construct); - assert(global_container.construct.servers); + if (! global_container.construct.servers) + { + *error= TEST_FAILURE; + server_shutdown(&global_container.construct); + return NULL; + } + + *error= TEST_SUCCESS; return &global_container; } - -test_return_t world_collection_startup(libmemcached_test_container_st *container) +test_return_t world_container_startup(libmemcached_test_container_st *container) { memcached_return_t rc; - container->memc= memcached_create(NULL); - test_truth((container->memc != NULL)); + container->parent= memcached_create(NULL); + test_true((container->parent != NULL)); - rc= memcached_server_push(container->memc, container->construct.servers); - test_truth(rc == MEMCACHED_SUCCESS); + rc= memcached_server_push(container->parent, container->construct.servers); + test_true(rc == MEMCACHED_SUCCESS); + + return TEST_SUCCESS; +} + +test_return_t world_container_shutdown(libmemcached_test_container_st *container) +{ + memcached_free(container->parent); + container->parent= NULL; + + return TEST_SUCCESS; +} + +test_return_t world_test_startup(libmemcached_test_container_st *container) +{ + container->memc= memcached_clone(NULL, container->parent); + test_true((container->memc != NULL)); return TEST_SUCCESS; } @@ -67,12 +96,13 @@ test_return_t world_flush(libmemcached_test_container_st *container) test_return_t world_pre_run(libmemcached_test_container_st *container) { - uint32_t loop; - - for (loop= 0; loop < memcached_server_list_count(container->construct.servers); loop++) + for (uint32_t loop= 0; loop < memcached_server_list_count(container->memc->servers); loop++) { - test_truth(container->memc->hosts[loop].fd == -1); - test_truth(container->memc->hosts[loop].cursor_active == 0); + memcached_server_instance_st instance= + memcached_server_instance_by_position(container->memc, loop); + + test_true(instance->fd == -1); + test_true(instance->cursor_active == 0); } return TEST_SUCCESS; @@ -81,7 +111,7 @@ test_return_t world_pre_run(libmemcached_test_container_st *container) test_return_t world_post_run(libmemcached_test_container_st *container) { - assert(container->memc); + test_true(container->memc); return TEST_SUCCESS; } @@ -90,7 +120,8 @@ test_return_t world_on_error(test_return_t test_state, libmemcached_test_contain { (void)test_state; memcached_free(container->memc); - + container->memc= NULL; + return TEST_SUCCESS; } @@ -118,6 +149,30 @@ static test_return_t _runner_default(libmemcached_test_callback_fn func, libmemc } } +static test_return_t _pre_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container) +{ + if (func) + { + return func(container->parent); + } + else + { + return TEST_SUCCESS; + } +} + +static test_return_t _post_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container) +{ + if (func) + { + return func(container->parent); + } + else + { + return TEST_SUCCESS; + } +} + #ifdef __cplusplus } #endif @@ -125,17 +180,17 @@ static test_return_t _runner_default(libmemcached_test_callback_fn func, libmemc #ifdef __cplusplus static world_runner_st defualt_libmemcached_runner= { + reinterpret_cast(_pre_runner_default), reinterpret_cast(_runner_default), - reinterpret_cast(_runner_default), - reinterpret_cast(_runner_default) + reinterpret_cast(_post_runner_default) }; #else static world_runner_st defualt_libmemcached_runner= { + (test_callback_runner_fn)_pre_runner_default, (test_callback_runner_fn)_runner_default, - (test_callback_runner_fn)_runner_default, - (test_callback_runner_fn)_runner_default + (test_callback_runner_fn)_post_runner_default }; #endif