X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Ftest.c;h=78fe4a70ff8b284ee4db96e3256ef4eed46135bb;hb=bffba75d25150a0c08f37c759bad82ee90cf00f1;hp=1de861ab6d7c5970e9b422c374668091f8fa66bb;hpb=201fa21f8b3c3bf7cef0e705ae403d3ad7841341;p=awesomized%2Flibmemcached diff --git a/tests/test.c b/tests/test.c index 1de861ab..78fe4a70 100644 --- a/tests/test.c +++ b/tests/test.c @@ -2,7 +2,6 @@ Sample test application. */ #include -#include #include #include #include @@ -10,16 +9,18 @@ #include #include #include +#include +#include "server.h" #include "test.h" -long int timedif(struct timeval a, struct timeval b) +static long int timedif(struct timeval a, struct timeval b) { register int us, s; - us = a.tv_usec - b.tv_usec; + us = (int)(a.tv_usec - b.tv_usec); us /= 1000; - s = a.tv_sec - b.tv_sec; + s = (int)(a.tv_sec - b.tv_sec); s *= 1000; return s + us; } @@ -27,15 +28,27 @@ long int timedif(struct timeval a, struct timeval b) int main(int argc, char *argv[]) { unsigned int x; - char *server_list; char *collection_to_run= NULL; char *wildcard= NULL; + server_startup_st *startup_ptr; memcached_server_st *servers; + world_st world; collection_st *collection; + collection_st *next; uint8_t failed; + void *world_ptr; + + memset(&world, 0, sizeof(world_st)); + get_world(&world); + collection= world.collections; - collection= gets_collections(); + if (world.create) + world_ptr= world.create(); + else + world_ptr= NULL; + startup_ptr= (server_startup_st *)world_ptr; + servers= (memcached_server_st *)startup_ptr->servers; if (argc > 1) collection_to_run= argv[1]; @@ -43,67 +56,49 @@ int main(int argc, char *argv[]) if (argc == 3) wildcard= argv[2]; - if (!(server_list= getenv("MEMCACHED_SERVERS"))) - server_list= "localhost"; - - printf("servers %s\n", server_list); - srandom(time(NULL)); - - servers= memcached_servers_parse(server_list); - assert(servers); - - for (x= 0; x < memcached_server_list_count(servers); x++) - { - printf("\t%s : %u\n", servers[x].hostname, servers[x].port); - assert(servers[x].stack_responses == 0); - assert(servers[x].fd == -1); - assert(servers[x].cursor_active == 0); - } - - printf("\n"); - - collection_st *next; for (next= collection; next->name; next++) { test_st *run; run= next->tests; - if (collection_to_run && strcmp(collection_to_run, next->name)) + if (collection_to_run && fnmatch(collection_to_run, next->name, 0)) continue; fprintf(stderr, "\n%s\n\n", next->name); for (x= 0; run->name; run++) { - if (wildcard && strcmp(wildcard, run->name)) - continue; - - fprintf(stderr, "Testing %s", run->name); - + unsigned int loop; memcached_st *memc; memcached_return rc; struct timeval start_time, end_time; + long int load_time; + + if (wildcard && fnmatch(wildcard, run->name, 0)) + continue; + + fprintf(stderr, "Testing %s", run->name); memc= memcached_create(NULL); assert(memc); - if (run->requires_flush) - memcached_flush(memc, 0); - rc= memcached_server_push(memc, servers); assert(rc == MEMCACHED_SUCCESS); - unsigned int loop; + if (run->requires_flush) + { + memcached_flush(memc, 0); + memcached_quit(memc); + } + for (loop= 0; loop < memcached_server_list_count(servers); loop++) { - assert(memc->hosts[loop].stack_responses == 0); assert(memc->hosts[loop].fd == -1); assert(memc->hosts[loop].cursor_active == 0); } if (next->pre) { - memcached_return rc; rc= next->pre(memc); if (rc != MEMCACHED_SUCCESS) @@ -116,7 +111,7 @@ int main(int argc, char *argv[]) gettimeofday(&start_time, NULL); failed= run->function(memc); gettimeofday(&end_time, NULL); - long int load_time= timedif(end_time, start_time); + load_time= timedif(end_time, start_time); if (failed) fprintf(stderr, "\t\t\t\t\t %ld.%03ld [ failed ]\n", load_time / 1000, load_time % 1000); @@ -135,7 +130,8 @@ error: fprintf(stderr, "All tests completed successfully\n\n"); - memcached_server_list_free(servers); + if (world.destroy) + world.destroy(world_ptr); return 0; }