X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=tests%2Flibmemcached-1.0%2Fstat.cc;h=fe92230e81b6d545388c037e1757351e71cc6cd5;hb=d9db3f534bc38ea22e83e5529ff93aea4150ab19;hp=5a16495efba540b0b4a69698506ac67fed42b637;hpb=25efe3485198149616820ab4e52d2f18f0abe5a7;p=awesomized%2Flibmemcached diff --git a/tests/libmemcached-1.0/stat.cc b/tests/libmemcached-1.0/stat.cc index 5a16495e..fe92230e 100644 --- a/tests/libmemcached-1.0/stat.cc +++ b/tests/libmemcached-1.0/stat.cc @@ -34,7 +34,7 @@ * */ -#include +#include #include #include @@ -42,13 +42,13 @@ #include #include -#include +#include using namespace libtest; #include "tests/libmemcached-1.0/stat.h" -static memcached_return_t item_counter(memcached_server_instance_st , +static memcached_return_t item_counter(const memcached_instance_st * , const char *key, size_t key_length, const char *value, size_t, // value_length, void *context) @@ -57,10 +57,7 @@ static memcached_return_t item_counter(memcached_server_instance_st , { uint64_t* counter= (uint64_t*)context; unsigned long number_value= strtoul(value, (char **)NULL, 10); - if (number_value == ULONG_MAX) - { - return MEMCACHED_FAILURE; - } + ASSERT_NEQ(number_value, ULONG_MAX); *counter= *counter +number_value; } @@ -85,10 +82,9 @@ test_return_t memcached_stat_TEST2(memcached_st *memc) for (uint32_t x= 0; x < memcached_dump_TEST2_COUNT; x++) { char key[1024]; - int length= snprintf(key, sizeof(key), "%s%u", __func__, x); - test_true(length > 0); + ASSERT_TRUE(length > 0); test_compare(MEMCACHED_SUCCESS, memcached_set(memc, key, length, @@ -98,9 +94,9 @@ test_return_t memcached_stat_TEST2(memcached_st *memc) memcached_quit(memc); uint64_t counter= 0; - test_compare(MEMCACHED_SUCCESS, - memcached_stat_execute(memc, NULL, item_counter, &counter)); - test_true(counter); + ASSERT_EQ(MEMCACHED_SUCCESS, + memcached_stat_execute(memc, NULL, item_counter, &counter)); + ASSERT_TRUE(counter); return TEST_SUCCESS; }