remove obsolete file
[awesomized/libmemcached] / tests / libmemcached-1.0 / stat.cc
index 60318790dbf75454b34921642f3b32c242517c58..f65dea5f02afcd66171cc199221b217c85ac8e21 100644 (file)
  *
  */
 
-#include <mem_config.h>
+#include "mem_config.h"
 
 #include <cstdlib>
 #include <climits>
 
-#include <libtest/test.hpp>
+#include "libtest/test.hpp"
 
-#include <libmemcached-1.0/memcached.h>
-#include <libmemcachedutil-1.0/util.h>
+#include "libmemcached-1.0/memcached.h"
+#include "libmemcachedutil-1.0/util.h"
 
 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;
 }