tests: cleanup tests ported so far
authorMichael Wallner <mike@php.net>
Thu, 17 Sep 2020 07:36:50 +0000 (09:36 +0200)
committerMichael Wallner <mike@php.net>
Mon, 28 Sep 2020 15:40:41 +0000 (17:40 +0200)
59 files changed:
example/cpp_example.cc [new file with mode: 0644]
test/tests/memcached/regression/binary_block_add.cpp
test/tests/memcached/regression/lp1048945.cpp [new file with mode: 0644]
test/tests/memcached/servers.cpp
tests/CMakeLists.txt [deleted file]
tests/basic.h [deleted file]
tests/callbacks.h [deleted file]
tests/cpp_example.cc [deleted file]
tests/cycle.cc [deleted file]
tests/debug.h [deleted file]
tests/deprecated.h [deleted file]
tests/error_conditions.h [deleted file]
tests/exist.h [deleted file]
tests/hash_plus.cc [deleted file]
tests/hash_results.h [deleted file]
tests/hashkit_functions.cc [deleted file]
tests/ketama.h [deleted file]
tests/ketama_test_cases.h [deleted file]
tests/ketama_test_cases_spy.h [deleted file]
tests/libmemcached-1.0/all_tests.h [deleted file]
tests/libmemcached-1.0/basic.cc [deleted file]
tests/libmemcached-1.0/callback_counter.cc [deleted file]
tests/libmemcached-1.0/callback_counter.h [deleted file]
tests/libmemcached-1.0/callbacks.cc [deleted file]
tests/libmemcached-1.0/debug.cc [deleted file]
tests/libmemcached-1.0/deprecated.cc [deleted file]
tests/libmemcached-1.0/dump.cc [deleted file]
tests/libmemcached-1.0/dump.h [deleted file]
tests/libmemcached-1.0/encoding_key.cc [deleted file]
tests/libmemcached-1.0/encoding_key.h [deleted file]
tests/libmemcached-1.0/error_conditions.cc [deleted file]
tests/libmemcached-1.0/exist.cc [deleted file]
tests/libmemcached-1.0/fetch_all_results.cc [deleted file]
tests/libmemcached-1.0/fetch_all_results.h [deleted file]
tests/libmemcached-1.0/generate.h [deleted file]
tests/libmemcached-1.0/haldenbrand.cc [deleted file]
tests/libmemcached-1.0/haldenbrand.h [deleted file]
tests/libmemcached-1.0/internals.cc [deleted file]
tests/libmemcached-1.0/ketama.cc [deleted file]
tests/libmemcached-1.0/mem_functions.cc
tests/libmemcached_test_container.h [deleted file]
tests/libmemcached_world.h [deleted file]
tests/libmemcached_world_socket.h [deleted file]
tests/memc.hpp [deleted file]
tests/memcat.cc [deleted file]
tests/memcp.cc [deleted file]
tests/memdump.cc [deleted file]
tests/memerror.cc [deleted file]
tests/memexist.cc [deleted file]
tests/memflush.cc [deleted file]
tests/namespace.h [deleted file]
tests/pool.h [deleted file]
tests/print.h [deleted file]
tests/replication.h [deleted file]
tests/runner.h [deleted file]
tests/server_add.h [deleted file]
tests/string.h [deleted file]
tests/touch.h [deleted file]
tests/virtual_buckets.h [deleted file]

diff --git a/example/cpp_example.cc b/example/cpp_example.cc
new file mode 100644 (file)
index 0000000..0aa375e
--- /dev/null
@@ -0,0 +1,195 @@
+/*
+ * An example file showing the usage of the C++ libmemcached interface.
+ */
+#include "mem_config.h"
+
+#include <vector>
+#include <string>
+#include <iostream>
+#include <algorithm>
+#include <map>
+
+#include <string.h>
+
+#include "libmemcached/memcached.hpp"
+
+using namespace std;
+using namespace memcache;
+
+class DeletePtrs
+{
+public:
+  template<typename T>
+  inline void operator()(const T *ptr) const
+  {
+    delete ptr;
+  }
+};
+
+class MyCache
+{
+public:
+
+  static const uint32_t num_of_clients= 10;
+
+  static MyCache &singleton()
+  {
+    static MyCache instance;
+    return instance;
+  }
+
+  void set(const string &key,
+           const vector<char> &value)
+  {
+    time_t expiry= 0;
+    uint32_t flags= 0;
+    getCache()->set(key, value, expiry, flags);
+  }
+
+  vector<char> get(const string &key)
+  {
+    vector<char> ret_value;
+    getCache()->get(key, ret_value);
+    return ret_value;
+  }
+
+  void remove(const string &key)
+  {
+    getCache()->remove(key);
+  }
+
+  Memcache *getCache()
+  {
+    /* 
+     * pick a random element from the vector of clients. Obviously, this is
+     * not very random but suffices as an example!
+     */
+    uint32_t index= rand() % num_of_clients;
+    return clients[index];
+  } 
+
+private:
+
+  /*
+   * A vector of clients.
+   */
+  std::vector<Memcache *> clients;
+
+  MyCache()
+    :
+      clients()
+  {
+    /* create clients and add them to the vector */
+    for (uint32_t i= 0; i < num_of_clients; i++)
+    {
+      Memcache *client= new Memcache("127.0.0.1:11211");
+      clients.push_back(client);
+    }
+  }
+
+  ~MyCache()
+  {
+    for_each(clients.begin(), clients.end(), DeletePtrs());
+    clients.clear();
+  }
+
+  MyCache(const MyCache&);
+
+};
+
+class Product
+{
+public:
+
+  Product(int in_id, double in_price)
+    :
+      id(in_id),
+      price(in_price)
+  {}
+
+  Product()
+    :
+      id(0),
+      price(0.0)
+  {}
+
+  int getId() const
+  {
+    return id;
+  }
+
+  double getPrice() const
+  {
+    return price;
+  }
+
+private:
+
+  int id;
+  double price;
+
+};
+
+void setAllProducts(vector<Product> &products)
+{
+  vector<char> raw_products(products.size() * sizeof(Product));
+  memcpy(&raw_products[0], &products[0], products.size() * sizeof(Product));
+  MyCache::singleton().set("AllProducts", raw_products);
+}
+
+vector<Product> getAllProducts()
+{
+  vector<char> raw_products = MyCache::singleton().get("AllProducts");
+  vector<Product> products(raw_products.size() / sizeof(Product));
+  memcpy(&products[0], &raw_products[0], raw_products.size());
+  return products;
+}
+
+Product getProduct(const string &key)
+{
+  vector<char> raw_product= MyCache::singleton().get(key);
+  Product ret;
+  if (! raw_product.empty())
+  {
+    memcpy(&ret, &raw_product[0], sizeof(Product));
+  }
+  else
+  {
+    /* retrieve it from the persistent store */
+  }
+  return ret;
+}
+
+void setProduct(const string &key, const Product &product)
+{
+  vector<char> raw_product(sizeof(Product));
+  memcpy(&raw_product[0], &product, sizeof(Product));
+  MyCache::singleton().set(key, raw_product);
+}
+
+int main()
+{
+  Memcache first_client("127.0.0.1:19191");
+  map< string, map<string, string> > my_stats;
+  first_client.getStats(my_stats);
+  
+  /*
+   * Iterate through the retrieved stats.
+   */
+  map< string, map<string, string> >::iterator it=
+    my_stats.begin();
+  while (it != my_stats.end())
+  {
+    cout << "working with server: " << (*it).first << endl;
+    map<string, string> serv_stats= (*it).second;
+    map<string, string>::iterator iter= serv_stats.begin();
+    while (iter != serv_stats.end())
+    {
+      cout << (*iter).first << ":" << (*iter).second << endl;
+      ++iter;
+    }
+    ++it;
+  }
+
+  return EXIT_SUCCESS;
+}
index f976201a4b7ff6bdf229094a585c9acf20e470c8..c0873aa81430997721b76194c09a96c1ba5612ba 100644 (file)
@@ -5,8 +5,10 @@ TEST_CASE("memcached_regression_binary_block_add") {
   auto test = MemcachedCluster::network();
   auto memc = &test.memc;
   auto blob = random_ascii_string(1024);
+  auto binary = GENERATE(0, 1);
 
-  test.enableBinaryProto();
+  test.enableBinaryProto(binary);
+  INFO("binary: " << binary);
 
   for (auto i = 0; i < 20480; ++i) {
     auto rkey = random_ascii_string(12);
diff --git a/test/tests/memcached/regression/lp1048945.cpp b/test/tests/memcached/regression/lp1048945.cpp
new file mode 100644 (file)
index 0000000..b4d3ae5
--- /dev/null
@@ -0,0 +1,28 @@
+#include "test/lib/common.hpp"
+#include "test/lib/MemcachedCluster.hpp"
+
+TEST_CASE("memcached_regression_lp1048945") {
+    MemcachedPtr memc_ptr(memcached_create(nullptr));
+    auto memc = *memc_ptr;
+    LoneReturnMatcher test{memc};
+    memcached_return status;
+
+    auto list = memcached_server_list_append_with_weight(nullptr, "a", 11211, 0, &status);
+    REQUIRE_SUCCESS(status);
+
+    list = memcached_server_list_append_with_weight(list, "b", 11211, 0, &status);
+    REQUIRE_SUCCESS(status);
+
+    list = memcached_server_list_append_with_weight(list, "c", 11211, 0, &status);
+    REQUIRE_SUCCESS(status);
+
+    REQUIRE(3 == memcached_server_list_count(list));
+
+    REQUIRE_SUCCESS(memcached_server_push(memc, list));
+    REQUIRE_SUCCESS(memcached_server_push(memc, list));
+    memcached_server_list_free(list);
+
+    auto server = memcached_server_by_key(memc, S(__func__), &status);
+    REQUIRE(server);
+    REQUIRE_SUCCESS(status);
+}
index 27a8aeafb9b986e087c3172319d4968c44321f66..db96a845d1669d38142df316aff036d246cec246 100644 (file)
@@ -91,29 +91,4 @@ TEST_CASE("memcached_servers") {
     }
   }
 
-  SECTION("regression lp:1048945") {
-    MemcachedPtr memc_ptr(memcached_create(nullptr));
-    auto memc = *memc_ptr;
-    LoneReturnMatcher test{memc};
-    memcached_return status;
-
-    auto list = memcached_server_list_append_with_weight(nullptr, "a", 11211, 0, &status);
-    REQUIRE_SUCCESS(status);
-
-    list = memcached_server_list_append_with_weight(list, "b", 11211, 0, &status);
-    REQUIRE_SUCCESS(status);
-
-    list = memcached_server_list_append_with_weight(list, "c", 11211, 0, &status);
-    REQUIRE_SUCCESS(status);
-
-    REQUIRE(3 == memcached_server_list_count(list));
-
-    REQUIRE_SUCCESS(memcached_server_push(memc, list));
-    REQUIRE_SUCCESS(memcached_server_push(memc, list));
-    memcached_server_list_free(list);
-
-    auto server = memcached_server_by_key(memc, S(__func__), &status);
-    REQUIRE(server);
-    REQUIRE_SUCCESS(status);
-  }
 }
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
deleted file mode 100644 (file)
index bfb0214..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-
-add_subdirectory(libmemcached-1.0)
-
-add_executable(cycle cycle.cc)
-target_link_libraries(cycle PRIVATE libtest Threads::Threads)
-add_test(cycle cycle)
-
-add_executable(parser parser.cc)
-target_link_libraries(parser PRIVATE libtest libmemcached)
-add_test(parser parser)
-
-add_executable(failure failure.cc)
-add_executable(testudp mem_udp.cc)
-
-foreach(TEST IN ITEMS failure testudp)
-    target_sources(${TEST} PRIVATE
-            libmemcached-1.0/callback_counter.cc
-            libmemcached-1.0/fetch_all_results.cc
-            libmemcached-1.0/generate.cc
-            libmemcached-1.0/print.cc
-            )
-    target_link_libraries(${TEST} PRIVATE
-            libclient_utilities
-            libmemcached
-            libmemcachedutil
-            libtest
-            )
-    target_include_directories(${TEST} PRIVATE ..)
-    add_test(${TEST} ${TEST})
-endforeach()
-
-add_executable(testhashkit hashkit_functions.cc)
-target_link_libraries(testhashkit PRIVATE libtest libhashkit)
-add_test(testhashkit testhashkit)
-
-add_executable(hash_plus hash_plus.cc)
-target_link_libraries(hash_plus PRIVATE libtest libhashkit)
-add_test(testhashplus hash_plus)
-
-foreach(CLIENT IN LISTS CLIENTS)
-    if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${CLIENT}.cc)
-        add_executable(test${CLIENT} ${CLIENT}.cc)
-        target_link_libraries(test${CLIENT} PRIVATE
-                libmemcached
-                libmemcachedutil
-                libtest
-                )
-        add_test(test${CLIENT} test${CLIENT})
-    endif()
-endforeach()
diff --git a/tests/basic.h b/tests/basic.h
deleted file mode 100644 (file)
index e3207d8..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-#include "libtest/visibility.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-LIBTEST_LOCAL
-test_return_t basic_init_test(memcached_st *junk);
-
-LIBTEST_LOCAL
-test_return_t basic_clone_test(memcached_st *memc);
-
-LIBTEST_LOCAL
-test_return_t basic_reset_stack_test(memcached_st *junk);
-
-LIBTEST_LOCAL
-test_return_t basic_reset_heap_test(memcached_st *junk);
-
-LIBTEST_LOCAL
-test_return_t basic_reset_stack_clone_test(memcached_st *memc);
-
-LIBTEST_LOCAL
-test_return_t basic_reset_heap_clone_test(memcached_st *memc);
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/tests/callbacks.h b/tests/callbacks.h
deleted file mode 100644 (file)
index 070670c..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t test_MEMCACHED_CALLBACK_DELETE_TRIGGER_and_MEMCACHED_BEHAVIOR_NOREPLY(memcached_st *);
-test_return_t test_MEMCACHED_CALLBACK_DELETE_TRIGGER(memcached_st *);
diff --git a/tests/cpp_example.cc b/tests/cpp_example.cc
deleted file mode 100644 (file)
index 0aa375e..0000000
+++ /dev/null
@@ -1,195 +0,0 @@
-/*
- * An example file showing the usage of the C++ libmemcached interface.
- */
-#include "mem_config.h"
-
-#include <vector>
-#include <string>
-#include <iostream>
-#include <algorithm>
-#include <map>
-
-#include <string.h>
-
-#include "libmemcached/memcached.hpp"
-
-using namespace std;
-using namespace memcache;
-
-class DeletePtrs
-{
-public:
-  template<typename T>
-  inline void operator()(const T *ptr) const
-  {
-    delete ptr;
-  }
-};
-
-class MyCache
-{
-public:
-
-  static const uint32_t num_of_clients= 10;
-
-  static MyCache &singleton()
-  {
-    static MyCache instance;
-    return instance;
-  }
-
-  void set(const string &key,
-           const vector<char> &value)
-  {
-    time_t expiry= 0;
-    uint32_t flags= 0;
-    getCache()->set(key, value, expiry, flags);
-  }
-
-  vector<char> get(const string &key)
-  {
-    vector<char> ret_value;
-    getCache()->get(key, ret_value);
-    return ret_value;
-  }
-
-  void remove(const string &key)
-  {
-    getCache()->remove(key);
-  }
-
-  Memcache *getCache()
-  {
-    /* 
-     * pick a random element from the vector of clients. Obviously, this is
-     * not very random but suffices as an example!
-     */
-    uint32_t index= rand() % num_of_clients;
-    return clients[index];
-  } 
-
-private:
-
-  /*
-   * A vector of clients.
-   */
-  std::vector<Memcache *> clients;
-
-  MyCache()
-    :
-      clients()
-  {
-    /* create clients and add them to the vector */
-    for (uint32_t i= 0; i < num_of_clients; i++)
-    {
-      Memcache *client= new Memcache("127.0.0.1:11211");
-      clients.push_back(client);
-    }
-  }
-
-  ~MyCache()
-  {
-    for_each(clients.begin(), clients.end(), DeletePtrs());
-    clients.clear();
-  }
-
-  MyCache(const MyCache&);
-
-};
-
-class Product
-{
-public:
-
-  Product(int in_id, double in_price)
-    :
-      id(in_id),
-      price(in_price)
-  {}
-
-  Product()
-    :
-      id(0),
-      price(0.0)
-  {}
-
-  int getId() const
-  {
-    return id;
-  }
-
-  double getPrice() const
-  {
-    return price;
-  }
-
-private:
-
-  int id;
-  double price;
-
-};
-
-void setAllProducts(vector<Product> &products)
-{
-  vector<char> raw_products(products.size() * sizeof(Product));
-  memcpy(&raw_products[0], &products[0], products.size() * sizeof(Product));
-  MyCache::singleton().set("AllProducts", raw_products);
-}
-
-vector<Product> getAllProducts()
-{
-  vector<char> raw_products = MyCache::singleton().get("AllProducts");
-  vector<Product> products(raw_products.size() / sizeof(Product));
-  memcpy(&products[0], &raw_products[0], raw_products.size());
-  return products;
-}
-
-Product getProduct(const string &key)
-{
-  vector<char> raw_product= MyCache::singleton().get(key);
-  Product ret;
-  if (! raw_product.empty())
-  {
-    memcpy(&ret, &raw_product[0], sizeof(Product));
-  }
-  else
-  {
-    /* retrieve it from the persistent store */
-  }
-  return ret;
-}
-
-void setProduct(const string &key, const Product &product)
-{
-  vector<char> raw_product(sizeof(Product));
-  memcpy(&raw_product[0], &product, sizeof(Product));
-  MyCache::singleton().set(key, raw_product);
-}
-
-int main()
-{
-  Memcache first_client("127.0.0.1:19191");
-  map< string, map<string, string> > my_stats;
-  first_client.getStats(my_stats);
-  
-  /*
-   * Iterate through the retrieved stats.
-   */
-  map< string, map<string, string> >::iterator it=
-    my_stats.begin();
-  while (it != my_stats.end())
-  {
-    cout << "working with server: " << (*it).first << endl;
-    map<string, string> serv_stats= (*it).second;
-    map<string, string>::iterator iter= serv_stats.begin();
-    while (iter != serv_stats.end())
-    {
-      cout << (*iter).first << ":" << (*iter).second << endl;
-      ++iter;
-    }
-    ++it;
-  }
-
-  return EXIT_SUCCESS;
-}
diff --git a/tests/cycle.cc b/tests/cycle.cc
deleted file mode 100644 (file)
index 618994b..0000000
+++ /dev/null
@@ -1,143 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Cycle the Gearmand server
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-using namespace libtest;
-#include "libmemcached-1.0/memcached.h"
-
-static test_return_t server_startup_single_TEST(void *obj)
-{
-  server_startup_st *servers= (server_startup_st*)obj;
-  test_compare(true, server_startup(*servers, "memcached", libtest::get_free_port(), NULL));
-  test_compare(true, servers->shutdown());
-
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t server_startup_multiple_TEST(void *obj)
-{
-  test_skip(true, jenkins_is_caller());
-
-  server_startup_st *servers= (server_startup_st*)obj;
-  for (size_t x= 0; x < 10; ++x)
-  {
-    test_compare(true, server_startup(*servers, "memcached", libtest::get_free_port(), NULL));
-  }
-  test_compare(true, servers->shutdown());
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t shutdown_and_remove_TEST(void *obj)
-{
-  server_startup_st *servers= (server_startup_st*)obj;
-  servers->clear();
-
-  return TEST_SUCCESS;
-}
-
-test_st server_startup_TESTS[] ={
-  {"server_startup(1)", false, (test_callback_fn*)server_startup_single_TEST },
-  {"server_startup(10)", false, (test_callback_fn*)server_startup_multiple_TEST },
-  {"shutdown_and_remove()", false, (test_callback_fn*)shutdown_and_remove_TEST },
-  {"server_startup(10)", false, (test_callback_fn*)server_startup_multiple_TEST },
-  {0, 0, 0}
-};
-
-#if 0
-static test_return_t collection_INIT(void *object)
-{
-  server_startup_st *servers= (server_startup_st*)object;
-  test_zero(servers->count());
-  test_compare(true, server_startup(*servers, "memcached", libtest::default_port(), 0, NULL));
-
-  return TEST_SUCCESS;
-}
-#endif
-
-static test_return_t validate_sanity_INIT(void *object)
-{
-  server_startup_st *servers= (server_startup_st*)object;
-
-  test_zero(servers->count());
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t collection_FINAL(void *object)
-{
-  server_startup_st *servers= (server_startup_st*)object;
-  servers->clear();
-
-  return TEST_SUCCESS;
-}
-
-collection_st collection[] ={
-  {"server_startup()", validate_sanity_INIT, collection_FINAL, server_startup_TESTS },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st& servers, test_return_t& error)
-{
-  if (jenkins_is_caller())
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  return &servers;
-}
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/debug.h b/tests/debug.h
deleted file mode 100644 (file)
index 46d77e4..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached client and server library.
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t confirm_keys_exist(memcached_st *memc, const char * const *keys, const size_t number_of_keys, bool key_matches_value= false, bool require_all= false);
-
-test_return_t confirm_keys_dont_exist(memcached_st *memc, const char * const *keys, const size_t number_of_keys);
-
-test_return_t print_keys_by_server(memcached_st *memc);
-
-size_t confirm_key_count(memcached_st *memc);
-
-void print_servers(memcached_st *);
diff --git a/tests/deprecated.h b/tests/deprecated.h
deleted file mode 100644 (file)
index d3d2e1f..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  Copyright (C) 2006-2009 Brian Aker All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-test_return_t server_list_null_test(memcached_st *ptr);
-test_return_t regression_bug_728286(memcached_st *);
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/tests/error_conditions.h b/tests/error_conditions.h
deleted file mode 100644 (file)
index 5499197..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-test_return_t memcached_increment_MEMCACHED_NO_SERVERS(memcached_st *junk);
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/tests/exist.h b/tests/exist.h
deleted file mode 100644 (file)
index 581932a..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t memcached_exist_NOTFOUND(memcached_st *);
-test_return_t memcached_exist_SUCCESS(memcached_st *);
-test_return_t memcached_exist_by_key_NOTFOUND(memcached_st *);
-test_return_t memcached_exist_by_key_SUCCESS(memcached_st *);
diff --git a/tests/hash_plus.cc b/tests/hash_plus.cc
deleted file mode 100644 (file)
index 720f6e1..0000000
+++ /dev/null
@@ -1,225 +0,0 @@
-/*
-  C++ to libhashkit
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-
-#include <cstdio>
-#include <cstdlib>
-#include <cstring>
-
-#include "libhashkit-1.0/hashkit.hpp"
-
-using namespace libtest;
-
-#include "tests/hash_results.h"
-
-static test_return_t exists_test(void *)
-{
-  Hashkit hashk;
-  (void)hashk;
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t new_test(void *)
-{
-  Hashkit *hashk= new Hashkit;
-
-  (void)hashk;
-
-  delete hashk;
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t copy_test(void *)
-{
-  Hashkit *hashk= new Hashkit;
-  Hashkit *copy(hashk);
-
-  (void)copy;
-
-  delete hashk;
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t assign_test(void *)
-{
-  Hashkit hashk;
-  Hashkit copy;
-
-  copy= hashk;
-
-  (void)copy;
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t digest_test(void *)
-{
-  Hashkit hashk;
-  test_true(hashk.digest("Foo", sizeof("Foo")));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t set_function_test(void *)
-{
-  Hashkit hashk;
-  hashkit_hash_algorithm_t algo_list[]= { 
-    HASHKIT_HASH_DEFAULT,
-    HASHKIT_HASH_MD5,
-    HASHKIT_HASH_CRC,
-    HASHKIT_HASH_FNV1_64,
-    HASHKIT_HASH_FNV1A_64,
-    HASHKIT_HASH_FNV1_32,
-    HASHKIT_HASH_FNV1A_32,
-    HASHKIT_HASH_MURMUR,
-    HASHKIT_HASH_JENKINS,
-    HASHKIT_HASH_MAX
-  };
-
-
-  for (hashkit_hash_algorithm_t *algo= algo_list; *algo != HASHKIT_HASH_MAX; algo++)
-  {
-    hashkit_return_t rc= hashk.set_function(*algo);
-
-    if (rc == HASHKIT_INVALID_ARGUMENT)
-    {
-      continue;
-    }
-
-    test_compare(HASHKIT_SUCCESS, rc);
-
-    uint32_t *list;
-    switch (*algo)
-    {
-    case HASHKIT_HASH_DEFAULT:
-      list= one_at_a_time_values;
-      break;
-
-    case HASHKIT_HASH_MD5:
-      list= md5_values;
-      break;
-
-    case HASHKIT_HASH_CRC:
-      list= crc_values;
-      break;
-
-    case HASHKIT_HASH_FNV1_64:
-      list= fnv1_64_values;
-      break;
-
-    case HASHKIT_HASH_FNV1A_64:
-      list= fnv1a_64_values;
-      break;
-
-    case HASHKIT_HASH_FNV1_32:
-      list= fnv1_32_values;
-      break;
-
-    case HASHKIT_HASH_FNV1A_32:
-      list= fnv1a_32_values;
-      break;
-
-    case HASHKIT_HASH_HSIEH:
-      list= hsieh_values;
-      break;
-
-    case HASHKIT_HASH_MURMUR3:
-#ifdef WORDS_BIGENDIAN
-      continue;
-#endif
-      list= murmur3_values;
-      break;
-    case HASHKIT_HASH_MURMUR:
-#ifdef WORDS_BIGENDIAN
-      continue;
-#endif
-      list= murmur_values;
-      break;
-
-    case HASHKIT_HASH_JENKINS:
-      list= jenkins_values;
-      break;
-
-    case HASHKIT_HASH_CUSTOM:
-    case HASHKIT_HASH_MAX:
-    default:
-      list= NULL;
-      test_fail("We ended up on a non-existent hash");
-    }
-
-    // Now we make sure we did set the hash correctly.
-    uint32_t x;
-    const char **ptr;
-    for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-    {
-      uint32_t hash_val;
-
-      hash_val= hashk.digest(*ptr, strlen(*ptr));
-      char buffer[1024];
-      snprintf(buffer, sizeof(buffer), "%lu %lus %s", (unsigned long)list[x], (unsigned long)hash_val, libhashkit_string_hash(*algo));
-      test_compare(list[x], hash_val);
-    }
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t set_distribution_function_test(void *)
-{
-  Hashkit hashk;
-  hashkit_return_t rc;
-
-  rc= hashk.set_distribution_function(HASHKIT_HASH_CUSTOM);
-  test_true(rc == HASHKIT_FAILURE or rc == HASHKIT_INVALID_ARGUMENT);
-
-  test_compare(HASHKIT_SUCCESS,
-               hashk.set_distribution_function(HASHKIT_HASH_JENKINS));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t compare_function_test(void *)
-{
-  Hashkit a, b;
-
-  b= a;
-  
-  test_true(a == b);
-
-  b.set_function(HASHKIT_HASH_MURMUR);
-
-  test_false(a == b);
-  test_true(b == b);
-  test_true(a == a);
-
-  return TEST_SUCCESS;
-}
-
-test_st basic[] ={
-  { "exists", 0, reinterpret_cast<test_callback_fn*>(exists_test) },
-  { "new", 0, reinterpret_cast<test_callback_fn*>(new_test) },
-  { "copy", 0, reinterpret_cast<test_callback_fn*>(copy_test) },
-  { "assign", 0, reinterpret_cast<test_callback_fn*>(assign_test) },
-  { "digest", 0, reinterpret_cast<test_callback_fn*>(digest_test) },
-  { "set_function", 0, reinterpret_cast<test_callback_fn*>(set_function_test) },
-  { "set_distribution_function", 0, reinterpret_cast<test_callback_fn*>(set_distribution_function_test) },
-  { "compare", 0, reinterpret_cast<test_callback_fn*>(compare_function_test) },
-  { 0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"basic", 0, 0, basic},
-  {0, 0, 0, 0}
-};
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-}
diff --git a/tests/hash_results.h b/tests/hash_results.h
deleted file mode 100644 (file)
index ce788b7..0000000
+++ /dev/null
@@ -1,136 +0,0 @@
-/*
- * Copyright (C) 2006-2009 Brian Aker
- * All rights reserved.
- *
- * Use and distribution licensed under the BSD license.  See
- * the COPYING file in the parent directory for full text.
- */
-
-/**
-  @brief We list strings and results for testing different hashing algo in
-  this file.
-*/
-
-
-static const char *list_to_hash[]=
-{
-  "apple",
-  "beat",
-  "carrot",
-  "daikon",
-  "eggplant",
-  "flower",
-  "green",
-  "hide",
-  "ick",
-  "jack",
-  "kick",
-  "lime",
-  "mushrooms",
-  "nectarine",
-  "orange",
-  "peach",
-  "quant",
-  "ripen",
-  "strawberry",
-  "tang",
-  "up",
-  "volumne",
-  "when",
-  "yellow",
-  "zip",
-  NULL
-};
-
-static uint32_t one_at_a_time_values[]= { 2297466611U, 3902465932U, 469785835U, 1937308741U,
-                                         261917617U, 3785641677U, 1439605128U, 1649152283U,
-                                         1493851484U, 1246520657U, 2221159044U, 1973511823U,
-                                         384136800U, 214358653U, 2379473940U, 4269788650U,
-                                         2864377005U, 2638630052U, 427683330U, 990491717U,
-                                         1747111141U, 792127364U, 2599214128U, 2553037199U,
-                                         2509838425U };
-
-static uint32_t md5_values[]= { 3195025439U, 2556848621U, 3724893440U, 3332385401U,
-                                245758794U, 2550894432U, 121710495U, 3053817768U,
-                                1250994555U, 1862072655U, 2631955953U, 2951528551U,
-                                1451250070U, 2820856945U, 2060845566U, 3646985608U,
-                                2138080750U, 217675895U, 2230934345U, 1234361223U,
-                                3968582726U, 2455685270U, 1293568479U, 199067604U,
-                                2042482093U };
-
-static uint32_t crc_values[]= { 10542U, 22009U, 14526U, 19510U, 19432U, 10199U, 20634U,
-                                9369U, 11511U, 10362U, 7893U, 31289U, 11313U, 9354U,
-                                7621U, 30628U, 15218U, 25967U, 2695U, 9380U,
-                                17300U, 28156U, 9192U, 20484U, 16925U };
-
-static uint32_t fnv1_64_values[]= { 473199127U, 4148981457U, 3971873300U, 3257986707U,
-                                    1722477987U, 2991193800U, 4147007314U, 3633179701U,
-                                    1805162104U, 3503289120U, 3395702895U, 3325073042U,
-                                    2345265314U, 3340346032U, 2722964135U, 1173398992U,
-                                    2815549194U, 2562818319U, 224996066U, 2680194749U,
-                                    3035305390U, 246890365U, 2395624193U, 4145193337U,
-                                    1801941682U };
-
-static uint32_t fnv1a_64_values[]= {  1488911807U, 2500855813U, 1510099634U, 1390325195U,
-                                      3647689787U, 3241528582U, 1669328060U, 2604311949U,
-                                      734810122U, 1516407546U, 560948863U, 1767346780U,
-                                      561034892U, 4156330026U, 3716417003U, 3475297030U,
-                                      1518272172U, 227211583U, 3938128828U, 126112909U,
-                                      3043416448U, 3131561933U, 1328739897U, 2455664041U,
-                                      2272238452U };
-
-static uint32_t fnv1_32_values[]= { 67176023U, 1190179409U, 2043204404U, 3221866419U,
-                                    2567703427U, 3787535528U, 4147287986U, 3500475733U,
-                                    344481048U, 3865235296U, 2181839183U, 119581266U,
-                                    510234242U, 4248244304U, 1362796839U, 103389328U,
-                                    1449620010U, 182962511U, 3554262370U, 3206747549U,
-                                    1551306158U, 4127558461U, 1889140833U, 2774173721U,
-                                    1180552018U };
-
-static uint32_t fnv1a_32_values[]= {  280767167U, 2421315013U, 3072375666U, 855001899U,
-                                      459261019U, 3521085446U, 18738364U, 1625305005U,
-                                      2162232970U, 777243802U, 3323728671U, 132336572U,
-                                      3654473228U, 260679466U, 1169454059U, 2698319462U,
-                                      1062177260U, 235516991U, 2218399068U, 405302637U,
-                                      1128467232U, 3579622413U, 2138539289U, 96429129U,
-                                      2877453236U };
-
-#ifdef HAVE_HSIEH_HASH
-static uint32_t hsieh_values[]= { 3738850110U, 3636226060U, 3821074029U, 3489929160U, 3485772682U, 80540287U,
-                                  1805464076U, 1895033657U, 409795758U, 979934958U, 3634096985U, 1284445480U,
-                                  2265380744U, 707972988U, 353823508U, 1549198350U, 1327930172U, 9304163U,
-                                  4220749037U, 2493964934U, 2777873870U, 2057831732U, 1510213931U, 2027828987U,
-                                  3395453351U };
-#else
-static uint32_t hsieh_values[]= {  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
-#endif
-
-#ifdef HAVE_MURMUR_HASH
-static uint32_t murmur_values[]= {  4142305122U, 734504955U, 3802834688U, 4076891445U,
-                                    387802650U, 560515427U, 3274673488U, 3150339524U,
-                                    1527441970U, 2728642900U, 3613992239U, 2938419259U,
-                                    2321988328U, 1145154116U, 4038540960U, 2224541613U,
-                                    264013145U, 3995512858U, 2400956718U, 2346666219U,
-                                    926327338U, 442757446U, 1770805201U, 560483147U,
-                                    3902279934U };
-
-static uint32_t murmur3_values[]= { 1120212521U, 1448785489U, 4186307405U, 2686268514U,
-                                    444808887U, 221750260U, 3074673162U, 1946933257U,
-                                    2826416675U, 2430719166U, 3200429559U, 297894347U,
-                                    732888124U, 4050076964U, 3298336176U, 1336207361U,
-                                    810553576U, 3748182674U, 3860119212U, 3439537197U,
-                                    3044240981U, 1464271804U, 3896193724U, 2915115798U,
-                                    1702843840U };
-#else
-static uint32_t murmur_values[]= {  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
-static uint32_t murmur3_values[]= {  1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 };
-#endif
-
-static uint32_t jenkins_values[]= { 1442444624U, 4253821186U, 1885058256U, 2120131735U,
-                                    3261968576U, 3515188778U, 4232909173U, 4288625128U,
-                                    1812047395U, 3689182164U, 2502979932U, 1214050606U,
-                                    2415988847U, 1494268927U, 1025545760U, 3920481083U,
-                                    4153263658U, 3824871822U, 3072759809U, 798622255U,
-                                    3065432577U, 1453328165U, 2691550971U, 3408888387U,
-                                    2629893356U };
-
diff --git a/tests/hashkit_functions.cc b/tests/hashkit_functions.cc
deleted file mode 100644 (file)
index 5d070af..0000000
+++ /dev/null
@@ -1,601 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  libHashKit Functions Test
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  Copyright (C) 2006-2009 Brian Aker All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-using namespace libtest;
-
-#include <cstdio>
-#include <cstdlib>
-#include <cstring>
-
-#include "libhashkit-1.0/hashkit.h"
-#include "libhashkit/is.h"
-
-#include "tests/hash_results.h"
-
-static hashkit_st global_hashk;
-
-/**
-  @brief hash_test_st is a structure we use in testing. It is currently empty.
-*/
-typedef struct hash_test_st hash_test_st;
-
-struct hash_test_st
-{
-  bool _unused;
-};
-
-static test_return_t init_test(void *)
-{
-  hashkit_st hashk;
-  hashkit_st *hashk_ptr;
-
-  hashk_ptr= hashkit_create(&hashk);
-  test_true(hashk_ptr);
-  test_true(hashk_ptr == &hashk);
-  test_false(hashkit_is_allocated(hashk_ptr));
-
-  hashkit_free(hashk_ptr);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t allocation_test(void *)
-{
-  hashkit_st *hashk_ptr;
-
-  hashk_ptr= hashkit_create(NULL);
-  test_true(hashk_ptr);
-  test_true(hashkit_is_allocated(hashk_ptr));
-  hashkit_free(hashk_ptr);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t clone_test(hashkit_st *hashk)
-{
-  // First we make sure that the testing system is giving us what we expect.
-  test_true(&global_hashk == hashk);
-
-  // Second we test if hashk is even valid
-
-  /* All null? */
-  {
-    hashkit_st *hashk_ptr;
-    hashk_ptr= hashkit_clone(NULL, NULL);
-    test_true(hashk_ptr);
-    test_true(hashkit_is_allocated(hashk_ptr));
-    hashkit_free(hashk_ptr);
-  }
-
-  /* Can we init from null? */
-  {
-    hashkit_st *hashk_ptr;
-
-    hashk_ptr= hashkit_clone(NULL, hashk);
-
-    test_true(hashk_ptr);
-    test_true(hashkit_is_allocated(hashk_ptr));
-
-    hashkit_free(hashk_ptr);
-  }
-
-  /* Can we init from struct? */
-  {
-    hashkit_st declared_clone;
-    hashkit_st *hash_clone;
-
-    hash_clone= hashkit_clone(&declared_clone, NULL);
-    test_true(hash_clone);
-    test_true(hash_clone == &declared_clone);
-    test_false(hashkit_is_allocated(hash_clone));
-
-    hashkit_free(hash_clone);
-  }
-
-  /* Can we init from struct? */
-  {
-    hashkit_st declared_clone;
-    hashkit_st *hash_clone;
-
-    hash_clone= hashkit_clone(&declared_clone, hashk);
-    test_true(hash_clone);
-    test_true(hash_clone == &declared_clone);
-    test_false(hashkit_is_allocated(hash_clone));
-
-    hashkit_free(hash_clone);
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t one_at_a_time_run (hashkit_st *)
-{
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(one_at_a_time_values[x],
-                 libhashkit_one_at_a_time(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t md5_run (hashkit_st *)
-{
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(md5_values[x],
-                 libhashkit_md5(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t crc_run (hashkit_st *)
-{
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(crc_values[x],
-                 libhashkit_crc32(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t fnv1_64_run (hashkit_st *)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_FNV1_64));
-
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(fnv1_64_values[x],
-                 libhashkit_fnv1_64(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t fnv1a_64_run (hashkit_st *)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_FNV1A_64));
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(fnv1a_64_values[x],
-                 libhashkit_fnv1a_64(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t fnv1_32_run (hashkit_st *)
-{
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(fnv1_32_values[x],
-                 libhashkit_fnv1_32(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t fnv1a_32_run (hashkit_st *)
-{
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(fnv1a_32_values[x],
-                 libhashkit_fnv1a_32(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t hsieh_run (hashkit_st *)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_HSIEH));
-
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(hsieh_values[x],
-                 libhashkit_hsieh(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t murmur3_TEST(hashkit_st *)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_MURMUR3));
-
-#ifdef WORDS_BIGENDIAN
-  (void)murmur3_values;
-  return TEST_SKIPPED;
-#else
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(murmur3_values[x],
-                 libhashkit_murmur3(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-#endif
-}
-
-static test_return_t murmur_run (hashkit_st *)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_MURMUR));
-
-#ifdef WORDS_BIGENDIAN
-  (void)murmur_values;
-  return TEST_SKIPPED;
-#else
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(murmur_values[x],
-                 libhashkit_murmur(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-#endif
-}
-
-static test_return_t jenkins_run (hashkit_st *)
-{
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(jenkins_values[x],
-                 libhashkit_jenkins(*ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-
-
-
-/**
-  @brief now we list out the tests.
-*/
-
-test_st allocation[]= {
-  {"init", 0, (test_callback_fn*)init_test},
-  {"create and free", 0, (test_callback_fn*)allocation_test},
-  {"clone", 0, (test_callback_fn*)clone_test},
-  {0, 0, 0}
-};
-
-static test_return_t hashkit_digest_test(hashkit_st *hashk)
-{
-  test_true(hashkit_digest(hashk, "a", sizeof("a")));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t hashkit_set_function_test(hashkit_st *hashk)
-{
-  for (int algo= int(HASHKIT_HASH_DEFAULT); algo < int(HASHKIT_HASH_MAX); algo++)
-  {
-    uint32_t x;
-    const char **ptr;
-    uint32_t *list;
-
-    if (HASHKIT_HASH_CUSTOM == algo) {
-      continue;
-    }
-    if (!libhashkit_has_algorithm(static_cast<hashkit_hash_algorithm_t>(algo))) {
-      continue;
-    }
-
-    hashkit_return_t rc= hashkit_set_function(hashk, static_cast<hashkit_hash_algorithm_t>(algo));
-
-    test_compare_got(HASHKIT_SUCCESS, rc, hashkit_strerror(NULL, rc));
-
-    switch (algo)
-    {
-    case HASHKIT_HASH_DEFAULT:
-      list= one_at_a_time_values;
-      break;
-
-    case HASHKIT_HASH_MD5:
-      list= md5_values;
-      break;
-
-    case HASHKIT_HASH_CRC:
-      list= crc_values;
-      break;
-
-    case HASHKIT_HASH_FNV1_64:
-      list= fnv1_64_values;
-      break;
-
-    case HASHKIT_HASH_FNV1A_64:
-      list= fnv1a_64_values;
-      break;
-
-    case HASHKIT_HASH_FNV1_32:
-      list= fnv1_32_values;
-      break;
-
-    case HASHKIT_HASH_FNV1A_32:
-      list= fnv1a_32_values;
-      break;
-
-    case HASHKIT_HASH_HSIEH:
-      list= hsieh_values;
-      break;
-
-    case HASHKIT_HASH_MURMUR:
-      list= murmur_values;
-      break;
-
-    case HASHKIT_HASH_MURMUR3:
-      list= murmur3_values;
-      break;
-
-    case HASHKIT_HASH_JENKINS:
-      list= jenkins_values;
-      break;
-
-    case HASHKIT_HASH_CUSTOM:
-    case HASHKIT_HASH_MAX:
-    default:
-      list= NULL;
-      break;
-    }
-
-    // Now we make sure we did set the hash correctly.
-    if (list)
-    {
-      for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-      {
-        test_compare(list[x],
-                     hashkit_digest(hashk, *ptr, strlen(*ptr)));
-      }
-    }
-    else
-    {
-      test_fail("Unknown algorithm");
-    }
-  }
-
-  return TEST_SUCCESS;
-}
-
-static uint32_t hash_test_function(const char *string, size_t string_length, void *)
-{
-  return libhashkit_md5(string, string_length);
-}
-
-static test_return_t hashkit_set_custom_function_test(hashkit_st *hashk)
-{
-  uint32_t x;
-  const char **ptr;
-
-
-  test_compare(HASHKIT_SUCCESS, 
-               hashkit_set_custom_function(hashk, hash_test_function, NULL));
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(md5_values[x], 
-                 hashkit_digest(hashk, *ptr, strlen(*ptr)));
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t hashkit_set_distribution_function_test(hashkit_st *hashk)
-{
-  for (int algo= int(HASHKIT_HASH_DEFAULT); algo < int(HASHKIT_HASH_MAX); algo++)
-  {
-    hashkit_return_t rc= hashkit_set_distribution_function(hashk, static_cast<hashkit_hash_algorithm_t>(algo));
-
-    /* Hsieh is disabled most of the time for patent issues */
-    if (rc == HASHKIT_INVALID_ARGUMENT)
-      continue;
-
-    test_compare(HASHKIT_SUCCESS, rc);
-  }
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t hashkit_set_custom_distribution_function_test(hashkit_st *hashk)
-{
-  test_compare(HASHKIT_SUCCESS,
-               hashkit_set_custom_distribution_function(hashk, hash_test_function, NULL));
-
-  return TEST_SUCCESS;
-}
-
-
-static test_return_t hashkit_get_function_test(hashkit_st *hashk)
-{
-  for (int algo= int(HASHKIT_HASH_DEFAULT); algo < int(HASHKIT_HASH_MAX); algo++)
-  {
-
-    if (HASHKIT_HASH_CUSTOM == algo)
-    {
-      continue;
-    }
-    test_skip(true, libhashkit_has_algorithm(static_cast<hashkit_hash_algorithm_t>(algo)));
-
-    test_compare(HASHKIT_SUCCESS,
-                 hashkit_set_function(hashk, static_cast<hashkit_hash_algorithm_t>(algo)));
-
-    test_compare(hashkit_get_function(hashk), algo);
-  }
-  return TEST_SUCCESS;
-}
-
-static test_return_t hashkit_compare_test(hashkit_st *hashk)
-{
-  hashkit_st *clone= hashkit_clone(NULL, hashk);
-
-  test_true(hashkit_compare(clone, hashk));
-  hashkit_free(clone);
-
-  return TEST_SUCCESS;
-}
-
-test_st hashkit_st_functions[] ={
-  {"hashkit_digest", 0, (test_callback_fn*)hashkit_digest_test},
-  {"hashkit_set_function", 0, (test_callback_fn*)hashkit_set_function_test},
-  {"hashkit_set_custom_function", 0, (test_callback_fn*)hashkit_set_custom_function_test},
-  {"hashkit_get_function", 0, (test_callback_fn*)hashkit_get_function_test},
-  {"hashkit_set_distribution_function", 0, (test_callback_fn*)hashkit_set_distribution_function_test},
-  {"hashkit_set_custom_distribution_function", 0, (test_callback_fn*)hashkit_set_custom_distribution_function_test},
-  {"hashkit_compare", 0, (test_callback_fn*)hashkit_compare_test},
-  {0, 0, 0}
-};
-
-static test_return_t libhashkit_digest_test(hashkit_st *)
-{
-  test_true(libhashkit_digest("a", sizeof("a"), HASHKIT_HASH_DEFAULT));
-
-  return TEST_SUCCESS;
-}
-
-test_st library_functions[] ={
-  {"libhashkit_digest", 0, (test_callback_fn*)libhashkit_digest_test},
-  {0, 0, 0}
-};
-
-test_st hash_tests[] ={
-  {"one_at_a_time", 0, (test_callback_fn*)one_at_a_time_run },
-  {"md5", 0, (test_callback_fn*)md5_run },
-  {"crc", 0, (test_callback_fn*)crc_run },
-  {"fnv1_64", 0, (test_callback_fn*)fnv1_64_run },
-  {"fnv1a_64", 0, (test_callback_fn*)fnv1a_64_run },
-  {"fnv1_32", 0, (test_callback_fn*)fnv1_32_run },
-  {"fnv1a_32", 0, (test_callback_fn*)fnv1a_32_run },
-  {"hsieh", 0, (test_callback_fn*)hsieh_run },
-  {"murmur", 0, (test_callback_fn*)murmur_run },
-  {"murmur3", 0, (test_callback_fn*)murmur3_TEST },
-  {"jenkis", 0, (test_callback_fn*)jenkins_run },
-  {0, 0, (test_callback_fn*)0}
-};
-
-/*
- * The following test suite is used to verify that we don't introduce
- * regression bugs. If you want more information about the bug / test,
- * you should look in the bug report at
- *   http://bugs.launchpad.net/libmemcached
- */
-test_st regression[]= {
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"allocation", 0, 0, allocation},
-  {"hashkit_st_functions", 0, 0, hashkit_st_functions},
-  {"library_functions", 0, 0, library_functions},
-  {"hashing", 0, 0, hash_tests},
-  {"regression", 0, 0, regression},
-  {0, 0, 0, 0}
-};
-
-static void *world_create(libtest::server_startup_st&, test_return_t& error)
-{
-  hashkit_st *hashk_ptr= hashkit_create(&global_hashk);
-
-  if (hashk_ptr != &global_hashk)
-  {
-    error= TEST_FAILURE;
-    return NULL;
-  }
-
-  if (hashkit_is_allocated(hashk_ptr) == true)
-  {
-    error= TEST_FAILURE;
-    return NULL;
-  }
-
-  return hashk_ptr;
-}
-
-
-static bool world_destroy(void *object)
-{
-  hashkit_st *hashk= (hashkit_st *)object;
-  // Did we get back what we expected?
-  test_true(hashkit_is_allocated(hashk) == false);
-  hashkit_free(&global_hashk);
-
-  return TEST_SUCCESS;
-}
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-  world->destroy(world_destroy);
-}
diff --git a/tests/ketama.h b/tests/ketama.h
deleted file mode 100644 (file)
index 2d9cbb9..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t auto_eject_hosts(memcached_st *);
-test_return_t ketama_compatibility_libmemcached(memcached_st *);
-test_return_t ketama_compatibility_spymemcached(memcached_st *);
-test_return_t user_supplied_bug18(memcached_st *);
diff --git a/tests/ketama_test_cases.h b/tests/ketama_test_cases.h
deleted file mode 100644 (file)
index 49d1eaa..0000000
+++ /dev/null
@@ -1,118 +0,0 @@
-/*
- * Copyright (C) 2006-2009 Brian Aker
- * All rights reserved.
- *
- * Use and distribution licensed under the BSD license.  See
- * the COPYING file in the parent directory for full text.
- */
-
-#pragma once
-
-static struct {
-    const char *key;
-    unsigned long hash1;
-    unsigned long hash2;
-    const char *server;
-} ketama_test_cases[99]= {
-  { "SVa_]_V41)", 443691461UL, 445379617UL, "10.0.1.7" },
-  { "*/Z;?V(.\\8", 1422915503UL, 1428303028UL, "10.0.1.1" },
-  { "30C1*Z*S/_", 1473165754UL, 1480075959UL, "10.0.1.2" },
-  { "ERR:EC58G>", 2148406511UL, 2168579133UL, "10.0.1.7" },
-  { "1I=cTMNTKF", 2882686667UL, 2885206587UL, "10.0.1.5" },
-  { "]VG<`I*Z8)", 1103544263UL, 1104827657UL, "10.0.1.5" },
-  { "UUTC`-V159", 3716288206UL, 3727224240UL, "10.0.1.5" },
-  { "@7RU6C6T+Z", 3862737685UL, 3871917949UL, "10.0.1.5" },
-  { "/XLN0@+36;", 1623269830UL, 1627683651UL, "10.0.1.1" },
-  { "4(`X;\\V.^c", 373546328UL, 383925769UL, "10.0.1.1" },
-  { "726bW=9*a4", 4213440020UL, 4213950705UL, "10.0.1.7" },
-  { "\\`)<B)UE,c", 951096736UL, 955226069UL, "10.0.1.1" },
-  { "P1[Ma3=K1/", 1989324036UL, 1994028240UL, "10.0.1.8" },
-  { "C89I.-V?cT", 1604239957UL, 1606398093UL, "10.0.1.8" },
-  { "D[HE+cFXDK", 2117036136UL, 2117124014UL, "10.0.1.3" },
-  { "P1L?NAB[)K", 2129972569UL, 2132542634UL, "10.0.1.1" },
-  { "cDT0)Z5P6,", 176485284UL, 178675413UL, "10.0.1.5" },
-  { "@JW`+[WAO8", 2720940826UL, 2743975456UL, "10.0.1.5" },
-  { "\\39DKW^)N_", 3548879868UL, 3550704865UL, "10.0.1.3" },
-  { "EM75N0+[X1", 1558531507UL, 1559308507UL, "10.0.1.4" },
-  { "`,SS]NBP,b", 1883545960UL, 1884847278UL, "10.0.1.1" },
-  { "XX1a9LT+F?", 653487707UL, 656410408UL, "10.0.1.5" },
-  { "Zc\\-,F-c6V", 1160802451UL, 1171575728UL, "10.0.1.5" },
-  { "1*RTMC7,03", 1602398012UL, 1606398093UL, "10.0.1.8" },
-  { "*Xc+V0P>32", 536016577UL, 539988520UL, "10.0.1.7" },
-  { "U))Fb-(`,.", 4128682289UL, 4136854163UL, "10.0.1.7" },
-  { "R-08RNTaRT", 3718170086UL, 3727224240UL, "10.0.1.5" },
-  { "(LHcO203I3", 1007779411UL, 1014643570UL, "10.0.1.5" },
-  { "=256P+;Qc8", 3976201210UL, 3976304873UL, "10.0.1.5" },
-  { "OI5XZ_BBT(", 2155922164UL, 2168579133UL, "10.0.1.7" },
-  { "2TLRL/UL;:", 1086800909UL, 1095659802UL, "10.0.1.7" },
-  { "WHD\\O1`ZRW", 3087923411UL, 3095471560UL, "10.0.1.5" },
-  { ".=54)_c;=T", 2497691631UL, 2502731301UL, "10.0.1.1" },
-  { ";G<W-XWZ@b", 2888169733UL, 2888728739UL, "10.0.1.5" },
-  { "(,>E`)FT\\4", 580747448UL, 581063326UL, "10.0.1.2" },
-  { "HZAU*;P*N]", 2564670474UL, 2565697267UL, "10.0.1.7" },
-  { "NZ@ZE=O84_", 533335275UL, 539988520UL, "10.0.1.7" },
-  { "6,cEI`F_P>", 3972869246UL, 3974773167UL, "10.0.1.6" },
-  { "c,5AQ/T5)6", 2835605783UL, 2847870057UL, "10.0.1.8" },
-  { ".O,>>BT)RX", 3857978174UL, 3871917949UL, "10.0.1.5" },
-  { "XY\\X::LX50", 1749241099UL, 1752196488UL, "10.0.1.6" },
-  { "+550F^/.01", 3781824099UL, 3783248219UL, "10.0.1.6" },
-  { "<.X9E2S5+9", 3232479481UL, 3234387706UL, "10.0.1.7" },
-  { "]\\.UH8_0a1", 2419699252UL, 2423002920UL, "10.0.1.4" },
-  { "8(6=(T0/Z0", 728266737UL, 729026070UL, "10.0.1.7" },
-  { "8*6a;Sc*X+", 4223431086UL, 4230156966UL, "10.0.1.2" },
-  { "<QW:;3K6;H", 2731158143UL, 2743975456UL, "10.0.1.5" },
-  { "7C@EY@-Y?_", 760770733UL, 761576669UL, "10.0.1.5" },
-  { "aPb3E1WD4K", 2500489218UL, 2502731301UL, "10.0.1.1" },
-  { "?@12R<=1BH", 1494795329UL, 1502505505UL, "10.0.1.8" },
-  { "QR(a+Q=1FU", 3238535074UL, 3238996435UL, "10.0.1.6" },
-  { "`C9^FV,960", 2628553463UL, 2628733766UL, "10.0.1.6" },
-  { "UNHVP..^8H", 977096483UL, 977319837UL, "10.0.1.4" },
-  { ":Y.2W2[(35", 2777083668UL, 2784182515UL, "10.0.1.7" },
-  { "M/HV^_HZ4O", 3623390946UL, 3624445007UL, "10.0.1.7" },
-  { "ZY16KQ<ICD", 1831153193UL, 1838563516UL, "10.0.1.4" },
-  { "bV2,`a.PY9", 1962228869UL, 1962648654UL, "10.0.1.1" },
-  { "U;9:-+5N]9", 269504649UL, 277560877UL, "10.0.1.1" },
-  { "1S/:aJ[1(;", 578069729UL, 581063326UL, "10.0.1.2" },
-  { "Nb-X^]M)I:", 330865696UL, 331009896UL, "10.0.1.6" },
-  { "2;M;ES>J5/", 2776949824UL, 2784182515UL, "10.0.1.7" },
-  { "[>RZHG97Q9", 71954686UL, 72034069UL, "10.0.1.6" },
-  { "J3/G[)9<^Z", 2799896459UL, 2805183696UL, "10.0.1.7" },
-  { "N-)88>[O`,", 50404102UL, 51792557UL, "10.0.1.5" },
-  { "NP:=FR\\OaA", 3837333776UL, 3837792034UL, "10.0.1.7" },
-  { "`@L+W;a,O[", 1512157148UL, 1522285852UL, "10.0.1.6" },
-  { "W2`P:-+1T[", 2945171975UL, 2946196424UL, "10.0.1.5" },
-  { "-6G7K^YDIN", 3168617340UL, 3170513015UL, "10.0.1.7" },
-  { "U>*>9ZI6V5", 668514946UL, 674097631UL, "10.0.1.6" },
-  { ".I?^6Ic9RK", 938419020UL, 942832691UL, "10.0.1.6" },
-  { "0OZH^9BKM[", 3682518606UL, 3686781297UL, "10.0.1.8" },
-  { "5?50UGZ:ML", 868610882UL, 869425986UL, "10.0.1.5" },
-  { "?K2NF@3=IU", 381218851UL, 383925769UL, "10.0.1.1" },
-  { "YI@G-2X?UB", 3688706179UL, 3693197681UL, "10.0.1.5" },
-  { "7cY</BSaL=", 3976870223UL, 3978903843UL, "10.0.1.6" },
-  { "A(`KF:[RH8", 3292979676UL, 3294849139UL, "10.0.1.6" },
-  { ";=ZT\\W^P+H", 1401102653UL, 1416290674UL, "10.0.1.4" },
-  { "b2?WFF56;R", 480494704UL, 486971192UL, "10.0.1.4" },
-  { "CTR74,J+N.", 137446045UL, 146633907UL, "10.0.1.8" },
-  { "<b;*R+QDST", 1304985302UL, 1308223778UL, "10.0.1.5" },
-  { "\\R^7=9UCG`", 126218373UL, 129199837UL, "10.0.1.5" },
-  { "1bQS5]WOXB", 1853470245UL, 1855329369UL, "10.0.1.4" },
-  { "M(@X^b[L:K", 3019630308UL, 3022260113UL, "10.0.1.1" },
-  { "431cBF8,YO", 1679726993UL, 1685224295UL, "10.0.1.7" },
-  { "(bEIQJ:E./", 2922607787UL, 2925521819UL, "10.0.1.6" },
-  { "WS/3H*)7F;", 419488232UL, 422140585UL, "10.0.1.5" },
-  { "ZJF[Ia6Q)+", 3960568056UL, 3962489998UL, "10.0.1.7" },
-  { "<]*QCK8U,>", 2590140172UL, 2598117636UL, "10.0.1.7" },
-  { "\\[a\\^=V_M0", 689410119UL, 698690782UL, "10.0.1.6" },
-  { "7;RM+8J9YC", 1530175299UL, 1531107082UL, "10.0.1.7" },
-  { "4*=.SPR[AV", 3928582722UL, 3928853792UL, "10.0.1.1" },
-  { "-2F+^88P4U", 3023552752UL, 3025823613UL, "10.0.1.7" },
-  { "X;-F`(N?9D", 570465234UL, 572485994UL, "10.0.1.7" },
-  { "R=F_D-K2a]", 1287750228UL, 1290935562UL, "10.0.1.7" },
-  { "X*+2aaC.EG", 3200948713UL, 3201088518UL, "10.0.1.5" },
-  { "[1ZXONX2]a", 4108881567UL, 4109865744UL, "10.0.1.4" },
-  { "FL;\\GWacaV", 458449508UL, 467374054UL, "10.0.1.4" },
-  { "\\MQ_XNT7L-", 1259349383UL, 1259509450UL, "10.0.1.7" },
-  { "VD6D0]ba_\\", 3842502950UL, 3842588691UL, "10.0.1.1" },
-};
-
-#include "ketama_test_cases_spy.h"
diff --git a/tests/ketama_test_cases_spy.h b/tests/ketama_test_cases_spy.h
deleted file mode 100644 (file)
index b587031..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
-/*
- * Copyright (C) 2006-2009 Brian Aker
- * All rights reserved.
- *
- * Use and distribution licensed under the BSD license.  See
- * the COPYING file in the parent directory for full text.
- */
-
-#pragma once
-
-static struct {
-    const char *key;
-    unsigned long hash1;
-    unsigned long hash2;
-    const char *server;
-} ketama_test_cases_spy[99]= {
-  { "SVa_]_V41)", 443691461UL, 445379617UL, "10.0.1.2" },
-  { "*/Z;?V(.\\8", 1422915503UL, 1428303028UL, "10.0.1.4" },
-  { "30C1*Z*S/_", 1473165754UL, 1480075959UL, "10.0.1.2" },
-  { "ERR:EC58G>", 2148406511UL, 2168579133UL, "10.0.1.7" },
-  { "1I=cTMNTKF", 2882686667UL, 2885206587UL, "10.0.1.4" },
-  { "]VG<`I*Z8)", 1103544263UL, 1104827657UL, "10.0.1.5" },
-  { "UUTC`-V159", 3716288206UL, 3727224240UL, "10.0.1.7" },
-  { "@7RU6C6T+Z", 3862737685UL, 3871917949UL, "10.0.1.6" },
-  { "/XLN0@+36;", 1623269830UL, 1627683651UL, "10.0.1.7" },
-  { "4(`X;\\V.^c", 373546328UL, 383925769UL, "10.0.1.6" },
-  { "726bW=9*a4", 4213440020UL, 4213950705UL, "10.0.1.3" },
-  { "\\`)<B)UE,c", 951096736UL, 955226069UL, "10.0.1.8" },
-  { "P1[Ma3=K1/", 1989324036UL, 1994028240UL, "10.0.1.1" },
-  { "C89I.-V?cT", 1604239957UL, 1606398093UL, "10.0.1.5" },
-  { "D[HE+cFXDK", 2117036136UL, 2117124014UL, "10.0.1.5" },
-  { "P1L?NAB[)K", 2129972569UL, 2132542634UL, "10.0.1.7" },
-  { "cDT0)Z5P6,", 176485284UL, 178675413UL, "10.0.1.1" },
-  { "@JW`+[WAO8", 2720940826UL, 2743975456UL, "10.0.1.2" },
-  { "\\39DKW^)N_", 3548879868UL, 3550704865UL, "10.0.1.6" },
-  { "EM75N0+[X1", 1558531507UL, 1559308507UL, "10.0.1.5" },
-  { "`,SS]NBP,b", 1883545960UL, 1884847278UL, "10.0.1.1" },
-  { "XX1a9LT+F?", 653487707UL, 656410408UL, "10.0.1.6" },
-  { "Zc\\-,F-c6V", 1160802451UL, 1171575728UL, "10.0.1.6" },
-  { "1*RTMC7,03", 1602398012UL, 1606398093UL, "10.0.1.5" },
-  { "*Xc+V0P>32", 536016577UL, 539988520UL, "10.0.1.7" },
-  { "U))Fb-(`,.", 4128682289UL, 4136854163UL, "10.0.1.7" },
-  { "R-08RNTaRT", 3718170086UL, 3727224240UL, "10.0.1.5" },
-  { "(LHcO203I3", 1007779411UL, 1014643570UL, "10.0.1.1" },
-  { "=256P+;Qc8", 3976201210UL, 3976304873UL, "10.0.1.3" },
-  { "OI5XZ_BBT(", 2155922164UL, 2168579133UL, "10.0.1.5" },
-  { "2TLRL/UL;:", 1086800909UL, 1095659802UL, "10.0.1.2" },
-  { "WHD\\O1`ZRW", 3087923411UL, 3095471560UL, "10.0.1.1" },
-  { ".=54)_c;=T", 2497691631UL, 2502731301UL, "10.0.1.6" },
-  { ";G<W-XWZ@b", 2888169733UL, 2888728739UL, "10.0.1.7" },
-  { "(,>E`)FT\\4", 580747448UL, 581063326UL, "10.0.1.5" },
-  { "HZAU*;P*N]", 2564670474UL, 2565697267UL, "10.0.1.1" },
-  { "NZ@ZE=O84_", 533335275UL, 539988520UL, "10.0.1.7" },
-  { "6,cEI`F_P>", 3972869246UL, 3974773167UL, "10.0.1.3" },
-  { "c,5AQ/T5)6", 2835605783UL, 2847870057UL, "10.0.1.7" },
-  { ".O,>>BT)RX", 3857978174UL, 3871917949UL, "10.0.1.7" },
-  { "XY\\X::LX50", 1749241099UL, 1752196488UL, "10.0.1.7" },
-  { "+550F^/.01", 3781824099UL, 3783248219UL, "10.0.1.2" },
-  { "<.X9E2S5+9", 3232479481UL, 3234387706UL, "10.0.1.7" },
-  { "]\\.UH8_0a1", 2419699252UL, 2423002920UL, "10.0.1.6" },
-  { "8(6=(T0/Z0", 728266737UL, 729026070UL, "10.0.1.6" },
-  { "8*6a;Sc*X+", 4223431086UL, 4230156966UL, "10.0.1.5" },
-  { "<QW:;3K6;H", 2731158143UL, 2743975456UL, "10.0.1.7" },
-  { "7C@EY@-Y?_", 760770733UL, 761576669UL, "10.0.1.5" },
-  { "aPb3E1WD4K", 2500489218UL, 2502731301UL, "10.0.1.2" },
-  { "?@12R<=1BH", 1494795329UL, 1502505505UL, "10.0.1.1" },
-  { "QR(a+Q=1FU", 3238535074UL, 3238996435UL, "10.0.1.5" },
-  { "`C9^FV,960", 2628553463UL, 2628733766UL, "10.0.1.3" },
-  { "UNHVP..^8H", 977096483UL, 977319837UL, "10.0.1.6" },
-  { ":Y.2W2[(35", 2777083668UL, 2784182515UL, "10.0.1.6" },
-  { "M/HV^_HZ4O", 3623390946UL, 3624445007UL, "10.0.1.4" },
-  { "ZY16KQ<ICD", 1831153193UL, 1838563516UL, "10.0.1.7" },
-  { "bV2,`a.PY9", 1962228869UL, 1962648654UL, "10.0.1.7" },
-  { "U;9:-+5N]9", 269504649UL, 277560877UL, "10.0.1.2" },
-  { "1S/:aJ[1(;", 578069729UL, 581063326UL, "10.0.1.5" },
-  { "Nb-X^]M)I:", 330865696UL, 331009896UL, "10.0.1.3" },
-  { "2;M;ES>J5/", 2776949824UL, 2784182515UL, "10.0.1.6" },
-  { "[>RZHG97Q9", 71954686UL, 72034069UL, "10.0.1.4" },
-  { "J3/G[)9<^Z", 2799896459UL, 2805183696UL, "10.0.1.6" },
-  { "N-)88>[O`,", 50404102UL, 51792557UL, "10.0.1.2" },
-  { "NP:=FR\\OaA", 3837333776UL, 3837792034UL, "10.0.1.7" },
-  { "`@L+W;a,O[", 1512157148UL, 1522285852UL, "10.0.1.5" },
-  { "W2`P:-+1T[", 2945171975UL, 2946196424UL, "10.0.1.7" },
-  { "-6G7K^YDIN", 3168617340UL, 3170513015UL, "10.0.1.5" },
-  { "U>*>9ZI6V5", 668514946UL, 674097631UL, "10.0.1.5" },
-  { ".I?^6Ic9RK", 938419020UL, 942832691UL, "10.0.1.6" },
-  { "0OZH^9BKM[", 3682518606UL, 3686781297UL, "10.0.1.2" },
-  { "5?50UGZ:ML", 868610882UL, 869425986UL, "10.0.1.6" },
-  { "?K2NF@3=IU", 381218851UL, 383925769UL, "10.0.1.6" },
-  { "YI@G-2X?UB", 3688706179UL, 3693197681UL, "10.0.1.6" },
-  { "7cY</BSaL=", 3976870223UL, 3978903843UL, "10.0.1.7" },
-  { "A(`KF:[RH8", 3292979676UL, 3294849139UL, "10.0.1.6" },
-  { ";=ZT\\W^P+H", 1401102653UL, 1416290674UL, "10.0.1.6" },
-  { "b2?WFF56;R", 480494704UL, 486971192UL, "10.0.1.7" },
-  { "CTR74,J+N.", 137446045UL, 146633907UL, "10.0.1.7" },
-  { "<b;*R+QDST", 1304985302UL, 1308223778UL, "10.0.1.5" },
-  { "\\R^7=9UCG`", 126218373UL, 129199837UL, "10.0.1.6" },
-  { "1bQS5]WOXB", 1853470245UL, 1855329369UL, "10.0.1.7" },
-  { "M(@X^b[L:K", 3019630308UL, 3022260113UL, "10.0.1.4" },
-  { "431cBF8,YO", 1679726993UL, 1685224295UL, "10.0.1.1" },
-  { "(bEIQJ:E./", 2922607787UL, 2925521819UL, "10.0.1.7" },
-  { "WS/3H*)7F;", 419488232UL, 422140585UL, "10.0.1.3" },
-  { "ZJF[Ia6Q)+", 3960568056UL, 3962489998UL, "10.0.1.5" },
-  { "<]*QCK8U,>", 2590140172UL, 2598117636UL, "10.0.1.5" },
-  { "\\[a\\^=V_M0", 689410119UL, 698690782UL, "10.0.1.7" },
-  { "7;RM+8J9YC", 1530175299UL, 1531107082UL, "10.0.1.7" },
-  { "4*=.SPR[AV", 3928582722UL, 3928853792UL, "10.0.1.3" },
-  { "-2F+^88P4U", 3023552752UL, 3025823613UL, "10.0.1.7" },
-  { "X;-F`(N?9D", 570465234UL, 572485994UL, "10.0.1.5" },
-  { "R=F_D-K2a]", 1287750228UL, 1290935562UL, "10.0.1.1" },
-  { "X*+2aaC.EG", 3200948713UL, 3201088518UL, "10.0.1.3" },
-  { "[1ZXONX2]a", 4108881567UL, 4109865744UL, "10.0.1.7" },
-  { "FL;\\GWacaV", 458449508UL, 467374054UL, "10.0.1.7" },
-  { "\\MQ_XNT7L-", 1259349383UL, 1259509450UL, "10.0.1.5" },
-  { "VD6D0]ba_\\", 3842502950UL, 3842588691UL, "10.0.1.7" },
-};
diff --git a/tests/libmemcached-1.0/all_tests.h b/tests/libmemcached-1.0/all_tests.h
deleted file mode 100644 (file)
index a090343..0000000
+++ /dev/null
@@ -1,526 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-#include "tests/libmemcached-1.0/memcached_get.h"
-
-
-/* Clean the server before beginning testing */
-test_st tests[] ={
-  {"util_version", true, (test_callback_fn*)util_version_test },
-  {"flush", false, (test_callback_fn*)flush_test },
-  {"init", false, (test_callback_fn*)init_test },
-  {"allocation", false, (test_callback_fn*)allocation_test },
-  {"server_list_null_test", false, (test_callback_fn*)server_list_null_test},
-  {"server_unsort", false, (test_callback_fn*)server_unsort_test},
-  {"server_sort", false, (test_callback_fn*)server_sort_test},
-  {"server_sort2", false, (test_callback_fn*)server_sort2_test},
-  {"memcached_server_remove", false, (test_callback_fn*)memcached_server_remove_test},
-  {"clone_test", false, (test_callback_fn*)clone_test },
-  {"connection_test", false, (test_callback_fn*)connection_test},
-  {"callback_test", false, (test_callback_fn*)callback_test},
-  {"userdata_test", false, (test_callback_fn*)userdata_test},
-  {"memcached_set()", false, (test_callback_fn*)set_test },
-  {"memcached_set() 2", false, (test_callback_fn*)set_test2 },
-  {"memcached_set() 3", false, (test_callback_fn*)set_test3 },
-  {"memcached_add(SUCCESS)", true, (test_callback_fn*)memcached_add_SUCCESS_TEST },
-  {"add", true, (test_callback_fn*)add_test },
-  {"memcached_fetch_result(MEMCACHED_NOTFOUND)", true, (test_callback_fn*)memcached_fetch_result_NOT_FOUND },
-  {"replace", true, (test_callback_fn*)replace_test },
-  {"delete", true, (test_callback_fn*)delete_test },
-  {"memcached_get()", true, (test_callback_fn*)get_test },
-  {"get2", false, (test_callback_fn*)get_test2 },
-  {"get3", false, (test_callback_fn*)get_test3 },
-  {"get4", false, (test_callback_fn*)get_test4 },
-  {"partial mget", false, (test_callback_fn*)get_test5 },
-  {"stats_servername", false, (test_callback_fn*)stats_servername_test },
-  {"increment", false, (test_callback_fn*)increment_test },
-  {"memcached_increment_with_initial(0)", true, (test_callback_fn*)increment_with_initial_test },
-  {"memcached_increment_with_initial(999)", true, (test_callback_fn*)increment_with_initial_999_test },
-  {"decrement", false, (test_callback_fn*)decrement_test },
-  {"memcached_decrement_with_initial(3)", true, (test_callback_fn*)decrement_with_initial_test },
-  {"memcached_decrement_with_initial(999)", true, (test_callback_fn*)decrement_with_initial_999_test },
-  {"increment_by_key", false, (test_callback_fn*)increment_by_key_test },
-  {"increment_with_initial_by_key", true, (test_callback_fn*)increment_with_initial_by_key_test },
-  {"decrement_by_key", false, (test_callback_fn*)decrement_by_key_test },
-  {"decrement_with_initial_by_key", true, (test_callback_fn*)decrement_with_initial_by_key_test },
-  {"binary_increment_with_prefix", true, (test_callback_fn*)binary_increment_with_prefix_test },
-  {"quit", false, (test_callback_fn*)quit_test },
-  {"mget", true, (test_callback_fn*)mget_test },
-  {"mget_result", true, (test_callback_fn*)mget_result_test },
-  {"mget_result_alloc", true, (test_callback_fn*)mget_result_alloc_test },
-  {"mget_result_function", true, (test_callback_fn*)mget_result_function },
-  {"mget_execute", true, (test_callback_fn*)mget_execute },
-  {"mget_end", false, (test_callback_fn*)mget_end },
-  {"get_stats", false, (test_callback_fn*)get_stats },
-  {"add_host_test", false, (test_callback_fn*)add_host_test },
-  {"add_host_test_1", false, (test_callback_fn*)add_host_test1 },
-  {"get_stats_keys", false, (test_callback_fn*)get_stats_keys },
-  {"version_string_test", true, (test_callback_fn*)version_string_test},
-  {"memcached_mget() mixed memcached_get()", true, (test_callback_fn*)memcached_mget_mixed_memcached_get_TEST},
-  {"bad_key", true, (test_callback_fn*)bad_key_test },
-  {"memcached_server_cursor", true, (test_callback_fn*)memcached_server_cursor_test },
-  {"read_through", true, (test_callback_fn*)read_through },
-  {"delete_through", true, (test_callback_fn*)test_MEMCACHED_CALLBACK_DELETE_TRIGGER },
-  {"noreply", true, (test_callback_fn*)noreply_test},
-  {"analyzer", true, (test_callback_fn*)analyzer_test},
-  {"memcached_pool_st", true, (test_callback_fn*)connection_pool_test },
-  {"memcached_pool_st #2", true, (test_callback_fn*)connection_pool2_test },
-#if 0
-  {"memcached_pool_st #3", true, (test_callback_fn*)connection_pool3_test },
-#endif
-  {"memcached_pool_test", true, (test_callback_fn*)memcached_pool_test },
-  {"test_get_last_disconnect", true, (test_callback_fn*)test_get_last_disconnect},
-  {"verbosity", true, (test_callback_fn*)test_verbosity},
-  {"memcached_stat_execute", true, (test_callback_fn*)memcached_stat_execute_test},
-  {"memcached_exist(MEMCACHED_NOTFOUND)", true, (test_callback_fn*)memcached_exist_NOTFOUND },
-  {"memcached_exist(MEMCACHED_SUCCESS)", true, (test_callback_fn*)memcached_exist_SUCCESS },
-  {"memcached_exist_by_key(MEMCACHED_NOTFOUND)", true, (test_callback_fn*)memcached_exist_by_key_NOTFOUND },
-  {"memcached_exist_by_key(MEMCACHED_SUCCESS)", true, (test_callback_fn*)memcached_exist_by_key_SUCCESS },
-  {"memcached_touch", 0, (test_callback_fn*)test_memcached_touch},
-  {"memcached_touch_with_prefix", 0, (test_callback_fn*)test_memcached_touch_by_key},
-#if 0
-  {"memcached_dump() no data", true, (test_callback_fn*)memcached_dump_TEST },
-#endif
-  {"memcached_dump() with data", true, (test_callback_fn*)memcached_dump_TEST2 },
-  {0, 0, 0}
-};
-
-test_st touch_tests[] ={
-  {"memcached_touch", 0, (test_callback_fn*)test_memcached_touch},
-  {"memcached_touch_with_prefix", 0, (test_callback_fn*)test_memcached_touch_by_key},
-  {0, 0, 0}
-};
-
-test_st kill_TESTS[] ={
-  {"kill()", 0, (test_callback_fn*)kill_TEST},
-  {0, 0, 0}
-};
-
-test_st memcached_stat_tests[] ={
-  {"memcached_stat() INVALID ARG", 0, (test_callback_fn*)memcached_stat_TEST},
-  {"memcached_stat()", 0, (test_callback_fn*)memcached_stat_TEST2},
-  {0, 0, 0}
-};
-
-test_st behavior_tests[] ={
-  {"libmemcached_string_behavior()", false, (test_callback_fn*)libmemcached_string_behavior_test},
-  {"libmemcached_string_distribution()", false, (test_callback_fn*)libmemcached_string_distribution_test},
-  {"behavior_test", false, (test_callback_fn*)behavior_test},
-  {"MEMCACHED_BEHAVIOR_CORK", false, (test_callback_fn*)MEMCACHED_BEHAVIOR_CORK_test},
-  {"MEMCACHED_BEHAVIOR_TCP_KEEPALIVE", false, (test_callback_fn*)MEMCACHED_BEHAVIOR_TCP_KEEPALIVE_test},
-  {"MEMCACHED_BEHAVIOR_TCP_KEEPIDLE", false, (test_callback_fn*)MEMCACHED_BEHAVIOR_TCP_KEEPIDLE_test},
-  {"MEMCACHED_BEHAVIOR_POLL_TIMEOUT", false, (test_callback_fn*)MEMCACHED_BEHAVIOR_POLL_TIMEOUT_test},
-  {"MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH_TEST", true, (test_callback_fn*)MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH_TEST },
-  {"MEMCACHED_CALLBACK_DELETE_TRIGGER_and_MEMCACHED_BEHAVIOR_NOREPLY", false, (test_callback_fn*)test_MEMCACHED_CALLBACK_DELETE_TRIGGER_and_MEMCACHED_BEHAVIOR_NOREPLY},
-  {0, 0, 0}
-};
-
-test_st libmemcachedutil_tests[] ={
-  {"libmemcached_util_ping()", true, (test_callback_fn*)libmemcached_util_ping_TEST },
-  {"libmemcached_util_getpid()", true, (test_callback_fn*)getpid_test },
-  {"libmemcached_util_getpid(MEMCACHED_CONNECTION_FAILURE)", true, (test_callback_fn*)getpid_connection_failure_test },
-  {0, 0, 0}
-};
-
-test_st basic_tests[] ={
-  {"init", true, (test_callback_fn*)basic_init_test},
-  {"clone", true, (test_callback_fn*)basic_clone_test},
-  {"reset", true, (test_callback_fn*)basic_reset_stack_test},
-  {"reset heap", true, (test_callback_fn*)basic_reset_heap_test},
-  {"reset stack clone", true, (test_callback_fn*)basic_reset_stack_clone_test},
-  {"reset heap clone", true, (test_callback_fn*)basic_reset_heap_clone_test},
-  {"memcached_return_t", false, (test_callback_fn*)memcached_return_t_TEST },
-  {"c++ memcached_st == memcached_return_t", false, (test_callback_fn*)comparison_operator_memcached_st_and__memcached_return_t_TEST },
-  {0, 0, 0}
-};
-
-test_st regression_binary_vs_block[] ={
-  {"block add", true, (test_callback_fn*)block_add_regression},
-  {"binary add", true, (test_callback_fn*)binary_add_regression},
-  {0, 0, 0}
-};
-
-test_st async_tests[] ={
-  {"add", true, (test_callback_fn*)add_wrapper },
-  {0, 0, 0}
-};
-
-test_st memcached_server_get_last_disconnect_tests[] ={
-  {"memcached_server_get_last_disconnect()", false, (test_callback_fn*)test_multiple_get_last_disconnect},
-  {0, 0, (test_callback_fn*)0}
-};
-
-
-test_st result_tests[] ={
-  {"result static", false, (test_callback_fn*)result_static},
-  {"result alloc", false, (test_callback_fn*)result_alloc},
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st version_1_2_3[] ={
-  {"append", false, (test_callback_fn*)append_test },
-  {"prepend", false, (test_callback_fn*)prepend_test },
-  {"cas", false, (test_callback_fn*)cas_test },
-  {"cas2", false, (test_callback_fn*)cas2_test },
-  {"append_binary", false, (test_callback_fn*)append_binary_test },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st haldenbrand_TESTS[] ={
-  {"memcached_set", false, (test_callback_fn*)haldenbrand_TEST1 },
-  {"memcached_get()", false, (test_callback_fn*)haldenbrand_TEST2 },
-  {"memcached_mget()", false, (test_callback_fn*)haldenbrand_TEST3 },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st user_tests[] ={
-  {"user_supplied_bug4", true, (test_callback_fn*)user_supplied_bug4 },
-  {"user_supplied_bug5", true, (test_callback_fn*)user_supplied_bug5 },
-  {"user_supplied_bug6", true, (test_callback_fn*)user_supplied_bug6 },
-  {"user_supplied_bug7", true, (test_callback_fn*)user_supplied_bug7 },
-  {"user_supplied_bug8", true, (test_callback_fn*)user_supplied_bug8 },
-  {"user_supplied_bug9", true, (test_callback_fn*)user_supplied_bug9 },
-  {"user_supplied_bug10", true, (test_callback_fn*)user_supplied_bug10 },
-  {"user_supplied_bug11", true, (test_callback_fn*)user_supplied_bug11 },
-  {"user_supplied_bug12", true, (test_callback_fn*)user_supplied_bug12 },
-  {"user_supplied_bug13", true, (test_callback_fn*)user_supplied_bug13 },
-  {"user_supplied_bug14", true, (test_callback_fn*)user_supplied_bug14 },
-  {"user_supplied_bug15", true, (test_callback_fn*)user_supplied_bug15 },
-  {"user_supplied_bug16", true, (test_callback_fn*)user_supplied_bug16 },
-#if !defined(__sun) && !defined(__OpenBSD__)
-  /*
-   ** It seems to be something weird with the character sets..
-   ** value_fetch is unable to parse the value line (iscntrl "fails"), so I
-   ** guess I need to find out how this is supposed to work.. Perhaps I need
-   ** to run the test in a specific locale (I tried zh_CN.UTF-8 without success,
-   ** so just disable the code for now...).
- */
-  {"user_supplied_bug17", true, (test_callback_fn*)user_supplied_bug17 },
-#endif
-  {"user_supplied_bug18", true, (test_callback_fn*)user_supplied_bug18 },
-  {"user_supplied_bug19", true, (test_callback_fn*)user_supplied_bug19 },
-  {"user_supplied_bug20", true, (test_callback_fn*)user_supplied_bug20 },
-  {"user_supplied_bug21", true, (test_callback_fn*)user_supplied_bug21 },
-  {"wrong_failure_counter_test", true, (test_callback_fn*)wrong_failure_counter_test},
-  {"wrong_failure_counter_two_test", true, (test_callback_fn*)wrong_failure_counter_two_test},
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st replication_tests[]= {
-  {"validate replication setup", true, (test_callback_fn*)check_replication_sanity_TEST },
-  {"set", true, (test_callback_fn*)replication_set_test },
-  {"get", false, (test_callback_fn*)replication_get_test },
-  {"mget", false, (test_callback_fn*)replication_mget_test },
-  {"delete", true, (test_callback_fn*)replication_delete_test },
-  {"rand_mget", false, (test_callback_fn*)replication_randomize_mget_test },
-  {"miss", false, (test_callback_fn*)replication_miss_test },
-  {"fail", false, (test_callback_fn*)replication_randomize_mget_fail_test },
-  {0, 0, (test_callback_fn*)0}
-};
-
-/*
- * The following test suite is used to verify that we don't introduce
- * regression bugs. If you want more information about the bug / test,
- * you should look in the bug report at
- *   http://bugs.launchpad.net/libmemcached
- */
-test_st regression_tests[]= {
-  {"lp:434484", true, (test_callback_fn*)regression_bug_434484 },
-  {"lp:434843", true, (test_callback_fn*)regression_bug_434843 },
-  {"lp:434843-buffered", true, (test_callback_fn*)regression_bug_434843_buffered },
-  {"lp:421108", true, (test_callback_fn*)regression_bug_421108 },
-  {"lp:442914", true, (test_callback_fn*)regression_bug_442914 },
-  {"lp:447342", true, (test_callback_fn*)regression_bug_447342 },
-  {"lp:463297", true, (test_callback_fn*)regression_bug_463297 },
-  {"lp:490486", true, (test_callback_fn*)regression_bug_490486 },
-  {"lp:583031", true, (test_callback_fn*)regression_bug_583031 },
-  {"lp:?", true, (test_callback_fn*)regression_bug_ },
-  {"lp:728286", true, (test_callback_fn*)regression_bug_728286 },
-  {"lp:581030", true, (test_callback_fn*)regression_bug_581030 },
-  {"lp:71231153 connect()", true, (test_callback_fn*)regression_bug_71231153_connect },
-  {"lp:71231153 poll()", true, (test_callback_fn*)regression_bug_71231153_poll },
-  {"lp:655423", true, (test_callback_fn*)regression_bug_655423 },
-  {"lp:490520", true, (test_callback_fn*)regression_bug_490520 },
-  {"lp:854604", true, (test_callback_fn*)regression_bug_854604 },
-  {"lp:996813", true, (test_callback_fn*)regression_996813_TEST },
-  {"lp:994772", true, (test_callback_fn*)regression_994772_TEST },
-  {"lp:1009493", true, (test_callback_fn*)regression_1009493_TEST },
-  {"lp:1021819", true, (test_callback_fn*)regression_1021819_TEST },
-  {"lp:1048945", true, (test_callback_fn*)regression_1048945_TEST },
-  {"lp:1067242", true, (test_callback_fn*)regression_1067242_TEST },
-  {"lp:1251482", true, (test_callback_fn*)regression_bug_1251482 },
-  {0, false, (test_callback_fn*)0}
-};
-
-test_st ketama_compatibility[]= {
-  {"libmemcached", true, (test_callback_fn*)ketama_compatibility_libmemcached },
-  {"spymemcached", true, (test_callback_fn*)ketama_compatibility_spymemcached },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st generate_tests[] ={
-  {"generate_data", true, (test_callback_fn*)generate_data },
-  {"get_read", false, (test_callback_fn*)get_read },
-  {"delete_generate", false, (test_callback_fn*)delete_generate },
-  {"cleanup", true, (test_callback_fn*)cleanup_pairs },
-  {0, 0, (test_callback_fn*)0}
-};
-  // New start
-test_st generate_mget_TESTS[] ={
-  {"generate_data", true, (test_callback_fn*)generate_data },
-  {"mget_read", false, (test_callback_fn*)mget_read },
-  {"mget_read_result", false, (test_callback_fn*)mget_read_result },
-  {"memcached_fetch_result() use internal result", false, (test_callback_fn*)mget_read_internal_result },
-  {"memcached_fetch_result() partial read", false, (test_callback_fn*)mget_read_partial_result },
-  {"mget_read_function", false, (test_callback_fn*)mget_read_function },
-  {"cleanup", true, (test_callback_fn*)cleanup_pairs },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st generate_large_TESTS[] ={
-  {"generate_large_pairs", true, (test_callback_fn*)generate_large_pairs },
-  {"cleanup", true, (test_callback_fn*)cleanup_pairs },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st consistent_tests[] ={
-  {"generate_data", true, (test_callback_fn*)generate_data },
-  {"get_read", 0, (test_callback_fn*)get_read_count },
-  {"cleanup", true, (test_callback_fn*)cleanup_pairs },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st consistent_weighted_tests[] ={
-  {"generate_data", true, (test_callback_fn*)generate_data_with_stats },
-  {"get_read", false, (test_callback_fn*)get_read_count },
-  {"cleanup", true, (test_callback_fn*)cleanup_pairs },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st hsieh_availability[] ={
-  {"hsieh_avaibility_test", false, (test_callback_fn*)hsieh_avaibility_test},
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st murmur_availability[] ={
-  {"murmur_avaibility_test", false, (test_callback_fn*)murmur_avaibility_test},
-  {0, 0, (test_callback_fn*)0}
-};
-
-#if 0
-test_st hash_sanity[] ={
-  {"hash sanity", 0, (test_callback_fn*)hash_sanity_test},
-  {0, 0, (test_callback_fn*)0}
-};
-#endif
-
-test_st ketama_auto_eject_hosts[] ={
-  {"basic ketama test", true, (test_callback_fn*)ketama_TEST },
-  {"auto_eject_hosts", true, (test_callback_fn*)auto_eject_hosts },
-  {"output_ketama_weighted_keys", true, (test_callback_fn*)output_ketama_weighted_keys },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st hash_tests[] ={
-  {"one_at_a_time_run", false, (test_callback_fn*)one_at_a_time_run },
-  {"md5", false, (test_callback_fn*)md5_run },
-  {"crc", false, (test_callback_fn*)crc_run },
-  {"fnv1_64", false, (test_callback_fn*)fnv1_64_run },
-  {"fnv1a_64", false, (test_callback_fn*)fnv1a_64_run },
-  {"fnv1_32", false, (test_callback_fn*)fnv1_32_run },
-  {"fnv1a_32", false, (test_callback_fn*)fnv1a_32_run },
-  {"hsieh", false, (test_callback_fn*)hsieh_run },
-  {"murmur", false, (test_callback_fn*)murmur_run },
-  {"murmur3", false, (test_callback_fn*)murmur3_TEST },
-  {"jenkis", false, (test_callback_fn*)jenkins_run },
-  {"memcached_get_hashkit", false, (test_callback_fn*)memcached_get_hashkit_test },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st error_conditions[] ={
-  {"memcached_get(MEMCACHED_ERRNO)", false, (test_callback_fn*)memcached_get_MEMCACHED_ERRNO },
-  {"memcached_get(MEMCACHED_NOTFOUND)", false, (test_callback_fn*)memcached_get_MEMCACHED_NOTFOUND },
-  {"memcached_get_by_key(MEMCACHED_ERRNO)", false, (test_callback_fn*)memcached_get_by_key_MEMCACHED_ERRNO },
-  {"memcached_get_by_key(MEMCACHED_NOTFOUND)", false, (test_callback_fn*)memcached_get_by_key_MEMCACHED_NOTFOUND },
-  {"memcached_get_by_key(MEMCACHED_NOTFOUND)", false, (test_callback_fn*)memcached_get_by_key_MEMCACHED_NOTFOUND },
-  {"memcached_increment(MEMCACHED_NO_SERVERS)", false, (test_callback_fn*)memcached_increment_MEMCACHED_NO_SERVERS },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st parser_tests[] ={
-  {"behavior", false, (test_callback_fn*)behavior_parser_test },
-  {"boolean_options", false, (test_callback_fn*)parser_boolean_options_test },
-  {"configure_file", false, (test_callback_fn*)memcached_create_with_options_with_filename },
-  {"distribtions", false, (test_callback_fn*)parser_distribution_test },
-  {"hash", false, (test_callback_fn*)parser_hash_test },
-  {"libmemcached_check_configuration", false, (test_callback_fn*)libmemcached_check_configuration_test },
-  {"libmemcached_check_configuration_with_filename", false, (test_callback_fn*)libmemcached_check_configuration_with_filename_test },
-  {"number_options", false, (test_callback_fn*)parser_number_options_test },
-  {"randomly generated options", false, (test_callback_fn*)random_statement_build_test },
-  {"namespace", false, (test_callback_fn*)parser_key_prefix_test },
-  {"server", false, (test_callback_fn*)server_test },
-  {"bad server strings", false, (test_callback_fn*)servers_bad_test },
-  {"server with weights", false, (test_callback_fn*)server_with_weight_test },
-  {"parsing servername, port, and weight", false, (test_callback_fn*)test_hostname_port_weight },
-  {"--socket=", false, (test_callback_fn*)test_parse_socket },
-  {"--namespace=", false, (test_callback_fn*)test_namespace_keyword },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st virtual_bucket_tests[] ={
-  {"basic", false, (test_callback_fn*)virtual_back_map },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st memcached_server_add_TESTS[] ={
-  {"memcached_server_add(\"\")", false, (test_callback_fn*)memcached_server_add_empty_test },
-  {"memcached_server_add(NULL)", false, (test_callback_fn*)memcached_server_add_null_test },
-  {"memcached_server_add(many)", false, (test_callback_fn*)memcached_server_many_TEST },
-  {"memcached_server_add(many weighted)", false, (test_callback_fn*)memcached_server_many_weighted_TEST },
-  {"memcached_servers_reset(\"\")", false, (test_callback_fn*)memcached_servers_reset_test},
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st pool_TESTS[] ={
-  {"lp:962815", true, (test_callback_fn*)regression_bug_962815 },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st memcached_set_encoding_key_TESTS[] ={
-  {"memcached_set_encoding_key()", true, (test_callback_fn*)memcached_set_encoding_key_TEST },
-  {"memcached_set_encoding_key() +set() + get()", true, (test_callback_fn*)memcached_set_encoding_key_set_get_TEST },
-  {"memcached_set_encoding_key() +add() + get()", true, (test_callback_fn*)memcached_set_encoding_key_add_get_TEST },
-  {"memcached_set_encoding_key() +replace() + get()", true, (test_callback_fn*)memcached_set_encoding_key_replace_get_TEST },
-  {"memcached_set_encoding_key() +prepend()", true, (test_callback_fn*)memcached_set_encoding_key_prepend_TEST },
-  {"memcached_set_encoding_key() +append()", true, (test_callback_fn*)memcached_set_encoding_key_append_TEST },
-  {"memcached_set_encoding_key() +increment()", true, (test_callback_fn*)memcached_set_encoding_key_increment_TEST },
-  {"memcached_set_encoding_key() +decrement()", true, (test_callback_fn*)memcached_set_encoding_key_increment_TEST },
-  {"memcached_set_encoding_key() +increment_with_initial()", true, (test_callback_fn*)memcached_set_encoding_key_increment_with_initial_TEST },
-  {"memcached_set_encoding_key() +decrement_with_initial()", true, (test_callback_fn*)memcached_set_encoding_key_decrement_with_initial_TEST },
-  {"memcached_set_encoding_key() +set() +get() +cloen()", true, (test_callback_fn*)memcached_set_encoding_key_set_get_clone_TEST },
-  {"memcached_set_encoding_key() +set() +get() increase value size", true, (test_callback_fn*)memcached_set_encoding_key_set_grow_key_TEST },
-  {0, 0, (test_callback_fn*)0}
-};
-
-test_st namespace_tests[] ={
-  {"basic tests", true, (test_callback_fn*)selection_of_namespace_tests },
-  {"increment", true, (test_callback_fn*)memcached_increment_namespace },
-  {0, 0, (test_callback_fn*)0}
-};
-
-collection_st collection[] ={
-#if 0
-  {"hash_sanity", 0, 0, hash_sanity},
-#endif
-  {"libmemcachedutil", 0, 0, libmemcachedutil_tests},
-  {"basic", 0, 0, basic_tests},
-  {"hsieh_availability", 0, 0, hsieh_availability},
-  {"murmur_availability", 0, 0, murmur_availability},
-  {"memcached_server_add", (test_callback_fn*)memcached_servers_reset_SETUP, 0, memcached_server_add_TESTS},
-  {"memcached_server_add(continuum)", (test_callback_fn*)memcached_servers_reset_CONTINUUM, 0, memcached_server_add_TESTS},
-  {"memcached_server_add(MEMCACHED_DISTRIBUTION_CONSISTENT)", (test_callback_fn*)memcached_servers_reset_MEMCACHED_DISTRIBUTION_CONSISTENT_SETUP, 0, memcached_server_add_TESTS},
-  {"memcached_server_add(MEMCACHED_DISTRIBUTION_CONSISTENT_WEIGHTED)", (test_callback_fn*)memcached_servers_reset_MEMCACHED_DISTRIBUTION_CONSISTENT_WEIGHTED_SETUP, 0, memcached_server_add_TESTS},
-  {"block", 0, 0, tests},
-  {"binary", (test_callback_fn*)pre_binary, 0, tests},
-  {"nonblock", (test_callback_fn*)pre_nonblock, 0, tests},
-  {"nodelay", (test_callback_fn*)pre_nodelay, 0, tests},
-  {"settimer", (test_callback_fn*)pre_settimer, 0, tests},
-  {"md5", (test_callback_fn*)pre_md5, 0, tests},
-  {"crc", (test_callback_fn*)pre_crc, 0, tests},
-  {"hsieh", (test_callback_fn*)pre_hsieh, 0, tests},
-  {"jenkins", (test_callback_fn*)pre_jenkins, 0, tests},
-  {"fnv1_64", (test_callback_fn*)pre_hash_fnv1_64, 0, tests},
-  {"fnv1a_64", (test_callback_fn*)pre_hash_fnv1a_64, 0, tests},
-  {"fnv1_32", (test_callback_fn*)pre_hash_fnv1_32, 0, tests},
-  {"fnv1a_32", (test_callback_fn*)pre_hash_fnv1a_32, 0, tests},
-  {"ketama", (test_callback_fn*)pre_behavior_ketama, 0, tests},
-  {"ketama_auto_eject_hosts", (test_callback_fn*)pre_behavior_ketama, 0, ketama_auto_eject_hosts},
-  {"unix_socket", (test_callback_fn*)pre_unix_socket, 0, tests},
-  {"unix_socket_nodelay", (test_callback_fn*)pre_nodelay, 0, tests},
-  {"gets", (test_callback_fn*)enable_cas, 0, tests},
-  {"consistent_crc", (test_callback_fn*)enable_consistent_crc, 0, tests},
-  {"consistent_hsieh", (test_callback_fn*)enable_consistent_hsieh, 0, tests},
-#ifdef MEMCACHED_ENABLE_DEPRECATED
-  {"deprecated_memory_allocators", (test_callback_fn*)deprecated_set_memory_alloc, 0, tests},
-#endif
-  {"memory_allocators", (test_callback_fn*)set_memory_alloc, 0, tests},
-  {"namespace", (test_callback_fn*)set_namespace, 0, tests},
-  {"namespace(BINARY)", (test_callback_fn*)set_namespace_and_binary, 0, tests},
-  {"specific namespace", 0, 0, namespace_tests},
-  {"specific namespace(BINARY)", (test_callback_fn*)pre_binary, 0, namespace_tests},
-  {"version_1_2_3", (test_callback_fn*)check_for_1_2_3, 0, version_1_2_3},
-  {"result", 0, 0, result_tests},
-  {"async", (test_callback_fn*)pre_nonblock, 0, async_tests},
-  {"async(BINARY)", (test_callback_fn*)pre_nonblock_binary, 0, async_tests},
-  {"Cal Haldenbrand's tests", 0, 0, haldenbrand_TESTS},
-  {"user written tests", 0, 0, user_tests},
-  {"generate", 0, 0, generate_tests},
-  {"generate MEMCACHED_BEHAVIOR_BUFFER_REQUESTS", (test_callback_fn*)pre_buffer, 0, generate_tests},
-  {"mget generate MEMCACHED_BEHAVIOR_BUFFER_REQUESTS", (test_callback_fn*)pre_buffer, 0, generate_mget_TESTS},
-  {"generate large", 0, 0, generate_large_TESTS},
-  {"generate_hsieh", (test_callback_fn*)pre_hsieh, 0, generate_tests},
-  {"generate_ketama", (test_callback_fn*)pre_behavior_ketama, 0, generate_tests},
-  {"generate_hsieh_consistent", (test_callback_fn*)enable_consistent_hsieh, 0, generate_tests},
-  {"generate_md5", (test_callback_fn*)pre_md5, 0, generate_tests},
-  {"generate_murmur", (test_callback_fn*)pre_murmur, 0, generate_tests},
-  {"generate_jenkins", (test_callback_fn*)pre_jenkins, 0, generate_tests},
-  {"generate_nonblock", (test_callback_fn*)pre_nonblock, 0, generate_tests},
-  {"mget generate_nonblock", (test_callback_fn*)pre_nonblock, 0, generate_mget_TESTS},
-  {"consistent_not", 0, 0, consistent_tests},
-  {"consistent_ketama", (test_callback_fn*)pre_behavior_ketama, 0, consistent_tests},
-  {"consistent_ketama_weighted", (test_callback_fn*)pre_behavior_ketama_weighted, 0, consistent_weighted_tests},
-  {"ketama_compat", 0, 0, ketama_compatibility},
-  {"test_hashes", 0, 0, hash_tests},
-  {"replication", (test_callback_fn*)pre_replication, 0, replication_tests},
-  {"replication_noblock", (test_callback_fn*)pre_replication_noblock, 0, replication_tests},
-  {"regression", 0, 0, regression_tests},
-  {"behaviors", 0, 0, behavior_tests},
-  {"regression_binary_vs_block", (test_callback_fn*)key_setup, (test_callback_fn*)key_teardown, regression_binary_vs_block},
-  {"error_conditions", 0, 0, error_conditions},
-  {"parser", 0, 0, parser_tests},
-  {"virtual buckets", 0, 0, virtual_bucket_tests},
-  {"memcached_server_get_last_disconnect", 0, 0, memcached_server_get_last_disconnect_tests},
-  {"touch", 0, 0, touch_tests},
-  {"touch", (test_callback_fn*)pre_binary, 0, touch_tests},
-  {"memcached_stat()", 0, 0, memcached_stat_tests},
-  {"memcached_pool_create()", 0, 0, pool_TESTS},
-  {"memcached_set_encoding_key()", 0, 0, memcached_set_encoding_key_TESTS},
-  {"kill()", 0, 0, kill_TESTS},
-  {0, 0, 0, 0}
-};
diff --git a/tests/libmemcached-1.0/basic.cc b/tests/libmemcached-1.0/basic.cc
deleted file mode 100644 (file)
index b6df5b4..0000000
+++ /dev/null
@@ -1,135 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-#include "libmemcached-1.0/memcached.h"
-#include "libmemcached/is.h"
-
-#include "tests/basic.h"
-
-#include <cstring>
-
-test_return_t basic_init_test(memcached_st *junk)
-{
-  (void)junk;
-
-  memcached_st memc;
-  memcached_st *memc_ptr;
-
-  memc_ptr= memcached_create(&memc);
-  test_true(memc_ptr);
-  test_false(memcached_is_allocated(&memc));
-  memcached_free(memc_ptr);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t basic_clone_test(memcached_st *memc)
-{
-  memcached_st *memc_ptr;
-
-  memc_ptr= memcached_clone(NULL, memc);
-  test_true(memc_ptr);
-  test_true(memcached_is_allocated(memc_ptr));
-  memcached_free(memc_ptr);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t basic_reset_stack_test(memcached_st *junk)
-{
-  (void)junk;
-  memcached_st memc;
-
-  memcached_create(&memc);
-
-  memcached_reset(&memc);
-  test_false(memcached_is_allocated(&memc));
-
-  memcached_free(&memc);
-  test_false(memcached_is_allocated(&memc));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t basic_reset_heap_test(memcached_st *junk)
-{
-  (void)junk;
-  memcached_st *memc_ptr;
-
-  memc_ptr= memcached_create(NULL);
-  test_true(memcached_is_allocated(memc_ptr));
-
-  memcached_reset(memc_ptr);
-  test_true(memcached_is_allocated(memc_ptr));
-
-  memcached_free(memc_ptr);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t basic_reset_stack_clone_test(memcached_st *memc)
-{
-  memcached_st clone;
-  memcached_st *memc_ptr;
-
-  memset(&clone, 0, sizeof(clone));
-  memc_ptr= memcached_clone(&clone, memc);
-  test_true(memc_ptr);
-
-  memcached_reset(memc_ptr);
-
-  memcached_free(memc_ptr);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t basic_reset_heap_clone_test(memcached_st *memc)
-{
-  memcached_st *memc_ptr;
-
-  memc_ptr= memcached_clone(NULL, memc);
-  test_true(memc_ptr);
-
-  memcached_reset(memc_ptr);
-
-  memcached_free(memc_ptr);
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached-1.0/callback_counter.cc b/tests/libmemcached-1.0/callback_counter.cc
deleted file mode 100644 (file)
index fd52ca2..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-#include "tests/libmemcached-1.0/callback_counter.h"
-
-memcached_return_t callback_counter(const memcached_st*, memcached_result_st*, void *context)
-{
-  size_t *counter= (size_t *)context;
-
-  *counter= *counter + 1;
-
-  return MEMCACHED_SUCCESS;
-}
-
diff --git a/tests/libmemcached-1.0/callback_counter.h b/tests/libmemcached-1.0/callback_counter.h
deleted file mode 100644 (file)
index 8cd9c82..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-memcached_return_t callback_counter(const memcached_st*, memcached_result_st*, void *);
diff --git a/tests/libmemcached-1.0/callbacks.cc b/tests/libmemcached-1.0/callbacks.cc
deleted file mode 100644 (file)
index 1f8c516..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-#include "tests/callbacks.h"
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static memcached_return_t delete_trigger(memcached_st *,
-                                         const char *key,
-                                         size_t key_length)
-{
-  fatal_assert(key);
-  fatal_assert(key_length);
-
-  return MEMCACHED_SUCCESS;
-}
-
-
-test_return_t test_MEMCACHED_CALLBACK_DELETE_TRIGGER_and_MEMCACHED_BEHAVIOR_NOREPLY(memcached_st *)
-{
-  memcached_st *memc= memcached(test_literal_param("--NOREPLY"));
-  test_true(memc);
-
-  memcached_trigger_delete_key_fn callback;
-
-  callback= (memcached_trigger_delete_key_fn)delete_trigger;
-
-  test_compare(MEMCACHED_INVALID_ARGUMENTS, 
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_DELETE_TRIGGER, *(void**)&callback));
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t test_MEMCACHED_CALLBACK_DELETE_TRIGGER(memcached_st *memc)
-{
-  memcached_trigger_delete_key_fn callback;
-
-  callback= (memcached_trigger_delete_key_fn)delete_trigger;
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_DELETE_TRIGGER, *(void**)&callback));
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached-1.0/debug.cc b/tests/libmemcached-1.0/debug.cc
deleted file mode 100644 (file)
index 3d5cda3..0000000
+++ /dev/null
@@ -1,206 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached client and server library.
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include <climits>
-
-using namespace libtest;
-
-#include "libmemcached-1.0/memcached.h"
-#include "tests/debug.h"
-#include "tests/print.h"
-
-#include "libmemcached/instance.hpp"
-
-/* Dump each server's keys */
-static memcached_return_t print_keys_callback(const memcached_st *,
-                                              const char *key,
-                                              size_t key_length,
-                                              void *)
-{
-
-  Out << "\t" << key << " (" << key_length << ")";
-  
-
-  return MEMCACHED_SUCCESS;
-}
-
-static memcached_return_t server_wrapper_for_dump_callback(const memcached_st *,
-                                                           const memcached_instance_st * server,
-                                                           void *)
-{
-  memcached_st *memc= memcached_create(NULL);
-
-  if (strcmp(memcached_server_type(server), "SOCKET") == 0)
-  {
-    if (memcached_failed(memcached_server_add_unix_socket(memc, memcached_server_name(server))))
-    {
-      return MEMCACHED_FAILURE;
-    }
-  }
-  else
-  {
-    if (memcached_failed(memcached_server_add(memc, memcached_server_name(server), memcached_server_port(server))))
-    {
-      return MEMCACHED_FAILURE;
-    }
-  }
-
-  memcached_dump_fn callbacks[1];
-
-  callbacks[0]= &print_keys_callback;
-
-  Out << memcached_server_name(server) << ":" << memcached_server_port(server);
-
-  if (memcached_failed(memcached_dump(memc, callbacks, NULL, 1)))
-  {
-    return MEMCACHED_FAILURE;
-  }
-
-  memcached_free(memc);
-
-  return MEMCACHED_SUCCESS;
-}
-
-
-test_return_t confirm_keys_exist(memcached_st *memc, const char * const *keys, const size_t number_of_keys, bool key_matches_value, bool require_all)
-{
-  for (size_t x= 0; x < number_of_keys; ++x)
-  {
-    memcached_return_t rc;
-    size_t value_length;
-    char *value= memcached_get(memc,
-                               test_string_make_from_cstr(keys[x]), // Keys
-                               &value_length,
-                               0, &rc);
-    if (require_all)
-    {
-      test_true(value);
-      if (key_matches_value)
-      {
-        test_strcmp(keys[x], value);
-      }
-    }
-    else if (memcached_success(rc))
-    {
-      test_warn(value, "get() did not return a value");
-      if (value and key_matches_value)
-      {
-        test_strcmp(keys[x], value);
-      }
-    }
-
-    if (value)
-    {
-      free(value);
-    }
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t confirm_keys_dont_exist(memcached_st *memc, const char * const *keys, const size_t number_of_keys)
-{
-  for (size_t x= 0; x < number_of_keys; ++x)
-  {
-    memcached_return_t rc;
-    size_t value_length;
-    char *value= memcached_get(memc,
-                               test_string_make_from_cstr(keys[x]), // Keys
-                               &value_length,
-                               0, &rc);
-    test_false(value);
-    test_compare(MEMCACHED_NOTFOUND, rc);
-  }
-
-  return TEST_SUCCESS;
-}
-
-
-test_return_t print_keys_by_server(memcached_st *memc)
-{
-  memcached_server_fn callback[]= { server_wrapper_for_dump_callback };
-  test_compare(MEMCACHED_SUCCESS, memcached_server_cursor(memc, callback, NULL, test_array_length(callback)));
-
-  return TEST_SUCCESS;
-}
-
-static memcached_return_t callback_dump_counter(const memcached_st *ptr,
-                                                const char *key,
-                                                size_t key_length,
-                                                void *context)
-{
-  (void)ptr; (void)key; (void)key_length;
-  size_t *counter= (size_t *)context;
-
-  *counter= *counter + 1;
-
-  return MEMCACHED_SUCCESS;
-}
-
-size_t confirm_key_count(memcached_st *memc)
-{
-  memcached_st *clone= memcached_clone(NULL, memc);
-  if (memcached_failed(memcached_behavior_set(clone, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, false)))
-  {
-    memcached_free(clone);
-    return ULONG_MAX;
-  }
-
-  memcached_dump_fn callbacks[1];
-
-  callbacks[0]= &callback_dump_counter;
-
-  size_t count= 0;
-  if (memcached_failed(memcached_dump(clone, callbacks, (void *)&count, 1)))
-  {
-    memcached_free(clone);
-    return ULONG_MAX;
-  }
-
-  memcached_free(clone);
-  return count;
-}
-
-void print_servers(memcached_st *memc)
-{
-  memcached_server_fn callbacks[1];
-  callbacks[0]= server_print_callback;
-  memcached_server_cursor(memc, callbacks, NULL,  1);
-}
diff --git a/tests/libmemcached-1.0/deprecated.cc b/tests/libmemcached-1.0/deprecated.cc
deleted file mode 100644 (file)
index cfc0e23..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  Copyright (C) 2006-2009 Brian Aker All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-#include "libmemcached-1.0/memcached.h"
-#include "tests/deprecated.h"
-
-test_return_t server_list_null_test(memcached_st *ptr)
-{
-  memcached_server_st *server_list;
-  memcached_return_t rc;
-  (void)ptr;
-
-  server_list= memcached_server_list_append_with_weight(NULL, NULL, 0, 0, NULL);
-  test_true(server_list);
-  memcached_server_list_free(server_list);
-
-  server_list= memcached_server_list_append_with_weight(NULL, "localhost", 0, 0, NULL);
-  test_true(server_list);
-  memcached_server_list_free(server_list);
-
-  server_list= memcached_server_list_append_with_weight(NULL, NULL, 0, 0, &rc);
-  test_true(server_list);
-  memcached_server_list_free(server_list);
-
-  return TEST_SUCCESS;
-}
-
-// Look for memory leak
-test_return_t regression_bug_728286(memcached_st *)
-{
-  memcached_server_st *servers= memcached_servers_parse("1.2.3.4:99");
-  fatal_assert(servers);
-  memcached_server_free(servers);
-
-  return TEST_SUCCESS;
-}
-
diff --git a/tests/libmemcached-1.0/dump.cc b/tests/libmemcached-1.0/dump.cc
deleted file mode 100644 (file)
index 9740d69..0000000
+++ /dev/null
@@ -1,152 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-
-#include <cstdlib>
-#include <climits>
-
-#include "libtest/test.hpp"
-
-#include "libmemcached-1.0/memcached.h"
-#include "libmemcachedutil-1.0/util.h"
-
-using namespace libtest;
-
-#include "tests/libmemcached-1.0/dump.h"
-
-static memcached_return_t callback_dump_counter(const memcached_st *,
-                                                const char* key,
-                                                size_t length,
-                                                void *context)
-{
-  size_t *counter= (size_t *)context;
-
-#if 0
-  std::cerr.write(key, length);
-  std::cerr << ": " << *counter << std::endl;
-#else
-  (void)key;
-  (void)length;
-#endif
-
-  *counter= *counter +1;
-
-  return MEMCACHED_SUCCESS;
-}
-
-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)
-{
-  if ((key_length == (sizeof("curr_items") -1)) and (strncmp("curr_items", key, (sizeof("curr_items") -1)) == 0))
-  {
-    uint64_t* counter= (uint64_t*)context;
-    unsigned long number_value= strtoul(value, (char **)NULL, 10);
-    if (number_value == ULONG_MAX)
-    {
-      return MEMCACHED_FAILURE;
-    }
-#if 0
-    std::cerr << "# " << number_value << " items " << std::endl;
-#endif
-    *counter= *counter +number_value;
-  }
-
-  return MEMCACHED_SUCCESS;
-}
-
-#if 0
-test_return_t memcached_dump_TEST(memcached_st *memc)
-{
-  test_skip(false, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  size_t count= 0;
-  memcached_dump_fn callbacks[1];
-  callbacks[0]= &callback_dump_counter;
-
-  uint64_t counter= 0;
-  test_compare_got(MEMCACHED_SUCCESS,
-                   memcached_stat_execute(memc, NULL, item_counter, &counter),
-                   memcached_last_error_message(memc));
-  test_zero(counter);
-
-  test_compare_got(MEMCACHED_SUCCESS, memcached_dump(memc, callbacks, &count, 1), memcached_last_error_message(memc));
-
-  return TEST_SUCCESS;
-}
-#endif
-
-#define memcached_dump_TEST2_COUNT 64
-test_return_t memcached_dump_TEST2(memcached_st *memc)
-{
-  test_skip(false, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  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);
-
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, key, length,
-                               key, length,
-                               time_t(0), uint32_t(0)));
-  }
-  memcached_quit(memc);
-
-  // give memcached some time
-  libtest::dream(1, 0);
-
-  uint64_t counter= 0;
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_stat_execute(memc, NULL, item_counter, &counter));
-  test_true(counter > 0);
-
-  size_t count= 0;
-  memcached_dump_fn callbacks[1];
-  callbacks[0]= &callback_dump_counter;
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_dump(memc, callbacks, &count, 1));
-
-  test_true(count > 0);
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached-1.0/dump.h b/tests/libmemcached-1.0/dump.h
deleted file mode 100644 (file)
index 2a6b69d..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t memcached_dump_TEST(memcached_st *);
-test_return_t memcached_dump_TEST2(memcached_st *);
diff --git a/tests/libmemcached-1.0/encoding_key.cc b/tests/libmemcached-1.0/encoding_key.cc
deleted file mode 100644 (file)
index cd245cf..0000000
+++ /dev/null
@@ -1,375 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-#include "libmemcached-1.0/memcached.h"
-#include "libmemcachedutil-1.0/util.h"
-
-#include "tests/libmemcached-1.0/encoding_key.h"
-
-using namespace libtest;
-
-test_return_t memcached_set_encoding_key_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_set_get_TEST(memcached_st* memc)
-{
-  memcached_st *memc_no_crypt= memcached_clone(NULL, memc);
-  test_true(memc_no_crypt);
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_set(memc,
-                                                test_literal_param(__func__), // Key
-                                                test_literal_param(__func__), // Value
-                                                time_t(0),
-                                                uint32_t(0)));
-
-  {
-    memcached_return_t rc;
-    size_t value_length;
-    char *value;
-    test_true((value= memcached_get(memc,
-                                    test_literal_param(__func__), // Key
-                                    &value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(test_literal_param_size(__func__), value_length);
-    test_memcmp(__func__, value, value_length);
-
-    size_t raw_value_length;
-    char *raw_value;
-    test_true((raw_value= memcached_get(memc_no_crypt,
-                                        test_literal_param(__func__), // Key
-                                        &raw_value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_ne_compare(value_length, raw_value_length);
-    test_ne_compare(0, memcmp(value, raw_value, raw_value_length));
-
-    free(value);
-    free(raw_value);
-  }
-
-  memcached_free(memc_no_crypt);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_add_get_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_add(memc,
-                                                     test_literal_param(__func__), // Key
-                                                     test_literal_param(__func__), // Value
-                                                     time_t(0),
-                                                     uint32_t(0)));
-
-  {
-    memcached_return_t rc;
-    size_t value_length;
-    char *value;
-    test_true((value= memcached_get(memc,
-                                    test_literal_param(__func__), // Key
-                                    &value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(test_literal_param_size(__func__), value_length);
-    test_memcmp(__func__, value, value_length);
-    free(value);
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_replace_get_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  // First we add the key
-  {
-    test_compare(MEMCACHED_SUCCESS, memcached_add(memc,
-                                                  test_literal_param(__func__), // Key
-                                                  test_literal_param(__func__), // Value
-                                                  time_t(0),
-                                                  uint32_t(0)));
-
-    memcached_return_t rc;
-    size_t value_length;
-    char *value;
-    test_true((value= memcached_get(memc,
-                                    test_literal_param(__func__), // Key
-                                    &value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(test_literal_param_size(__func__), value_length);
-    test_memcmp(__func__, value, value_length);
-    free(value);
-  }
-  // Then we replace the key
-  {
-    libtest::vchar_t new_value;
-    vchar::make(new_value);
-
-    test_compare(MEMCACHED_SUCCESS, memcached_replace(memc,
-                                                      test_literal_param(__func__), // Key
-                                                      vchar_param(new_value), // Value
-                                                      time_t(0),
-                                                      uint32_t(0)));
-
-    memcached_return_t rc;
-    size_t value_length;
-    char *value;
-    test_true((value= memcached_get(memc,
-                                    test_literal_param(__func__), // Key
-                                    &value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(new_value.size(), value_length);
-    test_compare(0, vchar::compare(new_value, value, value_length));
-    free(value);
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_increment_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_NOT_SUPPORTED, memcached_increment(memc,
-                                                            test_literal_param(__func__), // Key
-                                                            uint32_t(0),
-                                                            NULL));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_decrement_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_NOT_SUPPORTED, memcached_decrement(memc,
-                                                            test_literal_param(__func__), // Key
-                                                            uint32_t(0),
-                                                            NULL));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_increment_with_initial_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_NOT_SUPPORTED, memcached_increment_with_initial(memc,
-                                                                         test_literal_param(__func__), // Key
-                                                                         uint32_t(0),
-                                                                         uint32_t(0),
-                                                                         time_t(0),
-                                                                         NULL));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_decrement_with_initial_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_NOT_SUPPORTED, memcached_decrement_with_initial(memc,
-                                                                         test_literal_param(__func__), // Key
-                                                                         uint32_t(0),
-                                                                         uint32_t(0),
-                                                                         time_t(0),
-                                                                         NULL));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_append_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_NOT_SUPPORTED, memcached_append(memc,
-                                                         test_literal_param(__func__), // Key
-                                                         test_literal_param(__func__), // Value
-                                                         time_t(0),
-                                                         uint32_t(0)));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_prepend_TEST(memcached_st* memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  test_compare(MEMCACHED_NOT_SUPPORTED, memcached_prepend(memc,
-                                                         test_literal_param(__func__), // Key
-                                                         test_literal_param(__func__), // Value
-                                                         time_t(0),
-                                                         uint32_t(0)));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_set_get_clone_TEST(memcached_st* memc)
-{
-  memcached_st *memc_no_crypt= memcached_clone(NULL, memc);
-  test_true(memc_no_crypt);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-  
-  memcached_st *memc_crypt= memcached_clone(NULL, memc);
-  test_true(memc_crypt);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_set(memc,
-                                                     test_literal_param(__func__), // Key
-                                                     test_literal_param(__func__), // Value
-                                                     time_t(0),
-                                                     uint32_t(0)));
-
-  {
-    memcached_return_t rc;
-    size_t value_length;
-    char *value;
-    test_true((value= memcached_get(memc,
-                                    test_literal_param(__func__), // Key
-                                    &value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(test_literal_param_size(__func__), value_length);
-    test_memcmp(__func__, value, value_length);
-
-    /*
-      Check to make sure that the raw value is not the original.
-    */
-    size_t raw_value_length;
-    char *raw_value;
-    test_true((raw_value= memcached_get(memc_no_crypt,
-                                        test_literal_param(__func__), // Key
-                                        &raw_value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_ne_compare(test_literal_param_size(__func__), raw_value_length);
-    test_ne_compare(0, memcmp(__func__, raw_value, raw_value_length));
-
-    /*
-      Now we will use our clone, and make sure the encrypted values are the same.
-    */
-    size_t second_value_length;
-    char *second_value;
-    test_true((second_value= memcached_get(memc_crypt,
-                                           test_literal_param(__func__), // Key
-                                           &second_value_length, NULL, &rc)));
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(value_length, second_value_length);
-    test_compare(0, memcmp(value, second_value, second_value_length));
-    test_compare(test_literal_param_size(__func__), second_value_length);
-    test_compare(value_length, second_value_length);
-    test_memcmp(__func__, second_value, second_value_length);
-    test_memcmp(value, second_value, second_value_length);
-
-    free(value);
-    free(raw_value);
-    free(second_value);
-  }
-
-  memcached_free(memc_no_crypt);
-  memcached_free(memc_crypt);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_set_encoding_key_set_grow_key_TEST(memcached_st* memc)
-{
-  memcached_st *memc_no_crypt= memcached_clone(NULL, memc);
-  test_true(memc_no_crypt);
-  test_compare(MEMCACHED_SUCCESS, memcached_set_encoding_key(memc, test_literal_param(__func__)));
-
-  size_t payload_size[] = { 100, 1000, 10000, 1000000, 1000000, 0 };
-  libtest::vchar_t payload;
-  for (size_t *ptr= payload_size; *ptr; ptr++)
-  {
-    payload.reserve(*ptr);
-    for (size_t x= payload.size(); x < *ptr; x++)
-    { 
-      payload.push_back(rand());
-    }
-
-    {
-      memcached_return_t rc= memcached_set(memc,
-                                           test_literal_param(__func__), // Key
-                                           &payload[0], payload.size(), // Value
-                                           time_t(0),
-                                           uint32_t(0));
-
-      // If we run out of space on the server, we just end the test early.
-      if (rc == MEMCACHED_SERVER_MEMORY_ALLOCATION_FAILURE)
-      {
-        break;
-      }
-      test_compare(MEMCACHED_SUCCESS, rc);
-    }
-
-    {
-      memcached_return_t rc;
-      size_t value_length;
-      char *value;
-      test_true((value= memcached_get(memc,
-                                      test_literal_param(__func__), // Key
-                                      &value_length, NULL, &rc)));
-      test_compare(MEMCACHED_SUCCESS, rc);
-      test_compare(payload.size(), value_length);
-      test_memcmp(&payload[0], value, value_length);
-
-      size_t raw_value_length;
-      char *raw_value;
-      test_true((raw_value= memcached_get(memc_no_crypt,
-                                          test_literal_param(__func__), // Key
-                                          &raw_value_length, NULL, &rc)));
-      test_compare(MEMCACHED_SUCCESS, rc);
-      test_ne_compare(payload.size(), raw_value_length);
-      test_ne_compare(0, memcmp(&payload[0], raw_value, raw_value_length));
-
-      free(value);
-      free(raw_value);
-    }
-  }
-
-  memcached_free(memc_no_crypt);
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached-1.0/encoding_key.h b/tests/libmemcached-1.0/encoding_key.h
deleted file mode 100644 (file)
index 4be0cb1..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t memcached_set_encoding_key_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_set_get_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_add_get_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_replace_get_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_increment_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_decrement_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_increment_with_initial_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_decrement_with_initial_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_prepend_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_append_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_set_get_clone_TEST(memcached_st*);
-test_return_t memcached_set_encoding_key_set_grow_key_TEST(memcached_st*);
diff --git a/tests/libmemcached-1.0/error_conditions.cc b/tests/libmemcached-1.0/error_conditions.cc
deleted file mode 100644 (file)
index b9481b1..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-#define BUILDING_LIBMEMCACHED
-
-#include "libmemcached-1.0/memcached.h"
-#include "libmemcached/is.h"
-
-#include "tests/error_conditions.h"
-
-test_return_t memcached_increment_MEMCACHED_NO_SERVERS(memcached_st *)
-{
-  memcached_st *memc_ptr;
-
-  memc_ptr= memcached_create(NULL);
-  test_true(memc_ptr);
-
-  memcached_increment(memc_ptr, test_literal_param("dead key"), 1, NULL);
-  test_true(memcached_last_error(memc_ptr) == MEMCACHED_NO_SERVERS);
-
-  memcached_increment(memc_ptr, test_literal_param("dead key"), 1, NULL);
-  test_true(memcached_last_error(memc_ptr) == MEMCACHED_NO_SERVERS);
-
-  memcached_free(memc_ptr);
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached-1.0/exist.cc b/tests/libmemcached-1.0/exist.cc
deleted file mode 100644 (file)
index caf7429..0000000
+++ /dev/null
@@ -1,74 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-#include "tests/exist.h"
-
-using namespace libtest;
-
-test_return_t memcached_exist_NOTFOUND(memcached_st *memc)
-{
-  test_compare(MEMCACHED_NOTFOUND, memcached_exist(memc, test_literal_param("frog")));
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_exist_SUCCESS(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set(memc, test_literal_param("frog"), 0, 0, 0, 0));
-  test_compare(MEMCACHED_SUCCESS, memcached_exist(memc, test_literal_param("frog")));
-  test_compare(MEMCACHED_SUCCESS, memcached_delete(memc, test_literal_param("frog"), 0));
-  test_compare(MEMCACHED_NOTFOUND, memcached_exist(memc, test_literal_param("frog")));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_exist_by_key_NOTFOUND(memcached_st *memc)
-{
-  test_compare(MEMCACHED_NOTFOUND, memcached_exist_by_key(memc, test_literal_param("master"), test_literal_param("frog")));
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_exist_by_key_SUCCESS(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set_by_key(memc, test_literal_param("master"), test_literal_param("frog"), 0, 0, 0, 0));
-  test_compare(MEMCACHED_SUCCESS, memcached_exist_by_key(memc, test_literal_param("master"), test_literal_param("frog")));
-  test_compare(MEMCACHED_SUCCESS, memcached_delete_by_key(memc, test_literal_param("master"), test_literal_param("frog"), 0));
-  test_compare(MEMCACHED_NOTFOUND, memcached_exist_by_key(memc, test_literal_param("master"), test_literal_param("frog")));
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached-1.0/fetch_all_results.cc b/tests/libmemcached-1.0/fetch_all_results.cc
deleted file mode 100644 (file)
index d069050..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-#include "tests/libmemcached-1.0/fetch_all_results.h"
-
-test_return_t fetch_all_results(memcached_st *memc, unsigned int &keys_returned, memcached_return_t& rc)
-{
-  keys_returned= 0;
-
-  memcached_result_st* result= NULL;
-  while ((result= memcached_fetch_result(memc, result, &rc)))
-  {
-    test_compare(MEMCACHED_SUCCESS, rc);
-    keys_returned+= 1;
-  }
-  memcached_result_free(result);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t fetch_all_results(memcached_st *memc, unsigned int &keys_returned)
-{
-  memcached_return_t rc;
-  return fetch_all_results(memc, keys_returned, rc);
-}
diff --git a/tests/libmemcached-1.0/fetch_all_results.h b/tests/libmemcached-1.0/fetch_all_results.h
deleted file mode 100644 (file)
index 0068403..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t fetch_all_results(memcached_st *, unsigned int&, memcached_return_t&);
-test_return_t fetch_all_results(memcached_st *, unsigned int&);
diff --git a/tests/libmemcached-1.0/generate.h b/tests/libmemcached-1.0/generate.h
deleted file mode 100644 (file)
index bd4855a..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t cleanup_pairs(memcached_st*);
-test_return_t delete_buffer_generate(memcached_st*);
-test_return_t delete_generate(memcached_st*);
-test_return_t generate_buffer_data(memcached_st*);
-test_return_t generate_data(memcached_st*);
-test_return_t generate_data_with_stats(memcached_st*);
-test_return_t generate_large_pairs(memcached_st *);
-test_return_t get_read(memcached_st*);
-test_return_t get_read_count(memcached_st*);
-test_return_t mget_read(memcached_st*);
-test_return_t mget_read_function(memcached_st*);
-test_return_t mget_read_partial_result(memcached_st*);
-test_return_t mget_read_result(memcached_st*);
-test_return_t mget_read_internal_result(memcached_st*);
diff --git a/tests/libmemcached-1.0/haldenbrand.cc b/tests/libmemcached-1.0/haldenbrand.cc
deleted file mode 100644 (file)
index f695d98..0000000
+++ /dev/null
@@ -1,182 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-#include "tests/libmemcached-1.0/haldenbrand.h"
-#include "tests/libmemcached-1.0/fetch_all_results.h"
-
-/* Test case provided by Cal Haldenbrand */
-#define HALDENBRAND_KEY_COUNT 3000U // * 1024576
-#define HALDENBRAND_FLAG_KEY 99 // * 1024576
-
-test_return_t haldenbrand_TEST1(memcached_st *memc)
-{
-  /* We just keep looking at the same values over and over */
-  srandom(10);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, true));
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, true));
-
-
-  /* add key */
-  unsigned long long total= 0;
-  for (uint32_t x= 0 ; total < 20 * 1024576 ; x++ )
-  {
-    uint32_t size= (uint32_t)(rand() % ( 5 * 1024 ) ) + 400;
-    char randomstuff[6 * 1024];
-    memset(randomstuff, 0, 6 * 1024);
-    test_true(size < 6 * 1024); /* Being safe here */
-
-    for (uint32_t j= 0 ; j < size ;j++)
-    {
-      randomstuff[j] = (signed char) ((rand() % 26) + 97);
-    }
-
-    total+= size;
-    char key[MEMCACHED_MAXIMUM_INTEGER_DISPLAY_LENGTH +1];
-    int key_length= snprintf(key, sizeof(key), "%u", x);
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, key, key_length,
-                               randomstuff, strlen(randomstuff),
-                               time_t(0), HALDENBRAND_FLAG_KEY));
-  }
-  test_true(total > HALDENBRAND_KEY_COUNT);
-
-  return TEST_SUCCESS;
-}
-
-/* Test case provided by Cal Haldenbrand */
-test_return_t haldenbrand_TEST2(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, true));
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, true));
-
-#if 0
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE, 20 * 1024576));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE, 20 * 1024576));
-  getter = memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE);
-  getter = memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE);
-
-  for (x= 0, errors= 0; total < 20 * 1024576 ; x++);
-#endif
-
-  size_t total_value_length= 0;
-  for (uint32_t x= 0, errors= 0; total_value_length < 24576 ; x++)
-  {
-    uint32_t flags= 0;
-    size_t val_len= 0;
-
-    char key[MEMCACHED_MAXIMUM_INTEGER_DISPLAY_LENGTH +1];
-    int key_length= snprintf(key, sizeof(key), "%u", x);
-
-    memcached_return_t rc;
-    char *getval= memcached_get(memc, key, key_length, &val_len, &flags, &rc);
-    if (memcached_failed(rc))
-    {
-      if (rc == MEMCACHED_NOTFOUND)
-      {
-        errors++;
-      }
-      else
-      {
-        test_true(rc);
-      }
-
-      continue;
-    }
-    test_compare(uint32_t(HALDENBRAND_FLAG_KEY), flags);
-    test_true(getval);
-
-    total_value_length+= val_len;
-    errors= 0;
-    ::free(getval);
-  }
-
-  return TEST_SUCCESS;
-}
-
-/* Do a large mget() over all the keys we think exist */
-test_return_t haldenbrand_TEST3(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, true));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, true));
-
-#ifdef NOT_YET
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE, 20 * 1024576);
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE, 20 * 1024576);
-  getter = memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE);
-  getter = memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE);
-#endif
-
-  std::vector<size_t> key_lengths;
-  key_lengths.resize(HALDENBRAND_KEY_COUNT);
-  std::vector<char *> keys;
-  keys.resize(key_lengths.size());
-  for (uint32_t x= 0; x < key_lengths.size(); x++)
-  {
-    char key[MEMCACHED_MAXIMUM_INTEGER_DISPLAY_LENGTH +1];
-    int key_length= snprintf(key, sizeof(key), "%u", x);
-    test_true(key_length > 0 and key_length < MEMCACHED_MAXIMUM_INTEGER_DISPLAY_LENGTH +1);
-    keys[x]= strdup(key);
-    key_lengths[x]= key_length;
-  }
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, &keys[0], &key_lengths[0], key_lengths.size()));
-
-  unsigned int keys_returned;
-  test_compare(TEST_SUCCESS, fetch_all_results(memc, keys_returned));
-  test_compare(HALDENBRAND_KEY_COUNT, keys_returned);
-
-  for (libtest::vchar_ptr_t::iterator iter= keys.begin();
-       iter != keys.end();
-       iter++)
-  {
-    ::free(*iter);
-  }
-
-
-  return TEST_SUCCESS;
-}
-
diff --git a/tests/libmemcached-1.0/haldenbrand.h b/tests/libmemcached-1.0/haldenbrand.h
deleted file mode 100644 (file)
index 277ef18..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t haldenbrand_TEST1(memcached_st *);
-test_return_t haldenbrand_TEST2(memcached_st *);
-test_return_t haldenbrand_TEST3(memcached_st *);
diff --git a/tests/libmemcached-1.0/internals.cc b/tests/libmemcached-1.0/internals.cc
deleted file mode 100644 (file)
index 2ccd433..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached internals test
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-using namespace libtest;
-
-#include "tests/string.h"
-
-/*
-  Test cases
-*/
-test_st string_tests[] ={
-  {"string static with null", false, string_static_null },
-  {"string alloc with null", false, string_alloc_null },
-  {"string alloc with 1K", false, string_alloc_with_size },
-  {"string alloc with malloc failure", false, string_alloc_with_size_toobig },
-  {"string append", false, string_alloc_append },
-  {"string append failure (too big)", false, string_alloc_append_toobig },
-  {"string_alloc_append_multiple", false, string_alloc_append_multiple },
-  {0, 0, 0}
-};
-
-
-collection_st collection[] ={
-  {"string", 0, 0, string_tests},
-  {0, 0, 0, 0}
-};
-
-void get_world(libtest::Framework* frame)
-{
-  frame->collections(collection);
-}
diff --git a/tests/libmemcached-1.0/ketama.cc b/tests/libmemcached-1.0/ketama.cc
deleted file mode 100644 (file)
index 99491fc..0000000
+++ /dev/null
@@ -1,291 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#include "mem_config.h"
-#include "libtest/test.hpp"
-
-#include "libmemcached-1.0/memcached.h"
-
-#include "libmemcached/server_instance.h"
-#include "libmemcached/continuum.hpp"
-#include "libmemcached/instance.hpp"
-
-#include "tests/ketama.h"
-#include "tests/ketama_test_cases.h"
-
-test_return_t ketama_compatibility_libmemcached(memcached_st *)
-{
-  memcached_st *memc= memcached_create(NULL);
-  test_true(memc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED, 1));
-
-  test_compare(uint64_t(1), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set_distribution(memc, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA));
-  test_compare(MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA, memcached_behavior_get_distribution(memc));
-
-  memcached_server_st *server_pool= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
-  memcached_server_push(memc, server_pool);
-
-  /* verify that the server list was parsed okay. */
-  test_compare(8U, memcached_server_count(memc));
-  test_strcmp(server_pool[0].hostname, "10.0.1.1");
-  test_compare(in_port_t(11211), server_pool[0].port);
-  test_compare(600U, server_pool[0].weight);
-  test_strcmp(server_pool[2].hostname, "10.0.1.3");
-  test_compare(in_port_t(11211), server_pool[2].port);
-  test_compare(200U, server_pool[2].weight);
-  test_strcmp(server_pool[7].hostname, "10.0.1.8");
-  test_compare(in_port_t(11211), server_pool[7].port);
-  test_compare(100U, server_pool[7].weight);
-
-  /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
-   * us test the boundary wraparound.
-   */
-  test_true(memcached_generate_hash(memc, (char *)"VDEAAAAA", 8) == memc->ketama.continuum[0].index);
-
-  /* verify the standard ketama set. */
-  for (uint32_t x= 0; x < 99; x++)
-  {
-    uint32_t server_idx = memcached_generate_hash(memc, ketama_test_cases[x].key, strlen(ketama_test_cases[x].key));
-    const memcached_instance_st * instance=
-      memcached_server_instance_by_position(memc, server_idx);
-    const char *hostname = memcached_server_name(instance);
-
-    test_strcmp(hostname, ketama_test_cases[x].server);
-  }
-
-  memcached_server_list_free(server_pool);
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t user_supplied_bug18(memcached_st *trash)
-{
-  memcached_return_t rc;
-  uint64_t value;
-  int x;
-  memcached_st *memc;
-
-  (void)trash;
-
-  memc= memcached_create(NULL);
-  test_true(memc);
-
-  rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED, 1);
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED);
-  test_true(value == 1);
-
-  rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_HASH, MEMCACHED_HASH_MD5);
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_HASH);
-  test_true(value == MEMCACHED_HASH_MD5);
-
-  memcached_server_st *server_pool= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
-  memcached_server_push(memc, server_pool);
-
-  /* verify that the server list was parsed okay. */
-  test_true(memcached_server_count(memc) == 8);
-  test_strcmp(server_pool[0].hostname, "10.0.1.1");
-  test_true(server_pool[0].port == 11211);
-  test_true(server_pool[0].weight == 600);
-  test_strcmp(server_pool[2].hostname, "10.0.1.3");
-  test_true(server_pool[2].port == 11211);
-  test_true(server_pool[2].weight == 200);
-  test_strcmp(server_pool[7].hostname, "10.0.1.8");
-  test_true(server_pool[7].port == 11211);
-  test_true(server_pool[7].weight == 100);
-
-  /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
-   * us test the boundary wraparound.
-   */
-  test_true(memcached_generate_hash(memc, (char *)"VDEAAAAA", 8) == memc->ketama.continuum[0].index);
-
-  /* verify the standard ketama set. */
-  for (x= 0; x < 99; x++)
-  {
-    uint32_t server_idx = memcached_generate_hash(memc, ketama_test_cases[x].key, strlen(ketama_test_cases[x].key));
-
-    const memcached_instance_st * instance=
-      memcached_server_instance_by_position(memc, server_idx);
-
-    const char *hostname = memcached_server_name(instance);
-    test_strcmp(hostname, ketama_test_cases[x].server);
-  }
-
-  memcached_server_list_free(server_pool);
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t auto_eject_hosts(memcached_st *trash)
-{
-  (void) trash;
-
-  memcached_return_t rc;
-  memcached_st *memc= memcached_create(NULL);
-  test_true(memc);
-
-  rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED, 1);
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  uint64_t value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED);
-  test_true(value == 1);
-
-  rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_HASH, MEMCACHED_HASH_MD5);
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_HASH);
-  test_true(value == MEMCACHED_HASH_MD5);
-
-    /* server should be removed when in delay */
-  rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS, 1);
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS);
-  test_true(value == 1);
-
-  memcached_server_st *server_pool;
-  server_pool = memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
-  memcached_server_push(memc, server_pool);
-
-  /* verify that the server list was parsed okay. */
-  test_true(memcached_server_count(memc) == 8);
-  test_strcmp(server_pool[0].hostname, "10.0.1.1");
-  test_true(server_pool[0].port == 11211);
-  test_true(server_pool[0].weight == 600);
-  test_strcmp(server_pool[2].hostname, "10.0.1.3");
-  test_true(server_pool[2].port == 11211);
-  test_true(server_pool[2].weight == 200);
-  test_strcmp(server_pool[7].hostname, "10.0.1.8");
-  test_true(server_pool[7].port == 11211);
-  test_true(server_pool[7].weight == 100);
-
-  const memcached_instance_st * instance= memcached_server_instance_by_position(memc, 2);
-  memcached_instance_next_retry(instance, time(NULL) +15);
-  memc->ketama.next_distribution_rebuild= time(NULL) - 1;
-
-  /*
-    This would not work if there were only two hosts.
-  */
-  for (ptrdiff_t x= 0; x < 99; x++)
-  {
-    memcached_autoeject(memc);
-    uint32_t server_idx= memcached_generate_hash(memc, ketama_test_cases[x].key, strlen(ketama_test_cases[x].key));
-    test_true(server_idx != 2);
-  }
-
-  /* and re-added when it's back. */
-  time_t absolute_time= time(NULL) -1;
-  memcached_instance_next_retry(instance, absolute_time);
-  memc->ketama.next_distribution_rebuild= absolute_time;
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION,
-                         memc->distribution);
-  for (ptrdiff_t x= 0; x < 99; x++)
-  {
-    uint32_t server_idx = memcached_generate_hash(memc, ketama_test_cases[x].key, strlen(ketama_test_cases[x].key));
-    // We re-use instance from above.
-    instance=
-      memcached_server_instance_by_position(memc, server_idx);
-    const char *hostname = memcached_server_name(instance);
-    test_strcmp(hostname, ketama_test_cases[x].server);
-  }
-
-  memcached_server_list_free(server_pool);
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t ketama_compatibility_spymemcached(memcached_st *)
-{
-  memcached_st *memc= memcached_create(NULL);
-  test_true(memc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED, 1));
-
-  test_compare(uint64_t(1), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set_distribution(memc, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY));
-  test_compare(MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY, memcached_behavior_get_distribution(memc));
-
-  memcached_server_st *server_pool= memcached_servers_parse("10.0.1.1:11211 600,10.0.1.2:11211 300,10.0.1.3:11211 200,10.0.1.4:11211 350,10.0.1.5:11211 1000,10.0.1.6:11211 800,10.0.1.7:11211 950,10.0.1.8:11211 100");
-  test_true(server_pool);
-  memcached_server_push(memc, server_pool);
-
-  /* verify that the server list was parsed okay. */
-  test_compare(8U, memcached_server_count(memc));
-  test_strcmp(server_pool[0].hostname, "10.0.1.1");
-  test_compare(in_port_t(11211), server_pool[0].port);
-  test_compare(600U, server_pool[0].weight);
-  test_strcmp(server_pool[2].hostname, "10.0.1.3");
-  test_compare(in_port_t(11211), server_pool[2].port);
-  test_compare(200U, server_pool[2].weight);
-  test_strcmp(server_pool[7].hostname, "10.0.1.8");
-  test_compare(in_port_t(11211), server_pool[7].port);
-  test_compare(100U, server_pool[7].weight);
-
-  /* VDEAAAAA hashes to fffcd1b5, after the last continuum point, and lets
-   * us test the boundary wraparound.
-   */
-  test_true(memcached_generate_hash(memc, (char *)"VDEAAAAA", 8) == memc->ketama.continuum[0].index);
-
-  /* verify the standard ketama set. */
-  for (uint32_t x= 0; x < 99; x++)
-  {
-    uint32_t server_idx= memcached_generate_hash(memc, ketama_test_cases_spy[x].key, strlen(ketama_test_cases_spy[x].key));
-
-    const memcached_instance_st * instance=
-      memcached_server_instance_by_position(memc, server_idx);
-
-    const char *hostname= memcached_server_name(instance);
-
-    test_strcmp(hostname, ketama_test_cases_spy[x].server);
-  }
-
-  memcached_server_list_free(server_pool);
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
index 090c90d94c097d8b5b27dae37747ec936973afe3..51fe1eb6b54d0fd0ccdc26a8314af33fba89fbf5 100644 (file)
@@ -94,371 +94,6 @@ using namespace libtest;
 
 #include "libmemcached/instance.hpp"
 
-static memcached_st * create_single_instance_memcached(const memcached_st *original_memc, const char *options)
-{
-  /*
-    If no options are given, copy over at least the binary flag.
-  */
-  char options_buffer[1024]= { 0 };
-  if (options == NULL)
-  {
-    if (memcached_is_binary(original_memc))
-    {
-      snprintf(options_buffer, sizeof(options_buffer), "--BINARY");
-    }
-  }
-
-  /*
-   * I only want to hit _one_ server so I know the number of requests I'm
-   * sending in the pipeline.
-   */
-  const memcached_instance_st * instance= memcached_server_instance_by_position(original_memc, 0);
-
-  char server_string[1024];
-  int server_string_length;
-  if (instance->type == MEMCACHED_CONNECTION_UNIX_SOCKET)
-  {
-    if (options)
-    {
-      server_string_length= snprintf(server_string, sizeof(server_string), "--SOCKET=\"%s\" %s",
-                                     memcached_server_name(instance), options);
-    }
-    else
-    {
-      server_string_length= snprintf(server_string, sizeof(server_string), "--SOCKET=\"%s\"",
-                                     memcached_server_name(instance));
-    }
-  }
-  else
-  {
-    if (options)
-    {
-      server_string_length= snprintf(server_string, sizeof(server_string), "--server=%s:%d %s",
-                                     memcached_server_name(instance), int(memcached_server_port(instance)),
-                                     options);
-    }
-    else
-    {
-      server_string_length= snprintf(server_string, sizeof(server_string), "--server=%s:%d",
-                                     memcached_server_name(instance), int(memcached_server_port(instance)));
-    }
-  }
-
-  if (server_string_length <= 0)
-  {
-    return NULL;
-  }
-
-  char errror_buffer[1024];
-  if (memcached_failed(libmemcached_check_configuration(server_string, server_string_length, errror_buffer, sizeof(errror_buffer))))
-  {
-    Error << "Failed to parse (" << server_string << ") " << errror_buffer;
-    return NULL;
-  }
-
-  return memcached(server_string, server_string_length);
-}
-
-
-test_return_t init_test(memcached_st *not_used)
-{
-  memcached_st memc;
-  (void)not_used;
-
-  (void)memcached_create(&memc);
-  memcached_free(&memc);
-
-  return TEST_SUCCESS;
-}
-
-#define TEST_PORT_COUNT 7
-in_port_t test_ports[TEST_PORT_COUNT];
-
-static memcached_return_t server_display_function(const memcached_st *ptr,
-                                                  const memcached_instance_st * server,
-                                                  void *context)
-{
-  /* Do Nothing */
-  size_t bigger= *((size_t *)(context));
-  (void)ptr;
-  fatal_assert(bigger <= memcached_server_port(server));
-  *((size_t *)(context))= memcached_server_port(server);
-
-  return MEMCACHED_SUCCESS;
-}
-
-static memcached_return_t dump_server_information(const memcached_st *ptr,
-                                                  const memcached_instance_st * instance,
-                                                  void *context)
-{
-  /* Do Nothing */
-  FILE *stream= (FILE *)context;
-  (void)ptr;
-
-  fprintf(stream, "Memcached Server: %s %u Version %u.%u.%u\n",
-          memcached_server_name(instance),
-          memcached_server_port(instance),
-          instance->major_version,
-          instance->minor_version,
-          instance->micro_version);
-
-  return MEMCACHED_SUCCESS;
-}
-
-test_return_t server_sort_test(memcached_st *ptr)
-{
-  size_t bigger= 0; /* Prime the value for the test_true in server_display_function */
-
-  memcached_return_t rc;
-  memcached_server_fn callbacks[1];
-  memcached_st *local_memc;
-  (void)ptr;
-
-  local_memc= memcached_create(NULL);
-  test_true(local_memc);
-  memcached_behavior_set(local_memc, MEMCACHED_BEHAVIOR_SORT_HOSTS, 1);
-
-  for (uint32_t x= 0; x < TEST_PORT_COUNT; x++)
-  {
-    test_ports[x]= (in_port_t)random() % 64000;
-    rc= memcached_server_add_with_weight(local_memc, "localhost", test_ports[x], 0);
-    test_compare(memcached_server_count(local_memc), x +1);
-#if 0 // Rewrite
-    test_true(memcached_server_list_count(memcached_server_list(local_memc)) == x+1);
-#endif
-    test_compare(MEMCACHED_SUCCESS, rc);
-  }
-
-  callbacks[0]= server_display_function;
-  memcached_server_cursor(local_memc, callbacks, (void *)&bigger,  1);
-
-
-  memcached_free(local_memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t server_sort2_test(memcached_st *ptr)
-{
-  size_t bigger= 0; /* Prime the value for the test_true in server_display_function */
-  memcached_server_fn callbacks[1];
-  memcached_st *local_memc;
-  const memcached_instance_st * instance;
-  (void)ptr;
-
-  local_memc= memcached_create(NULL);
-  test_true(local_memc);
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(local_memc, MEMCACHED_BEHAVIOR_SORT_HOSTS, 1));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_server_add_with_weight(local_memc, "MEMCACHED_BEHAVIOR_SORT_HOSTS", 43043, 0));
-  instance= memcached_server_instance_by_position(local_memc, 0);
-  test_compare(in_port_t(43043), memcached_server_port(instance));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_server_add_with_weight(local_memc, "MEMCACHED_BEHAVIOR_SORT_HOSTS", 43042, 0));
-
-  instance= memcached_server_instance_by_position(local_memc, 0);
-  test_compare(in_port_t(43042), memcached_server_port(instance));
-
-  instance= memcached_server_instance_by_position(local_memc, 1);
-  test_compare(in_port_t(43043), memcached_server_port(instance));
-
-  callbacks[0]= server_display_function;
-  memcached_server_cursor(local_memc, callbacks, (void *)&bigger,  1);
-
-
-  memcached_free(local_memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_server_remove_test(memcached_st*)
-{
-  const char *server_string= "--server=localhost:4444 --server=localhost:4445 --server=localhost:4446 --server=localhost:4447 --server=localhost --server=memcache1.memcache.bk.sapo.pt:11211 --server=memcache1.memcache.bk.sapo.pt:11212 --server=memcache1.memcache.bk.sapo.pt:11213 --server=memcache1.memcache.bk.sapo.pt:11214 --server=memcache2.memcache.bk.sapo.pt:11211 --server=memcache2.memcache.bk.sapo.pt:11212 --server=memcache2.memcache.bk.sapo.pt:11213 --server=memcache2.memcache.bk.sapo.pt:11214";
-  char buffer[BUFSIZ];
-
-  test_compare(MEMCACHED_SUCCESS,
-               libmemcached_check_configuration(server_string, strlen(server_string), buffer, sizeof(buffer)));
-  memcached_st *memc= memcached(server_string, strlen(server_string));
-  test_true(memc);
-
-  memcached_server_fn callbacks[1];
-  callbacks[0]= server_print_callback;
-  memcached_server_cursor(memc, callbacks, NULL,  1);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-static memcached_return_t server_display_unsort_function(const memcached_st*,
-                                                         const memcached_instance_st * server,
-                                                         void *context)
-{
-  /* Do Nothing */
-  uint32_t x= *((uint32_t *)(context));
-
-  if (! (test_ports[x] == memcached_server_port(server)))
-  {
-    fprintf(stderr, "%lu -> %lu\n", (unsigned long)test_ports[x], (unsigned long)memcached_server_port(server));
-    return MEMCACHED_FAILURE;
-  }
-
-  *((uint32_t *)(context))= ++x;
-
-  return MEMCACHED_SUCCESS;
-}
-
-test_return_t server_unsort_test(memcached_st *ptr)
-{
-  size_t counter= 0; /* Prime the value for the test_true in server_display_function */
-  size_t bigger= 0; /* Prime the value for the test_true in server_display_function */
-  memcached_server_fn callbacks[1];
-  memcached_st *local_memc;
-  (void)ptr;
-
-  local_memc= memcached_create(NULL);
-  test_true(local_memc);
-
-  for (uint32_t x= 0; x < TEST_PORT_COUNT; x++)
-  {
-    test_ports[x]= (in_port_t)(random() % 64000);
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_server_add_with_weight(local_memc, "localhost", test_ports[x], 0));
-    test_compare(memcached_server_count(local_memc), x +1);
-#if 0 // Rewrite
-    test_true(memcached_server_list_count(memcached_server_list(local_memc)) == x+1);
-#endif
-  }
-
-  callbacks[0]= server_display_unsort_function;
-  memcached_server_cursor(local_memc, callbacks, (void *)&counter,  1);
-
-  /* Now we sort old data! */
-  memcached_behavior_set(local_memc, MEMCACHED_BEHAVIOR_SORT_HOSTS, 1);
-  callbacks[0]= server_display_function;
-  memcached_server_cursor(local_memc, callbacks, (void *)&bigger,  1);
-
-
-  memcached_free(local_memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t allocation_test(memcached_st *not_used)
-{
-  (void)not_used;
-  memcached_st *memc;
-  memc= memcached_create(NULL);
-  test_true(memc);
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t clone_test(memcached_st *memc)
-{
-  /* All null? */
-  {
-    memcached_st *memc_clone;
-    memc_clone= memcached_clone(NULL, NULL);
-    test_true(memc_clone);
-    memcached_free(memc_clone);
-  }
-
-  /* Can we init from null? */
-  {
-    memcached_st *memc_clone;
-    memc_clone= memcached_clone(NULL, memc);
-    test_true(memc_clone);
-
-    { // Test allocators
-      test_true(memc_clone->allocators.free == memc->allocators.free);
-      test_true(memc_clone->allocators.malloc == memc->allocators.malloc);
-      test_true(memc_clone->allocators.realloc == memc->allocators.realloc);
-      test_true(memc_clone->allocators.calloc == memc->allocators.calloc);
-    }
-
-    test_true(memc_clone->connect_timeout == memc->connect_timeout);
-    test_true(memc_clone->delete_trigger == memc->delete_trigger);
-    test_true(memc_clone->distribution == memc->distribution);
-    { // Test all of the flags
-      test_true(memc_clone->flags.no_block == memc->flags.no_block);
-      test_true(memc_clone->flags.tcp_nodelay == memc->flags.tcp_nodelay);
-      test_true(memc_clone->flags.support_cas == memc->flags.support_cas);
-      test_true(memc_clone->flags.buffer_requests == memc->flags.buffer_requests);
-      test_true(memc_clone->flags.use_sort_hosts == memc->flags.use_sort_hosts);
-      test_true(memc_clone->flags.verify_key == memc->flags.verify_key);
-      test_true(memc_clone->ketama.weighted_ == memc->ketama.weighted_);
-      test_true(memc_clone->flags.binary_protocol == memc->flags.binary_protocol);
-      test_true(memc_clone->flags.hash_with_namespace == memc->flags.hash_with_namespace);
-      test_true(memc_clone->flags.reply == memc->flags.reply);
-      test_true(memc_clone->flags.use_udp == memc->flags.use_udp);
-      test_true(memc_clone->flags.auto_eject_hosts == memc->flags.auto_eject_hosts);
-      test_true(memc_clone->flags.randomize_replica_read == memc->flags.randomize_replica_read);
-    }
-    test_true(memc_clone->get_key_failure == memc->get_key_failure);
-    test_true(hashkit_compare(&memc_clone->hashkit, &memc->hashkit));
-    test_true(memc_clone->io_bytes_watermark == memc->io_bytes_watermark);
-    test_true(memc_clone->io_msg_watermark == memc->io_msg_watermark);
-    test_true(memc_clone->io_key_prefetch == memc->io_key_prefetch);
-    test_true(memc_clone->on_cleanup == memc->on_cleanup);
-    test_true(memc_clone->on_clone == memc->on_clone);
-    test_true(memc_clone->poll_timeout == memc->poll_timeout);
-    test_true(memc_clone->rcv_timeout == memc->rcv_timeout);
-    test_true(memc_clone->recv_size == memc->recv_size);
-    test_true(memc_clone->retry_timeout == memc->retry_timeout);
-    test_true(memc_clone->send_size == memc->send_size);
-    test_true(memc_clone->server_failure_limit == memc->server_failure_limit);
-    test_true(memc_clone->server_timeout_limit == memc->server_timeout_limit);
-    test_true(memc_clone->snd_timeout == memc->snd_timeout);
-    test_true(memc_clone->user_data == memc->user_data);
-
-    memcached_free(memc_clone);
-  }
-
-  /* Can we init from struct? */
-  {
-    memcached_st declared_clone;
-    memcached_st *memc_clone;
-    memset(&declared_clone, 0 , sizeof(memcached_st));
-    memc_clone= memcached_clone(&declared_clone, NULL);
-    test_true(memc_clone);
-    memcached_free(memc_clone);
-  }
-
-  /* Can we init from struct? */
-  {
-    memcached_st declared_clone;
-    memcached_st *memc_clone;
-    memset(&declared_clone, 0 , sizeof(memcached_st));
-    memc_clone= memcached_clone(&declared_clone, memc);
-    test_true(memc_clone);
-    memcached_free(memc_clone);
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t userdata_test(memcached_st *memc)
-{
-  void* foo= NULL;
-  test_false(memcached_set_user_data(memc, foo));
-  test_true(memcached_get_user_data(memc) == foo);
-  test_true(memcached_set_user_data(memc, NULL) == foo);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t connection_test(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_server_add_with_weight(memc, "localhost", 0, 0));
-
-  return TEST_SUCCESS;
-}
 
 test_return_t libmemcached_string_behavior_test(memcached_st *)
 {
@@ -517,3406 +152,1563 @@ test_return_t memcached_return_t_TEST(memcached_st *memc)
   return TEST_SUCCESS;
 }
 
-test_return_t set_test(memcached_st *memc)
+test_return_t mget_end(memcached_st *memc)
 {
-  memcached_return_t rc= memcached_set(memc,
-                                       test_literal_param("foo"),
-                                       test_literal_param("when we sanitize"),
-                                       time_t(0), (uint32_t)0);
-  test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
+  const char *keys[]= { "foo", "foo2" };
+  size_t lengths[]= { 3, 4 };
+  const char *values[]= { "fjord", "41" };
 
-  return TEST_SUCCESS;
-}
+  // Set foo and foo2
+  for (size_t x= 0; x < test_array_length(keys); x++)
+  {
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_set(memc,
+                               keys[x], lengths[x],
+                               values[x], strlen(values[x]),
+                               time_t(0), uint32_t(0)));
+  }
 
-test_return_t append_test(memcached_st *memc)
-{
-  memcached_return_t rc;
-  const char *in_value= "we";
-  size_t value_length;
+  char *string;
+  size_t string_length;
   uint32_t flags;
 
+  // retrieve both via mget
   test_compare(MEMCACHED_SUCCESS,
-               memcached_flush(memc, 0));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             in_value, strlen(in_value),
-                             time_t(0), uint32_t(0)));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_append(memc,
-                                test_literal_param(__func__),
-                                " the", strlen(" the"),
-                                time_t(0), uint32_t(0)));
+               memcached_mget(memc,
+                              keys, lengths,
+                              test_array_length(keys)));
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_append(memc,
-                                test_literal_param(__func__),
-                                " people", strlen(" people"),
-                                time_t(0), uint32_t(0)));
-
-  char *out_value= memcached_get(memc,
-                                 test_literal_param(__func__),
-                                 &value_length, &flags, &rc);
-  test_memcmp(out_value, "we the people", strlen("we the people"));
-  test_compare(strlen("we the people"), value_length);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  free(out_value);
+  char key[MEMCACHED_MAX_KEY];
+  size_t key_length;
+  memcached_return_t rc;
 
-  return TEST_SUCCESS;
-}
+  // this should get both
+  for (size_t x= 0; x < test_array_length(keys); x++)
+  {
+    string= memcached_fetch(memc, key, &key_length, &string_length,
+                            &flags, &rc);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    int val = 0;
+    if (key_length == 4)
+    {
+      val= 1;
+    }
 
-test_return_t append_binary_test(memcached_st *memc)
-{
-  uint32_t store_list[] = { 23, 56, 499, 98, 32847, 0 };
+    test_compare(string_length, strlen(values[val]));
+    test_true(strncmp(values[val], string, string_length) == 0);
+    free(string);
+  }
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_flush(memc, 0));
+  // this should indicate end
+  string= memcached_fetch(memc, key, &key_length, &string_length, &flags, &rc);
+  test_compare(MEMCACHED_END, rc);
+  test_null(string);
 
+  // now get just one
   test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             NULL, 0,
-                             time_t(0), uint32_t(0)));
-
-  size_t count= 0;
-  for (uint32_t x= 0; store_list[x] ; x++)
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_append(memc,
-                         test_literal_param(__func__),
-                         (char *)&store_list[x], sizeof(uint32_t),
-                         time_t(0), uint32_t(0)));
-    count++;
-  }
+               memcached_mget(memc, keys, lengths, 1));
 
-  size_t value_length;
-  uint32_t flags;
-  memcached_return_t rc;
-  uint32_t *value= (uint32_t *)memcached_get(memc,
-                                             test_literal_param(__func__),
-                                             &value_length, &flags, &rc);
-  test_compare(value_length, sizeof(uint32_t) * count);
+  string= memcached_fetch(memc, key, &key_length, &string_length, &flags, &rc);
+  test_compare(key_length, lengths[0]);
+  test_true(strncmp(keys[0], key, key_length) == 0);
+  test_compare(string_length, strlen(values[0]));
+  test_true(strncmp(values[0], string, string_length) == 0);
   test_compare(MEMCACHED_SUCCESS, rc);
+  free(string);
 
-  for (uint32_t counter= uint32_t(count), *ptr= value; counter; counter--)
-  {
-    test_compare(*ptr, store_list[count - counter]);
-    ptr++;
-  }
-  free(value);
+  // this should indicate end
+  string= memcached_fetch(memc, key, &key_length, &string_length, &flags, &rc);
+  test_compare(MEMCACHED_END, rc);
+  test_null(string);
 
   return TEST_SUCCESS;
 }
 
-test_return_t memcached_mget_mixed_memcached_get_TEST(memcached_st *memc)
+/* Do not copy the style of this code, I just access hosts to testthis function */
+test_return_t stats_servername_test(memcached_st *memc)
 {
-  keys_st keys(200);
+  memcached_stat_st memc_stat;
+  const memcached_instance_st * instance=
+    memcached_server_instance_by_position(memc, 0);
 
-  for (libtest::vchar_ptr_t::iterator iter= keys.begin();
-       iter != keys.end(); 
-       ++iter)
+  if (LIBMEMCACHED_WITH_SASL_SUPPORT and memcached_get_sasl_callbacks(memc))
   {
-    test_compare_hint(MEMCACHED_SUCCESS,
-                      memcached_set(memc,
-                                    (*iter), 36,
-                                    NULL, 0,
-                                    time_t(0), uint32_t(0)),
-                      memcached_last_error_message(memc));
+    return TEST_SKIPPED;
   }
 
-  for (ptrdiff_t loop= 0; loop < 20; loop++)
-  {
-    if (random() %2)
-    {
-      test_compare(MEMCACHED_SUCCESS, 
-                   memcached_mget(memc, keys.keys_ptr(), keys.lengths_ptr(), keys.size()));
-
-      memcached_result_st *results= memcached_result_create(memc, NULL);
-      test_true(results);
-
-      size_t result_count= 0;
-      memcached_return_t rc;
-      while (memcached_fetch_result(memc, results, &rc))
-      {
-        result_count++;
-      }
-      test_true(keys.size() >= result_count);
-    }
-    else
-    {
-      int which_key= random() % int(keys.size());
-      size_t value_length;
-      uint32_t flags;
-      memcached_return_t rc;
-      char *out_value= memcached_get(memc, keys.key_at(which_key), keys.length_at(which_key),
-                                     &value_length, &flags, &rc);
-      if (rc == MEMCACHED_NOTFOUND)
-      { } // It is possible that the value has been purged.
-      else
-      {
-        test_compare(MEMCACHED_SUCCESS, rc);
-      }
-      test_null(out_value);
-      test_zero(value_length);
-      test_zero(flags);
-    }
-  }
+  test_compare(MEMCACHED_SUCCESS, memcached_stat_servername(&memc_stat, NULL,
+                                                            memcached_server_name(instance),
+                                                            memcached_server_port(instance)));
 
   return TEST_SUCCESS;
 }
 
-test_return_t cas2_test(memcached_st *memc)
+test_return_t mget_result_test(memcached_st *memc)
 {
   const char *keys[]= {"fudge", "son", "food"};
   size_t key_length[]= {5, 3, 4};
-  const char *value= "we the people";
-  size_t value_length= strlen("we the people");
 
-  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc, 0));
+  memcached_result_st results_obj;
+  memcached_result_st *results= memcached_result_create(memc, &results_obj);
+  test_true(results);
+  test_true(&results_obj == results);
+
+  /* We need to empty the server before continueing test */
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_flush(memc, 0));
 
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true));
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 3));
 
-  for (uint32_t x= 0; x < 3; x++)
+  memcached_return_t rc;
+  while ((results= memcached_fetch_result(memc, &results_obj, &rc)))
   {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, keys[x], key_length[x],
-                               keys[x], key_length[x],
-                               time_t(50), uint32_t(9)));
+    test_true(results);
   }
 
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_mget(memc, keys, key_length, 3));
+  while ((results= memcached_fetch_result(memc, &results_obj, &rc))) { test_true(false); /* We should never see a value returned */ };
+  test_false(results);
+  test_compare(MEMCACHED_NOTFOUND, rc);
 
-  memcached_result_st *results= memcached_result_create(memc, NULL);
-  test_true(results);
+  for (uint32_t x= 0; x < 3; x++)
+  {
+    rc= memcached_set(memc, keys[x], key_length[x],
+                      keys[x], key_length[x],
+                      (time_t)50, (uint32_t)9);
+    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
+  }
 
-  memcached_return_t rc;
-  results= memcached_fetch_result(memc, results, &rc);
-  test_true(results);
-  test_true(results->item_cas);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_true(memcached_result_cas(results));
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 3));
 
-  test_memcmp(value, "we the people", strlen("we the people"));
-  test_compare(strlen("we the people"), value_length);
-  test_compare(MEMCACHED_SUCCESS, rc);
+  while ((results= memcached_fetch_result(memc, &results_obj, &rc)))
+  {
+    test_true(results);
+    test_true(&results_obj == results);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_memcmp(memcached_result_key_value(results),
+                memcached_result_value(results),
+                memcached_result_length(results));
+    test_compare(memcached_result_key_length(results), memcached_result_length(results));
+  }
 
-  memcached_result_free(results);
+  memcached_result_free(&results_obj);
 
   return TEST_SUCCESS;
 }
 
-test_return_t cas_test(memcached_st *memc)
+test_return_t mget_result_alloc_test(memcached_st *memc)
 {
-  const char* keys[2] = { __func__, NULL };
-  size_t keylengths[2] = { strlen(__func__), 0 };
-
-  memcached_result_st results_obj;
-
-  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc, 0));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true));
+  const char *keys[]= {"fudge", "son", "food"};
+  size_t key_length[]= {5, 3, 4};
 
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("we the people"),
-                             (time_t)0, (uint32_t)0));
+  memcached_result_st *results;
 
+  /* We need to empty the server before continueing test */
   test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, keylengths, 1));
+               memcached_flush(memc, 0));
 
-  memcached_result_st *results= memcached_result_create(memc, &results_obj);
-  test_true(results);
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 3));
 
   memcached_return_t rc;
-  results= memcached_fetch_result(memc, &results_obj, &rc);
-  test_true(results);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_true(memcached_result_cas(results));
-  test_memcmp("we the people", memcached_result_value(results), test_literal_param_size("we the people"));
-  test_compare(test_literal_param_size("we the people"),
-               strlen(memcached_result_value(results)));
-
-  uint64_t cas= memcached_result_cas(results);
+  while ((results= memcached_fetch_result(memc, NULL, &rc)))
+  {
+    test_true(results);
+  }
+  test_false(results);
+  test_compare(MEMCACHED_NOTFOUND, rc);
 
-#if 0
-  results= memcached_fetch_result(memc, &results_obj, &rc);
-  test_true(rc == MEMCACHED_END);
-  test_true(results == NULL);
-#endif
+  for (uint32_t x= 0; x < 3; x++)
+  {
+    rc= memcached_set(memc, keys[x], key_length[x],
+                      keys[x], key_length[x],
+                      (time_t)50, (uint32_t)9);
+    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
+  }
 
   test_compare(MEMCACHED_SUCCESS,
-               memcached_cas(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("change the value"),
-                             0, 0, cas));
-
-  /*
-   * The item will have a new cas value, so try to set it again with the old
-   * value. This should fail!
-   */
-  test_compare(MEMCACHED_DATA_EXISTS,
-               memcached_cas(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("change the value"),
-                             0, 0, cas));
+               memcached_mget(memc, keys, key_length, 3));
 
-  memcached_result_free(&results_obj);
+  uint32_t x= 0;
+  while ((results= memcached_fetch_result(memc, NULL, &rc)))
+  {
+    test_true(results);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_compare(memcached_result_key_length(results), memcached_result_length(results));
+    test_memcmp(memcached_result_key_value(results),
+                memcached_result_value(results),
+                memcached_result_length(results));
+    memcached_result_free(results);
+    x++;
+  }
 
   return TEST_SUCCESS;
 }
 
-
-test_return_t prepend_test(memcached_st *memc)
+test_return_t mget_result_function(memcached_st *memc)
 {
-  const char *key= "fig";
-  const char *value= "people";
+  const char *keys[]= {"fudge", "son", "food"};
+  size_t key_length[]= {5, 3, 4};
+  size_t counter;
+  memcached_execute_fn callbacks[1];
 
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_flush(memc, 0));
+  for (uint32_t x= 0; x < 3; x++)
+  {
+    test_compare(return_value_based_on_buffering(memc), 
+                 memcached_set(memc, keys[x], key_length[x],
+                               keys[x], key_length[x],
+                               time_t(50), uint32_t(9)));
+  }
+  test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
+  memcached_quit(memc);
 
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_set(memc, key, strlen(key),
-                             value, strlen(value),
-                             time_t(0), uint32_t(0)));
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 3));
 
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_prepend(memc, key, strlen(key),
-                                 "the ", strlen("the "),
-                                 time_t(0), uint32_t(0)));
+  callbacks[0]= &callback_counter;
+  counter= 0;
 
   test_compare(MEMCACHED_SUCCESS, 
-               memcached_prepend(memc, key, strlen(key),
-                                 "we ", strlen("we "),
-                                 time_t(0), uint32_t(0)));
+               memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
 
-  size_t value_length;
-  uint32_t flags;
-  memcached_return_t rc;
-  char *out_value= memcached_get(memc, key, strlen(key),
-                       &value_length, &flags, &rc);
-  test_memcmp(out_value, "we the people", strlen("we the people"));
-  test_compare(strlen("we the people"), value_length);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  free(out_value);
+  test_compare(size_t(3), counter);
 
   return TEST_SUCCESS;
 }
 
-/*
-  Set the value, then quit to make sure it is flushed.
-  Come back in and test that add fails.
-*/
-test_return_t memcached_add_SUCCESS_TEST(memcached_st *memc)
+test_return_t mget_test(memcached_st *memc)
 {
-  memcached_return_t rc;
-  test_null(memcached_get(memc, test_literal_param(__func__), NULL, NULL, &rc));
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_add(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("try something else"),
-                             time_t(0), uint32_t(0)));
+  const char *keys[]= {"fudge", "son", "food"};
+  size_t key_length[]= {5, 3, 4};
 
-  return TEST_SUCCESS;
-}
+  char return_key[MEMCACHED_MAX_KEY];
+  size_t return_key_length;
+  char *return_value;
+  size_t return_value_length;
 
-test_return_t regression_1067242_TEST(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set(memc,
-                                                test_literal_param(__func__), 
-                                                test_literal_param("-2"),
-                                                0, 0));
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 3));
 
+  uint32_t flags;
   memcached_return_t rc;
-  char* value;
-  test_true((value= memcached_get(memc, test_literal_param(__func__), NULL, NULL, &rc)));
-  test_compare(MEMCACHED_SUCCESS, rc);
-  free(value);
+  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
+                                        &return_value_length, &flags, &rc)))
+  {
+    test_true(return_value);
+  }
+  test_false(return_value);
+  test_zero(return_value_length);
+  test_compare(MEMCACHED_NOTFOUND, rc);
+
+  for (uint32_t x= 0; x < 3; x++)
+  {
+    rc= memcached_set(memc, keys[x], key_length[x],
+                      keys[x], key_length[x],
+                      (time_t)50, (uint32_t)9);
+    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
+  }
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 3));
 
-  for (size_t x= 0; x < 10; x++)
+  uint32_t x= 0;
+  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
+                                        &return_value_length, &flags, &rc)))
   {
-    uint64_t new_number;
-    test_compare(MEMCACHED_CLIENT_ERROR,
-                 memcached_increment(memc, 
-                                     test_literal_param(__func__), 1, &new_number));
-    test_compare(MEMCACHED_CLIENT_ERROR, memcached_last_error(memc));
-    test_true((value= memcached_get(memc, test_literal_param(__func__), NULL, NULL, &rc)));
+    test_true(return_value);
     test_compare(MEMCACHED_SUCCESS, rc);
-    free(value);
+    if (not memc->_namespace)
+    {
+      test_compare(return_key_length, return_value_length);
+      test_memcmp(return_value, return_key, return_value_length);
+    }
+    free(return_value);
+    x++;
   }
 
   return TEST_SUCCESS;
 }
 
-/*
-  Set the value, then quit to make sure it is flushed.
-  Come back in and test that add fails.
-*/
-test_return_t add_test(memcached_st *memc)
+test_return_t mget_execute(memcached_st *original_memc)
 {
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("when we sanitize"),
-                             time_t(0), uint32_t(0)));
-
-  memcached_quit(memc);
-
-  size_t value_length;
-  uint32_t flags;
-  memcached_return_t rc;
-  char *check_value= memcached_get(memc,
-                                   test_literal_param(__func__),
-                                   &value_length, &flags, &rc);
-  test_memcmp(check_value, "when we sanitize", strlen("when we sanitize"));
-  test_compare(test_literal_param_size("when we sanitize"), value_length);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  free(check_value);
+  test_skip(true, memcached_behavior_get(original_memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
 
-  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) ? MEMCACHED_DATA_EXISTS : MEMCACHED_NOTSTORED,
-               memcached_add(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("try something else"),
-                             time_t(0), uint32_t(0)));
+  memcached_st *memc= create_single_instance_memcached(original_memc, "--BINARY-PROTOCOL");
+  test_true(memc);
 
-  return TEST_SUCCESS;
-}
+  keys_st keys(20480);
 
-/*
-** There was a problem of leaking filedescriptors in the initial release
-** of MacOSX 10.5. This test case triggers the problem. On some Solaris
-** systems it seems that the kernel is slow on reclaiming the resources
-** because the connects starts to time out (the test doesn't do much
-** anyway, so just loop 10 iterations)
-*/
-test_return_t add_wrapper(memcached_st *memc)
-{
-  unsigned int max= 10000;
-#ifdef __sun
-  max= 10;
-#endif
-#ifdef __APPLE__
-  max= 10;
-#endif
+  /* First add all of the items.. */
+  char blob[1024] = {0};
 
-  for (uint32_t x= 0; x < max; x++)
+  for (size_t x= 0; x < keys.size(); ++x)
   {
-    add_test(memc);
+    uint64_t query_id= memcached_query_id(memc);
+    memcached_return_t rc= memcached_add(memc,
+                                         keys.key_at(x), keys.length_at(x),
+                                         blob, sizeof(blob),
+                                         0, 0);
+    ASSERT_TRUE_(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED, "Returned %s", memcached_strerror(NULL, rc));
+    test_compare(query_id +1, memcached_query_id(memc));
   }
 
-  return TEST_SUCCESS;
-}
+  /* Try to get all of them with a large multiget */
+  size_t counter= 0;
+  memcached_execute_fn callbacks[]= { &callback_counter };
+  test_compare(MEMCACHED_SUCCESS, 
+               memcached_mget_execute(memc,
+                                      keys.keys_ptr(), keys.lengths_ptr(),
+                                      keys.size(), callbacks, &counter, 1));
 
-test_return_t replace_test(memcached_st *memc)
-{
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("when we sanitize"),
-                             time_t(0), uint32_t(0)));
+  {
+    uint64_t query_id= memcached_query_id(memc);
+    test_compare(MEMCACHED_SUCCESS, 
+                 memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
+    test_compare(query_id, memcached_query_id(memc));
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_replace(memc,
-                                 test_literal_param(__func__),
-                                 test_literal_param("first we insert some data"),
-                                 time_t(0), uint32_t(0)));
+    /* Verify that we got all of the items */
+    test_compare(keys.size(), counter);
+  }
+
+  memcached_free(memc);
 
   return TEST_SUCCESS;
 }
 
-test_return_t delete_test(memcached_st *memc)
+test_return_t MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH_TEST(memcached_st *original_memc)
 {
-  test_compare(return_value_based_on_buffering(memc), 
-               memcached_set(memc, 
-                             test_literal_param(__func__),
-                             test_literal_param("when we sanitize"),
-                             time_t(0), uint32_t(0)));
+  test_skip(true, memcached_behavior_get(original_memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
 
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_delete(memc, 
-                                test_literal_param(__func__),
-                                time_t(0)));
+  memcached_st *memc= create_single_instance_memcached(original_memc, "--BINARY-PROTOCOL");
+  test_true(memc);
 
-  return TEST_SUCCESS;
-}
+  test_skip(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH, 8));
 
-test_return_t flush_test(memcached_st *memc)
-{
-  uint64_t query_id= memcached_query_id(memc);
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_flush(memc, 0));
-  test_compare(query_id +1, memcached_query_id(memc));
+  keys_st keys(20480);
 
-  return TEST_SUCCESS;
-}
+  /* First add all of the items.. */
+  char blob[1024] = {0};
 
-static memcached_return_t  server_function(const memcached_st *,
-                                           const memcached_instance_st *,
-                                           void *)
-{
-  /* Do Nothing */
-  return MEMCACHED_SUCCESS;
-}
+  for (size_t x= 0; x < keys.size(); ++x)
+  {
+    uint64_t query_id= memcached_query_id(memc);
+    memcached_return_t rc= memcached_add(memc,
+                                         keys.key_at(x), keys.length_at(x),
+                                         blob, sizeof(blob),
+                                         0, 0);
+    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
+    test_compare(query_id +1, memcached_query_id(memc));
+  }
 
-test_return_t memcached_server_cursor_test(memcached_st *memc)
-{
-  char context[10];
-  strncpy(context, "foo bad", sizeof(context));
-  memcached_server_fn callbacks[1];
+  /* Try to get all of them with a large multiget */
+  size_t counter= 0;
+  memcached_execute_fn callbacks[]= { &callback_counter };
+  test_compare(MEMCACHED_SUCCESS, 
+               memcached_mget_execute(memc,
+                                      keys.keys_ptr(), keys.lengths_ptr(),
+                                      keys.size(), callbacks, &counter, 1));
+
+  {
+    uint64_t query_id= memcached_query_id(memc);
+    test_compare(MEMCACHED_SUCCESS, 
+                 memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
+    test_compare(query_id, memcached_query_id(memc));
+
+    /* Verify that we got all of the items */
+    test_compare(keys.size(), counter);
+  }
+
+  memcached_free(memc);
 
-  callbacks[0]= server_function;
-  memcached_server_cursor(memc, callbacks, context,  1);
   return TEST_SUCCESS;
 }
 
-test_return_t bad_key_test(memcached_st *memc)
+
+test_return_t get_stats_keys(memcached_st *memc)
 {
-  memcached_return_t rc;
-  const char *key= "foo bad";
-  uint32_t flags;
+ char **stat_list;
+ char **ptr;
+ memcached_stat_st memc_stat;
+ memcached_return_t rc;
 
 uint64_t query_id= memcached_query_id(memc);
-  
-  // Just skip if we are in binary mode.
-  test_skip(false, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
stat_list= memcached_stat_get_keys(memc, &memc_stat, &rc);
+ test_compare(MEMCACHED_SUCCESS, rc);
+ for (ptr= stat_list; *ptr; ptr++)
+   test_true(*ptr);
 
-  test_compare(query_id, memcached_query_id(memc)); // We should not increase the query_id for memcached_behavior_get()
+ free(stat_list);
 
 memcached_st *memc_clone= memcached_clone(NULL, memc);
-  test_true(memc_clone);
return TEST_SUCCESS;
+}
 
-  query_id= memcached_query_id(memc_clone);
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_VERIFY_KEY, true));
-  test_compare(query_id, memcached_query_id(memc_clone)); // We should not increase the query_id for memcached_behavior_set()
-  ASSERT_TRUE(memcached_behavior_get(memc_clone, MEMCACHED_BEHAVIOR_VERIFY_KEY));
 
-  /* All keys are valid in the binary protocol (except for length) */
-  if (memcached_behavior_get(memc_clone, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) == false)
-  {
-    uint64_t before_query_id= memcached_query_id(memc_clone);
-    {
-      size_t string_length;
-      char *string= memcached_get(memc_clone, key, strlen(key),
-                                  &string_length, &flags, &rc);
-      test_compare(MEMCACHED_BAD_KEY_PROVIDED, rc);
-      test_zero(string_length);
-      test_false(string);
-    }
-    test_compare(before_query_id +1, memcached_query_id(memc_clone));
+test_return_t get_stats(memcached_st *memc)
+{
+ memcached_return_t rc;
 
-    query_id= memcached_query_id(memc_clone);
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_VERIFY_KEY, false));
-    test_compare(query_id, memcached_query_id(memc_clone)); // We should not increase the query_id for memcached_behavior_set()
-    {
-      size_t string_length;
-      char *string= memcached_get(memc_clone, key, strlen(key),
-                                  &string_length, &flags, &rc);
-      test_compare(MEMCACHED_NOTFOUND, rc);
-      test_zero(string_length);
-      test_false(string);
-    }
+ memcached_stat_st *memc_stat= memcached_stat(memc, NULL, &rc);
+ test_compare(MEMCACHED_SUCCESS, rc);
+ test_true(memc_stat);
 
-    /* Test multi key for bad keys */
-    const char *keys[] = { "GoodKey", "Bad Key", "NotMine" };
-    size_t key_lengths[] = { 7, 7, 7 };
-    query_id= memcached_query_id(memc_clone);
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_VERIFY_KEY, true));
-    test_compare(query_id, memcached_query_id(memc_clone));
+ for (uint32_t x= 0; x < memcached_server_count(memc); x++)
+ {
+   char **stat_list= memcached_stat_get_keys(memc, memc_stat+x, &rc);
+   test_compare(MEMCACHED_SUCCESS, rc);
+   for (char **ptr= stat_list; *ptr; ptr++) {};
 
-    query_id= memcached_query_id(memc_clone);
-    test_compare(MEMCACHED_BAD_KEY_PROVIDED,
-                 memcached_mget(memc_clone, keys, key_lengths, 3));
-    test_compare(query_id +1, memcached_query_id(memc_clone));
+   free(stat_list);
+ }
 
-    query_id= memcached_query_id(memc_clone);
-    // Grouping keys are not required to follow normal key behaviors
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_mget_by_key(memc_clone, "foo daddy", 9, keys, key_lengths, 1));
-    test_compare(query_id +1, memcached_query_id(memc_clone));
+ memcached_stat_free(NULL, memc_stat);
 
-    /* The following test should be moved to the end of this function when the
-       memcached server is updated to allow max size length of the keys in the
-       binary protocol
-    */
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_callback_set(memc_clone, MEMCACHED_CALLBACK_NAMESPACE, NULL));
+  return TEST_SUCCESS;
+}
 
-    libtest::vchar_t longkey;
-    {
-      libtest::vchar_t::iterator it= longkey.begin();
-      longkey.insert(it, MEMCACHED_MAX_KEY, 'a');
-    }
+test_return_t memcached_fetch_result_NOT_FOUND(memcached_st *memc)
+{
+  memcached_return_t rc;
 
-    test_compare(longkey.size(), size_t(MEMCACHED_MAX_KEY));
-    {
-      size_t string_length;
-      // We subtract 1
-      test_null(memcached_get(memc_clone, &longkey[0], longkey.size() -1, &string_length, &flags, &rc));
-      test_compare(MEMCACHED_NOTFOUND, rc);
-      test_zero(string_length);
-
-      test_null(memcached_get(memc_clone, &longkey[0], longkey.size(), &string_length, &flags, &rc));
-      test_compare(MEMCACHED_BAD_KEY_PROVIDED, rc);
-      test_zero(string_length);
-    }
-  }
+  const char *key= "not_found";
+  size_t key_length= test_literal_param_size("not_found");
 
-  /* Make sure zero length keys are marked as bad */
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_VERIFY_KEY, true));
-    size_t string_length;
-    char *string= memcached_get(memc_clone, key, 0,
-                                &string_length, &flags, &rc);
-    test_compare(MEMCACHED_BAD_KEY_PROVIDED, rc);
-    test_zero(string_length);
-    test_false(string);
-  }
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, &key, &key_length, 1));
 
-  memcached_free(memc_clone);
+  memcached_result_st *result= memcached_fetch_result(memc, NULL, &rc);
+  test_null(result);
+  test_compare(MEMCACHED_NOTFOUND, rc);
+
+  memcached_result_free(result);
 
   return TEST_SUCCESS;
 }
 
-#define READ_THROUGH_VALUE "set for me"
-static memcached_return_t read_through_trigger(memcached_st *, // memc
-                                               char *, // key
-                                               size_t, //  key_length,
-                                               memcached_result_st *result)
+/* We don't test the behavior itself, we test the switches */
+test_return_t behavior_test(memcached_st *memc)
 {
-  return memcached_result_set_value(result, READ_THROUGH_VALUE, strlen(READ_THROUGH_VALUE));
-}
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, 1);
+  test_compare(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NO_BLOCK));
 
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, 1);
+  test_compare(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY));
 
-test_return_t read_through(memcached_st *memc)
-{
-  memcached_trigger_key_fn cb= (memcached_trigger_key_fn)read_through_trigger;
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, MEMCACHED_HASH_MD5);
+  test_compare(uint64_t(MEMCACHED_HASH_MD5), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH));
 
-  size_t string_length;
-  uint32_t flags;
-  memcached_return_t rc;
-  char *string= memcached_get(memc,
-                              test_literal_param(__func__),
-                              &string_length, &flags, &rc);
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, 0);
+  test_zero(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NO_BLOCK));
 
-  test_compare(MEMCACHED_NOTFOUND, rc);
-  test_false(string_length);
-  test_false(string);
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, 0);
+  test_zero(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY));
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_GET_FAILURE, *(void **)&cb));
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, MEMCACHED_HASH_DEFAULT);
+  test_compare(uint64_t(MEMCACHED_HASH_DEFAULT), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH));
 
-  string= memcached_get(memc,
-                        test_literal_param(__func__),
-                        &string_length, &flags, &rc);
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, MEMCACHED_HASH_CRC);
+  test_compare(uint64_t(MEMCACHED_HASH_CRC), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH));
 
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_compare(sizeof(READ_THROUGH_VALUE) -1, string_length);
-  test_compare(0, string[sizeof(READ_THROUGH_VALUE) -1]);
-  test_strcmp(READ_THROUGH_VALUE, string);
-  free(string);
+  test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE));
 
-  string= memcached_get(memc,
-                        test_literal_param(__func__),
-                        &string_length, &flags, &rc);
+  test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE));
 
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_true(string);
-  test_compare(string_length, sizeof(READ_THROUGH_VALUE) -1);
-  test_true(string[sizeof(READ_THROUGH_VALUE) -1] == 0);
-  test_strcmp(READ_THROUGH_VALUE, string);
-  free(string);
+  uint64_t value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS);
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, value +1);
+  test_compare((value +1),  memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS));
 
   return TEST_SUCCESS;
 }
 
-test_return_t set_test2(memcached_st *memc)
+test_return_t MEMCACHED_BEHAVIOR_CORK_test(memcached_st *memc)
 {
-  for (uint32_t x= 0; x < 10; x++)
-  {
-    test_compare(return_value_based_on_buffering(memc),
-                 memcached_set(memc,
-                               test_literal_param("foo"),
-                               test_literal_param("train in the brain"),
-                               time_t(0), uint32_t(0)));
-  }
+  test_compare(MEMCACHED_DEPRECATED, 
+               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_CORK, true));
+
+  // Platform dependent
+#if 0
+  bool value= (bool)memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_CORK);
+  test_false(value);
+#endif
 
   return TEST_SUCCESS;
 }
 
-test_return_t set_test3(memcached_st *memc)
+
+test_return_t MEMCACHED_BEHAVIOR_TCP_KEEPALIVE_test(memcached_st *memc)
 {
-  size_t value_length= 8191;
+  memcached_return_t rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_KEEPALIVE, true);
+  test_true(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_NOT_SUPPORTED);
 
-  libtest::vchar_t value;
-  value.reserve(value_length);
-  for (uint32_t x= 0; x < value_length; x++)
+  bool value= (bool)memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_KEEPALIVE);
+
+  if (memcached_success(rc))
   {
-    value.push_back(char(x % 127));
+    test_true(value);
   }
-
-  /* The dump test relies on there being at least 32 items in memcached */
-  for (uint32_t x= 0; x < 32; x++)
+  else
   {
-    char key[16];
-
-    snprintf(key, sizeof(key), "foo%u", x);
-
-    uint64_t query_id= memcached_query_id(memc);
-    test_compare(return_value_based_on_buffering(memc),
-                 memcached_set(memc, key, strlen(key),
-                               &value[0], value.size(),
-                               time_t(0), uint32_t(0)));
-    test_compare(query_id +1, memcached_query_id(memc));
+    test_false(value);
   }
 
   return TEST_SUCCESS;
 }
 
-test_return_t mget_end(memcached_st *memc)
+
+test_return_t MEMCACHED_BEHAVIOR_TCP_KEEPIDLE_test(memcached_st *memc)
 {
-  const char *keys[]= { "foo", "foo2" };
-  size_t lengths[]= { 3, 4 };
-  const char *values[]= { "fjord", "41" };
+  memcached_return_t rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_KEEPIDLE, true);
+  test_true(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_NOT_SUPPORTED);
 
-  // Set foo and foo2
-  for (size_t x= 0; x < test_array_length(keys); x++)
+  bool value= (bool)memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_KEEPIDLE);
+
+  if (memcached_success(rc))
   {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc,
-                               keys[x], lengths[x],
-                               values[x], strlen(values[x]),
-                               time_t(0), uint32_t(0)));
+    test_true(value);
+  }
+  else
+  {
+    test_false(value);
   }
 
-  char *string;
-  size_t string_length;
-  uint32_t flags;
-
-  // retrieve both via mget
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc,
-                              keys, lengths,
-                              test_array_length(keys)));
+  return TEST_SUCCESS;
+}
 
-  char key[MEMCACHED_MAX_KEY];
-  size_t key_length;
-  memcached_return_t rc;
+/* Make sure we behave properly if server list has no values */
+test_return_t user_supplied_bug4(memcached_st *memc)
+{
+  const char *keys[]= {"fudge", "son", "food"};
+  size_t key_length[]= {5, 3, 4};
 
-  // this should get both
-  for (size_t x= 0; x < test_array_length(keys); x++)
-  {
-    string= memcached_fetch(memc, key, &key_length, &string_length,
-                            &flags, &rc);
-    test_compare(MEMCACHED_SUCCESS, rc);
-    int val = 0;
-    if (key_length == 4)
-    {
-      val= 1;
-    }
+  /* Here we free everything before running a bunch of mget tests */
+  memcached_servers_reset(memc);
 
-    test_compare(string_length, strlen(values[val]));
-    test_true(strncmp(values[val], string, string_length) == 0);
-    free(string);
-  }
 
-  // this should indicate end
-  string= memcached_fetch(memc, key, &key_length, &string_length, &flags, &rc);
-  test_compare(MEMCACHED_END, rc);
-  test_null(string);
-
-  // now get just one
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, lengths, 1));
-
-  string= memcached_fetch(memc, key, &key_length, &string_length, &flags, &rc);
-  test_compare(key_length, lengths[0]);
-  test_true(strncmp(keys[0], key, key_length) == 0);
-  test_compare(string_length, strlen(values[0]));
-  test_true(strncmp(values[0], string, string_length) == 0);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  free(string);
-
-  // this should indicate end
-  string= memcached_fetch(memc, key, &key_length, &string_length, &flags, &rc);
-  test_compare(MEMCACHED_END, rc);
-  test_null(string);
-
-  return TEST_SUCCESS;
-}
+  /* We need to empty the server before continueing test */
+  test_compare(MEMCACHED_NO_SERVERS,
+               memcached_flush(memc, 0));
 
-/* Do not copy the style of this code, I just access hosts to testthis function */
-test_return_t stats_servername_test(memcached_st *memc)
-{
-  memcached_stat_st memc_stat;
-  const memcached_instance_st * instance=
-    memcached_server_instance_by_position(memc, 0);
+  test_compare(MEMCACHED_NO_SERVERS,
+               memcached_mget(memc, keys, key_length, 3));
 
-  if (LIBMEMCACHED_WITH_SASL_SUPPORT and memcached_get_sasl_callbacks(memc))
   {
-    return TEST_SKIPPED;
+    unsigned int keys_returned;
+    memcached_return_t rc;
+    test_compare(TEST_SUCCESS, fetch_all_results(memc, keys_returned, rc));
+    test_compare(MEMCACHED_NOTFOUND, rc);
+    test_zero(keys_returned);
   }
 
-  test_compare(MEMCACHED_SUCCESS, memcached_stat_servername(&memc_stat, NULL,
-                                                            memcached_server_name(instance),
-                                                            memcached_server_port(instance)));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t increment_test(memcached_st *memc)
-{
-  uint64_t new_number;
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_set(memc, 
-                             test_literal_param("number"),
-                             test_literal_param("0"),
-                             (time_t)0, (uint32_t)0));
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_increment(memc, test_literal_param("number"), 1, &new_number));
-  test_compare(uint64_t(1), new_number);
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_increment(memc, test_literal_param("number"), 1, &new_number));
-  test_compare(uint64_t(2), new_number);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t __increment_with_initial_test(memcached_st *memc, uint64_t initial)
-{
-  uint64_t new_number;
-
-  test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
-
-  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL))
-  {
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_increment_with_initial(memc, test_literal_param("number"), 1, initial, 0, &new_number));
-    test_compare(new_number, initial);
-
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_increment_with_initial(memc, test_literal_param("number"), 1, initial, 0, &new_number));
-    test_compare(new_number, (initial +1));
-  }
-  else
+  for (uint32_t x= 0; x < 3; x++)
   {
-    test_compare(MEMCACHED_INVALID_ARGUMENTS, 
-                 memcached_increment_with_initial(memc, test_literal_param("number"), 1, initial, 0, &new_number));
+    test_compare(MEMCACHED_NO_SERVERS,
+                 memcached_set(memc, keys[x], key_length[x],
+                               keys[x], key_length[x],
+                               (time_t)50, (uint32_t)9));
   }
 
-  return TEST_SUCCESS;
-}
-
-test_return_t increment_with_initial_test(memcached_st *memc)
-{
-  return __increment_with_initial_test(memc, 0);
-}
-
-test_return_t increment_with_initial_999_test(memcached_st *memc)
-{
-  return __increment_with_initial_test(memc, 999);
-}
-
-test_return_t decrement_test(memcached_st *memc)
-{
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             test_literal_param("3"),
-                             time_t(0), uint32_t(0)));
-  
-  // Make sure we flush the value we just set
-  test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
-
-  uint64_t new_number;
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_decrement(memc,
-                                   test_literal_param(__func__),
-                                   1, &new_number));
-  test_compare(uint64_t(2), new_number);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_decrement(memc,
-                                   test_literal_param(__func__),
-                                   1, &new_number));
-  test_compare(uint64_t(1), new_number);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t __decrement_with_initial_test(memcached_st *memc, uint64_t initial)
-{
-  test_skip(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
-
-  uint64_t new_number;
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_decrement_with_initial(memc,
-                                                test_literal_param(__func__),
-                                                1, initial, 
-                                                0, &new_number));
-  test_compare(new_number, initial);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_decrement_with_initial(memc,
-                                                test_literal_param(__func__),
-                                                1, initial, 
-                                                0, &new_number));
-  test_compare(new_number, (initial - 1));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t decrement_with_initial_test(memcached_st *memc)
-{
-  return __decrement_with_initial_test(memc, 3);
-}
-
-test_return_t decrement_with_initial_999_test(memcached_st *memc)
-{
-  return __decrement_with_initial_test(memc, 999);
-}
-
-test_return_t increment_by_key_test(memcached_st *memc)
-{
-  const char *master_key= "foo";
-  const char *key= "number";
-  const char *value= "0";
-
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set_by_key(memc, master_key, strlen(master_key),
-                                    key, strlen(key),
-                                    value, strlen(value),
-                                    time_t(0), uint32_t(0)));
-  
-  // Make sure we flush the value we just set
-  test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
-
-  uint64_t new_number;
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_increment_by_key(memc, master_key, strlen(master_key),
-                                          key, strlen(key), 1, &new_number));
-  test_compare(uint64_t(1), new_number);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_increment_by_key(memc, master_key, strlen(master_key),
-                                          key, strlen(key), 1, &new_number));
-  test_compare(uint64_t(2), new_number);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t increment_with_initial_by_key_test(memcached_st *memc)
-{
-  uint64_t new_number;
-  const char *master_key= "foo";
-  const char *key= "number";
-  uint64_t initial= 0;
-
-  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL))
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_increment_with_initial_by_key(memc, master_key, strlen(master_key),
-                                                         key, strlen(key),
-                                                         1, initial, 0, &new_number));
-    test_compare(new_number, initial);
+  test_compare(MEMCACHED_NO_SERVERS, 
+               memcached_mget(memc, keys, key_length, 3));
 
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_increment_with_initial_by_key(memc, master_key, strlen(master_key),
-                                                         key, strlen(key),
-                                                         1, initial, 0, &new_number));
-    test_compare(new_number, (initial +1));
-  }
-  else
   {
-    test_compare(MEMCACHED_INVALID_ARGUMENTS,
-                 memcached_increment_with_initial_by_key(memc, master_key, strlen(master_key),
-                                                         key, strlen(key),
-                                                         1, initial, 0, &new_number));
+    char *return_value;
+    char return_key[MEMCACHED_MAX_KEY];
+    memcached_return_t rc;
+    size_t return_key_length;
+    size_t return_value_length;
+    uint32_t flags;
+    uint32_t x= 0;
+    while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
+                                          &return_value_length, &flags, &rc)))
+    {
+      test_true(return_value);
+      test_compare(MEMCACHED_SUCCESS, rc);
+      test_true(return_key_length == return_value_length);
+      test_memcmp(return_value, return_key, return_value_length);
+      free(return_value);
+      x++;
+    }
   }
 
   return TEST_SUCCESS;
 }
 
-test_return_t decrement_by_key_test(memcached_st *memc)
-{
-  uint64_t new_number;
-  const char *value= "3";
-
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set_by_key(memc,
-                                    test_literal_param("foo"),
-                                    test_literal_param("number"),
-                                    value, strlen(value),
-                                    (time_t)0, (uint32_t)0));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_decrement_by_key(memc,
-                                          test_literal_param("foo"),
-                                          test_literal_param("number"),
-                                          1, &new_number));
-  test_compare(uint64_t(2), new_number);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_decrement_by_key(memc,
-                                          test_literal_param("foo"),
-                                          test_literal_param("number"),
-                                          1, &new_number));
-  test_compare(uint64_t(1), new_number);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t decrement_with_initial_by_key_test(memcached_st *memc)
+#define VALUE_SIZE_BUG5 1048064
+test_return_t user_supplied_bug5(memcached_st *memc)
 {
-  test_skip(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  uint64_t new_number;
-  uint64_t initial= 3;
-
-  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL))
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_decrement_with_initial_by_key(memc,
-                                                         test_literal_param("foo"),
-                                                         test_literal_param("number"),
-                                                         1, initial, 0, &new_number));
-    test_compare(new_number, initial);
+  const char *keys[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
+  size_t key_length[]=  {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
+  char *value;
+  size_t value_length;
+  uint32_t flags;
+  char *insert_data= new (std::nothrow) char[VALUE_SIZE_BUG5];
 
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_decrement_with_initial_by_key(memc,
-                                                         test_literal_param("foo"),
-                                                         test_literal_param("number"),
-                                                         1, initial, 0, &new_number));
-    test_compare(new_number, (initial - 1));
-  }
-  else
+  for (uint32_t x= 0; x < VALUE_SIZE_BUG5; x++)
   {
-    test_compare(MEMCACHED_INVALID_ARGUMENTS,
-                 memcached_decrement_with_initial_by_key(memc,
-                                                         test_literal_param("foo"),
-                                                         test_literal_param("number"),
-                                                         1, initial, 0, &new_number));
+    insert_data[x]= (signed char)rand();
   }
 
-  return TEST_SUCCESS;
-}
-test_return_t binary_increment_with_prefix_test(memcached_st *memc)
-{
-  test_skip(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  test_compare(MEMCACHED_SUCCESS, memcached_callback_set(memc, MEMCACHED_CALLBACK_PREFIX_KEY, (void *)"namespace:"));
-
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set(memc,
-                             test_literal_param("number"),
-                             test_literal_param("0"),
-                             (time_t)0, (uint32_t)0));
-
-  uint64_t new_number;
-  test_compare(MEMCACHED_SUCCESS, memcached_increment(memc, 
-                                                      test_literal_param("number"), 
-                                                      1, &new_number));
-  test_compare(uint64_t(1), new_number);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_increment(memc,
-                                                      test_literal_param("number"),
-                                                      1, &new_number));
-  test_compare(uint64_t(2), new_number);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t quit_test(memcached_st *memc)
-{
-  const char *value= "sanford and sun";
-
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             value, strlen(value),
-                             time_t(10), uint32_t(3)));
-  memcached_quit(memc);
-
-  test_compare(return_value_based_on_buffering(memc),
-               memcached_set(memc,
-                             test_literal_param(__func__),
-                             value, strlen(value),
-                             time_t(50), uint32_t(9)));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t mget_result_test(memcached_st *memc)
-{
-  const char *keys[]= {"fudge", "son", "food"};
-  size_t key_length[]= {5, 3, 4};
-
-  memcached_result_st results_obj;
-  memcached_result_st *results= memcached_result_create(memc, &results_obj);
-  test_true(results);
-  test_true(&results_obj == results);
-
-  /* We need to empty the server before continueing test */
   test_compare(MEMCACHED_SUCCESS,
                memcached_flush(memc, 0));
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
   memcached_return_t rc;
-  while ((results= memcached_fetch_result(memc, &results_obj, &rc)))
-  {
-    test_true(results);
-  }
+  test_null(memcached_get(memc, keys[0], key_length[0], &value_length, &flags, &rc));
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, keys, key_length, 4));
 
-  while ((results= memcached_fetch_result(memc, &results_obj, &rc))) { test_true(false); /* We should never see a value returned */ };
-  test_false(results);
+  unsigned int count;
+  test_compare(TEST_SUCCESS, fetch_all_results(memc, count, rc));
   test_compare(MEMCACHED_NOTFOUND, rc);
+  test_zero(count);
 
-  for (uint32_t x= 0; x < 3; x++)
-  {
-    rc= memcached_set(memc, keys[x], key_length[x],
-                      keys[x], key_length[x],
-                      (time_t)50, (uint32_t)9);
-    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
-  }
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  while ((results= memcached_fetch_result(memc, &results_obj, &rc)))
+  for (uint32_t x= 0; x < 4; x++)
   {
-    test_true(results);
-    test_true(&results_obj == results);
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_memcmp(memcached_result_key_value(results),
-                memcached_result_value(results),
-                memcached_result_length(results));
-    test_compare(memcached_result_key_length(results), memcached_result_length(results));
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_set(memc, keys[x], key_length[x],
+                               insert_data, VALUE_SIZE_BUG5,
+                               (time_t)0, (uint32_t)0));
   }
 
-  memcached_result_free(&results_obj);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t mget_result_alloc_test(memcached_st *memc)
-{
-  const char *keys[]= {"fudge", "son", "food"};
-  size_t key_length[]= {5, 3, 4};
-
-  memcached_result_st *results;
-
-  /* We need to empty the server before continueing test */
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_flush(memc, 0));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  memcached_return_t rc;
-  while ((results= memcached_fetch_result(memc, NULL, &rc)))
-  {
-    test_true(results);
-  }
-  test_false(results);
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  for (uint32_t x= 0; x < 3; x++)
-  {
-    rc= memcached_set(memc, keys[x], key_length[x],
-                      keys[x], key_length[x],
-                      (time_t)50, (uint32_t)9);
-    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
-  }
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  uint32_t x= 0;
-  while ((results= memcached_fetch_result(memc, NULL, &rc)))
-  {
-    test_true(results);
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(memcached_result_key_length(results), memcached_result_length(results));
-    test_memcmp(memcached_result_key_value(results),
-                memcached_result_value(results),
-                memcached_result_length(results));
-    memcached_result_free(results);
-    x++;
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t mget_result_function(memcached_st *memc)
-{
-  const char *keys[]= {"fudge", "son", "food"};
-  size_t key_length[]= {5, 3, 4};
-  size_t counter;
-  memcached_execute_fn callbacks[1];
-
-  for (uint32_t x= 0; x < 3; x++)
-  {
-    test_compare(return_value_based_on_buffering(memc), 
-                 memcached_set(memc, keys[x], key_length[x],
-                               keys[x], key_length[x],
-                               time_t(50), uint32_t(9)));
-  }
-  test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
-  memcached_quit(memc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  callbacks[0]= &callback_counter;
-  counter= 0;
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-
-  test_compare(size_t(3), counter);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t mget_test(memcached_st *memc)
-{
-  const char *keys[]= {"fudge", "son", "food"};
-  size_t key_length[]= {5, 3, 4};
-
-  char return_key[MEMCACHED_MAX_KEY];
-  size_t return_key_length;
-  char *return_value;
-  size_t return_value_length;
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  uint32_t flags;
-  memcached_return_t rc;
-  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
-                                        &return_value_length, &flags, &rc)))
-  {
-    test_true(return_value);
-  }
-  test_false(return_value);
-  test_zero(return_value_length);
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  for (uint32_t x= 0; x < 3; x++)
-  {
-    rc= memcached_set(memc, keys[x], key_length[x],
-                      keys[x], key_length[x],
-                      (time_t)50, (uint32_t)9);
-    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
-  }
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  uint32_t x= 0;
-  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
-                                        &return_value_length, &flags, &rc)))
-  {
-    test_true(return_value);
-    test_compare(MEMCACHED_SUCCESS, rc);
-    if (not memc->_namespace)
-    {
-      test_compare(return_key_length, return_value_length);
-      test_memcmp(return_value, return_key, return_value_length);
-    }
-    free(return_value);
-    x++;
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t mget_execute(memcached_st *original_memc)
-{
-  test_skip(true, memcached_behavior_get(original_memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  memcached_st *memc= create_single_instance_memcached(original_memc, "--BINARY-PROTOCOL");
-  test_true(memc);
-
-  keys_st keys(20480);
-
-  /* First add all of the items.. */
-  char blob[1024] = {0};
-
-  for (size_t x= 0; x < keys.size(); ++x)
-  {
-    uint64_t query_id= memcached_query_id(memc);
-    memcached_return_t rc= memcached_add(memc,
-                                         keys.key_at(x), keys.length_at(x),
-                                         blob, sizeof(blob),
-                                         0, 0);
-    ASSERT_TRUE_(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED, "Returned %s", memcached_strerror(NULL, rc));
-    test_compare(query_id +1, memcached_query_id(memc));
-  }
-
-  /* Try to get all of them with a large multiget */
-  size_t counter= 0;
-  memcached_execute_fn callbacks[]= { &callback_counter };
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_mget_execute(memc,
-                                      keys.keys_ptr(), keys.lengths_ptr(),
-                                      keys.size(), callbacks, &counter, 1));
-
-  {
-    uint64_t query_id= memcached_query_id(memc);
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-    test_compare(query_id, memcached_query_id(memc));
-
-    /* Verify that we got all of the items */
-    test_compare(keys.size(), counter);
-  }
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH_TEST(memcached_st *original_memc)
-{
-  test_skip(true, memcached_behavior_get(original_memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL));
-
-  memcached_st *memc= create_single_instance_memcached(original_memc, "--BINARY-PROTOCOL");
-  test_true(memc);
-
-  test_skip(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_IO_KEY_PREFETCH, 8));
-
-  keys_st keys(20480);
-
-  /* First add all of the items.. */
-  char blob[1024] = {0};
-
-  for (size_t x= 0; x < keys.size(); ++x)
-  {
-    uint64_t query_id= memcached_query_id(memc);
-    memcached_return_t rc= memcached_add(memc,
-                                         keys.key_at(x), keys.length_at(x),
-                                         blob, sizeof(blob),
-                                         0, 0);
-    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
-    test_compare(query_id +1, memcached_query_id(memc));
-  }
-
-  /* Try to get all of them with a large multiget */
-  size_t counter= 0;
-  memcached_execute_fn callbacks[]= { &callback_counter };
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_mget_execute(memc,
-                                      keys.keys_ptr(), keys.lengths_ptr(),
-                                      keys.size(), callbacks, &counter, 1));
-
-  {
-    uint64_t query_id= memcached_query_id(memc);
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-    test_compare(query_id, memcached_query_id(memc));
-
-    /* Verify that we got all of the items */
-    test_compare(keys.size(), counter);
-  }
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-#define REGRESSION_BINARY_VS_BLOCK_COUNT  20480
-static pairs_st *global_pairs= NULL;
-
-test_return_t key_setup(memcached_st *memc)
-{
-  test_skip(TEST_SUCCESS, pre_binary(memc));
-
-  global_pairs= pairs_generate(REGRESSION_BINARY_VS_BLOCK_COUNT, 0);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t key_teardown(memcached_st *)
-{
-  pairs_free(global_pairs);
-  global_pairs= NULL;
-
-  return TEST_SUCCESS;
-}
-
-test_return_t block_add_regression(memcached_st *memc)
-{
-  /* First add all of the items.. */
-  for (ptrdiff_t x= 0; x < REGRESSION_BINARY_VS_BLOCK_COUNT; ++x)
-  {
-    libtest::vchar_t blob;
-    libtest::vchar::make(blob, 1024);
-
-    memcached_return_t rc= memcached_add_by_key(memc,
-                                                test_literal_param("bob"),
-                                                global_pairs[x].key, global_pairs[x].key_length,
-                                                &blob[0], blob.size(),
-                                                time_t(0), uint32_t(0));
-    if (rc == MEMCACHED_MEMORY_ALLOCATION_FAILURE)
-    {
-      Error << memcached_last_error_message(memc);
-      return TEST_SKIPPED;
-    }
-    test_compare(MEMCACHED_SUCCESS,*memc);
-    test_compare(MEMCACHED_SUCCESS, rc);
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t binary_add_regression(memcached_st *memc)
-{
-  test_skip(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, true));
-  return block_add_regression(memc);
-}
-
-test_return_t get_stats_keys(memcached_st *memc)
-{
- char **stat_list;
- char **ptr;
- memcached_stat_st memc_stat;
- memcached_return_t rc;
-
- stat_list= memcached_stat_get_keys(memc, &memc_stat, &rc);
- test_compare(MEMCACHED_SUCCESS, rc);
- for (ptr= stat_list; *ptr; ptr++)
-   test_true(*ptr);
-
- free(stat_list);
-
- return TEST_SUCCESS;
-}
-
-test_return_t version_string_test(memcached_st *)
-{
-  test_strcmp(LIBMEMCACHED_VERSION_STRING, memcached_lib_version());
-
-  return TEST_SUCCESS;
-}
-
-test_return_t get_stats(memcached_st *memc)
-{
- memcached_return_t rc;
-
- memcached_stat_st *memc_stat= memcached_stat(memc, NULL, &rc);
- test_compare(MEMCACHED_SUCCESS, rc);
- test_true(memc_stat);
-
- for (uint32_t x= 0; x < memcached_server_count(memc); x++)
- {
-   char **stat_list= memcached_stat_get_keys(memc, memc_stat+x, &rc);
-   test_compare(MEMCACHED_SUCCESS, rc);
-   for (char **ptr= stat_list; *ptr; ptr++) {};
-
-   free(stat_list);
- }
-
- memcached_stat_free(NULL, memc_stat);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t add_host_test(memcached_st *memc)
-{
-  char servername[]= "0.example.com";
-
-  memcached_return_t rc;
-  memcached_server_st *servers= memcached_server_list_append_with_weight(NULL, servername, 400, 0, &rc);
-  test_compare(1U, memcached_server_list_count(servers));
-
-  for (unsigned int x= 2; x < 20; x++)
-  {
-    char buffer[SMALL_STRING_LEN];
-
-    snprintf(buffer, SMALL_STRING_LEN, "%u.example.com", 400+x);
-    servers= memcached_server_list_append_with_weight(servers, buffer, 401, 0,
-                                     &rc);
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(x, memcached_server_list_count(servers));
-  }
-
-  test_compare(MEMCACHED_SUCCESS, memcached_server_push(memc, servers));
-  test_compare(MEMCACHED_SUCCESS, memcached_server_push(memc, servers));
-
-  memcached_server_list_free(servers);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t regression_1048945_TEST(memcached_st*)
-{
-  memcached_return status;
-
-  memcached_server_st* list= memcached_server_list_append_with_weight(NULL, "a", 11211, 0, &status);
-  test_compare(status, MEMCACHED_SUCCESS);
-
-  list= memcached_server_list_append_with_weight(list, "b", 11211, 0, &status);
-  test_compare(status, MEMCACHED_SUCCESS);
-
-  list= memcached_server_list_append_with_weight(list, "c", 11211, 0, &status);
-  test_compare(status, MEMCACHED_SUCCESS);
-
-  memcached_st* memc= memcached_create(NULL);
-
-  status= memcached_server_push(memc, list);
-  memcached_server_list_free(list);
-  test_compare(status, MEMCACHED_SUCCESS);
-
-  const memcached_instance_st * server= memcached_server_by_key(memc, test_literal_param(__func__), &status);
-  test_true(server);
-  test_compare(status, MEMCACHED_SUCCESS);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t memcached_fetch_result_NOT_FOUND(memcached_st *memc)
-{
-  memcached_return_t rc;
-
-  const char *key= "not_found";
-  size_t key_length= test_literal_param_size("not_found");
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, &key, &key_length, 1));
-
-  memcached_result_st *result= memcached_fetch_result(memc, NULL, &rc);
-  test_null(result);
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  memcached_result_free(result);
-
-  return TEST_SUCCESS;
-}
-
-static memcached_return_t  clone_test_callback(memcached_st *, memcached_st *)
-{
-  return MEMCACHED_SUCCESS;
-}
-
-static memcached_return_t  cleanup_test_callback(memcached_st *)
-{
-  return MEMCACHED_SUCCESS;
-}
-
-test_return_t callback_test(memcached_st *memc)
-{
-  /* Test User Data */
-  {
-    int x= 5;
-    int *test_ptr;
-    memcached_return_t rc;
-
-    test_compare(MEMCACHED_SUCCESS, memcached_callback_set(memc, MEMCACHED_CALLBACK_USER_DATA, &x));
-    test_ptr= (int *)memcached_callback_get(memc, MEMCACHED_CALLBACK_USER_DATA, &rc);
-    test_true(*test_ptr == x);
-  }
-
-  /* Test Clone Callback */
-  {
-    memcached_clone_fn clone_cb= (memcached_clone_fn)clone_test_callback;
-    void *clone_cb_ptr= *(void **)&clone_cb;
-    void *temp_function= NULL;
-
-    test_compare(MEMCACHED_SUCCESS, memcached_callback_set(memc, MEMCACHED_CALLBACK_CLONE_FUNCTION, clone_cb_ptr));
-    memcached_return_t rc;
-    temp_function= memcached_callback_get(memc, MEMCACHED_CALLBACK_CLONE_FUNCTION, &rc);
-    test_true(temp_function == clone_cb_ptr);
-    test_compare(MEMCACHED_SUCCESS, rc);
-  }
-
-  /* Test Cleanup Callback */
-  {
-    memcached_cleanup_fn cleanup_cb= (memcached_cleanup_fn)cleanup_test_callback;
-    void *cleanup_cb_ptr= *(void **)&cleanup_cb;
-    void *temp_function= NULL;
-    memcached_return_t rc;
-
-    test_compare(MEMCACHED_SUCCESS, memcached_callback_set(memc, MEMCACHED_CALLBACK_CLONE_FUNCTION, cleanup_cb_ptr));
-    temp_function= memcached_callback_get(memc, MEMCACHED_CALLBACK_CLONE_FUNCTION, &rc);
-    test_true(temp_function == cleanup_cb_ptr);
-  }
-
-  return TEST_SUCCESS;
-}
-
-/* We don't test the behavior itself, we test the switches */
-test_return_t behavior_test(memcached_st *memc)
-{
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, 1);
-  test_compare(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NO_BLOCK));
-
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, 1);
-  test_compare(true, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY));
-
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, MEMCACHED_HASH_MD5);
-  test_compare(uint64_t(MEMCACHED_HASH_MD5), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH));
-
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, 0);
-  test_zero(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NO_BLOCK));
-
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, 0);
-  test_zero(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY));
-
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, MEMCACHED_HASH_DEFAULT);
-  test_compare(uint64_t(MEMCACHED_HASH_DEFAULT), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH));
-
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, MEMCACHED_HASH_CRC);
-  test_compare(uint64_t(MEMCACHED_HASH_CRC), memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH));
-
-  test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_SEND_SIZE));
-
-  test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE));
-
-  uint64_t value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS);
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, value +1);
-  test_compare((value +1),  memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t MEMCACHED_BEHAVIOR_CORK_test(memcached_st *memc)
-{
-  test_compare(MEMCACHED_DEPRECATED, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_CORK, true));
-
-  // Platform dependent
-#if 0
-  bool value= (bool)memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_CORK);
-  test_false(value);
-#endif
-
-  return TEST_SUCCESS;
-}
-
-
-test_return_t MEMCACHED_BEHAVIOR_TCP_KEEPALIVE_test(memcached_st *memc)
-{
-  memcached_return_t rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_KEEPALIVE, true);
-  test_true(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_NOT_SUPPORTED);
-
-  bool value= (bool)memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_KEEPALIVE);
-
-  if (memcached_success(rc))
-  {
-    test_true(value);
-  }
-  else
-  {
-    test_false(value);
-  }
-
-  return TEST_SUCCESS;
-}
-
-
-test_return_t MEMCACHED_BEHAVIOR_TCP_KEEPIDLE_test(memcached_st *memc)
-{
-  memcached_return_t rc= memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_KEEPIDLE, true);
-  test_true(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_NOT_SUPPORTED);
-
-  bool value= (bool)memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_TCP_KEEPIDLE);
-
-  if (memcached_success(rc))
-  {
-    test_true(value);
-  }
-  else
-  {
-    test_false(value);
-  }
-
-  return TEST_SUCCESS;
-}
-
-/* Make sure we behave properly if server list has no values */
-test_return_t user_supplied_bug4(memcached_st *memc)
-{
-  const char *keys[]= {"fudge", "son", "food"};
-  size_t key_length[]= {5, 3, 4};
-
-  /* Here we free everything before running a bunch of mget tests */
-  memcached_servers_reset(memc);
-
-
-  /* We need to empty the server before continueing test */
-  test_compare(MEMCACHED_NO_SERVERS,
-               memcached_flush(memc, 0));
-
-  test_compare(MEMCACHED_NO_SERVERS,
-               memcached_mget(memc, keys, key_length, 3));
-
-  {
-    unsigned int keys_returned;
-    memcached_return_t rc;
-    test_compare(TEST_SUCCESS, fetch_all_results(memc, keys_returned, rc));
-    test_compare(MEMCACHED_NOTFOUND, rc);
-    test_zero(keys_returned);
-  }
-
-  for (uint32_t x= 0; x < 3; x++)
-  {
-    test_compare(MEMCACHED_NO_SERVERS,
-                 memcached_set(memc, keys[x], key_length[x],
-                               keys[x], key_length[x],
-                               (time_t)50, (uint32_t)9));
-  }
-
-  test_compare(MEMCACHED_NO_SERVERS, 
-               memcached_mget(memc, keys, key_length, 3));
-
-  {
-    char *return_value;
-    char return_key[MEMCACHED_MAX_KEY];
-    memcached_return_t rc;
-    size_t return_key_length;
-    size_t return_value_length;
-    uint32_t flags;
-    uint32_t x= 0;
-    while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
-                                          &return_value_length, &flags, &rc)))
-    {
-      test_true(return_value);
-      test_compare(MEMCACHED_SUCCESS, rc);
-      test_true(return_key_length == return_value_length);
-      test_memcmp(return_value, return_key, return_value_length);
-      free(return_value);
-      x++;
-    }
-  }
-
-  return TEST_SUCCESS;
-}
-
-#define VALUE_SIZE_BUG5 1048064
-test_return_t user_supplied_bug5(memcached_st *memc)
-{
-  const char *keys[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
-  size_t key_length[]=  {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
-  char *value;
-  size_t value_length;
-  uint32_t flags;
-  char *insert_data= new (std::nothrow) char[VALUE_SIZE_BUG5];
-
-  for (uint32_t x= 0; x < VALUE_SIZE_BUG5; x++)
-  {
-    insert_data[x]= (signed char)rand();
-  }
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_flush(memc, 0));
-
-  memcached_return_t rc;
-  test_null(memcached_get(memc, keys[0], key_length[0], &value_length, &flags, &rc));
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 4));
-
-  unsigned int count;
-  test_compare(TEST_SUCCESS, fetch_all_results(memc, count, rc));
-  test_compare(MEMCACHED_NOTFOUND, rc);
-  test_zero(count);
-
-  for (uint32_t x= 0; x < 4; x++)
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, keys[x], key_length[x],
-                               insert_data, VALUE_SIZE_BUG5,
-                               (time_t)0, (uint32_t)0));
-  }
-
-  for (uint32_t x= 0; x < 10; x++)
-  {
-    value= memcached_get(memc, keys[0], key_length[0],
-                         &value_length, &flags, &rc);
-    test_compare(rc, MEMCACHED_SUCCESS);
-    test_true(value);
-    ::free(value);
-
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_mget(memc, keys, key_length, 4));
-
-    test_compare(TEST_SUCCESS, fetch_all_results(memc, count));
-    test_compare(4U, count);
-  }
-  delete [] insert_data;
-
-  return TEST_SUCCESS;
-}
-
-test_return_t user_supplied_bug6(memcached_st *memc)
-{
-  const char *keys[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
-  size_t key_length[]=  {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
-  char return_key[MEMCACHED_MAX_KEY];
-  size_t return_key_length;
-  char *value;
-  size_t value_length;
-  uint32_t flags;
-  char *insert_data= new (std::nothrow) char[VALUE_SIZE_BUG5];
-
-  for (uint32_t x= 0; x < VALUE_SIZE_BUG5; x++)
-  {
-    insert_data[x]= (signed char)rand();
-  }
-
-  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc, 0));
-
-  test_compare(TEST_SUCCESS, confirm_keys_dont_exist(memc, keys, test_array_length(keys)));
-
-  // We will now confirm that memcached_mget() returns success, but we will
-  // then check to make sure that no actual keys are returned.
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, keys, key_length, 4));
-
-  memcached_return_t rc;
-  uint32_t count= 0;
-  while ((value= memcached_fetch(memc, return_key, &return_key_length,
-                                 &value_length, &flags, &rc)))
-  {
-    count++;
-  }
-  test_zero(count);
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  for (uint32_t x= 0; x < test_array_length(keys); x++)
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, keys[x], key_length[x],
-                               insert_data, VALUE_SIZE_BUG5,
-                               (time_t)0, (uint32_t)0));
-  }
-  test_compare(TEST_SUCCESS, confirm_keys_exist(memc, keys, test_array_length(keys)));
-
-  for (uint32_t x= 0; x < 2; x++)
-  {
-    value= memcached_get(memc, keys[0], key_length[0],
-                         &value_length, &flags, &rc);
-    test_true(value);
-    free(value);
-
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_mget(memc, keys, key_length, 4));
-    /* We test for purge of partial complete fetches */
-    for (count= 3; count; count--)
-    {
-      value= memcached_fetch(memc, return_key, &return_key_length,
-                             &value_length, &flags, &rc);
-      test_compare(MEMCACHED_SUCCESS, rc);
-      test_memcmp(value, insert_data, value_length);
-      test_true(value_length);
-      free(value);
-    }
-  }
-  delete [] insert_data;
-
-  return TEST_SUCCESS;
-}
-
-test_return_t user_supplied_bug8(memcached_st *)
-{
-  memcached_return_t rc;
-  memcached_st *mine;
-  memcached_st *memc_clone;
-
-  memcached_server_st *servers;
-  const char *server_list= "memcache1.memcache.bk.sapo.pt:11211, memcache1.memcache.bk.sapo.pt:11212, memcache1.memcache.bk.sapo.pt:11213, memcache1.memcache.bk.sapo.pt:11214, memcache2.memcache.bk.sapo.pt:11211, memcache2.memcache.bk.sapo.pt:11212, memcache2.memcache.bk.sapo.pt:11213, memcache2.memcache.bk.sapo.pt:11214";
-
-  servers= memcached_servers_parse(server_list);
-  test_true(servers);
-
-  mine= memcached_create(NULL);
-  rc= memcached_server_push(mine, servers);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  memcached_server_list_free(servers);
-
-  test_true(mine);
-  memc_clone= memcached_clone(NULL, mine);
-
-  memcached_quit(mine);
-  memcached_quit(memc_clone);
-
-
-  memcached_free(mine);
-  memcached_free(memc_clone);
-
-  return TEST_SUCCESS;
-}
-
-/* Test flag store/retrieve */
-test_return_t user_supplied_bug7(memcached_st *memc)
-{
-  char *insert_data= new (std::nothrow) char[VALUE_SIZE_BUG5];
-  test_true(insert_data);
-
-  for (size_t x= 0; x < VALUE_SIZE_BUG5; x++)
-  {
-    insert_data[x]= (signed char)rand();
-  }
-
-  memcached_flush(memc, 0);
-
-  const char *keys= "036790384900";
-  size_t key_length=  strlen(keys);
-  test_compare(MEMCACHED_SUCCESS, memcached_set(memc, keys, key_length,
-                                                insert_data, VALUE_SIZE_BUG5,
-                                                time_t(0), 245U));
-
-  memcached_return_t rc;
-  size_t value_length;
-  uint32_t flags= 0;
-  char *value= memcached_get(memc, keys, key_length,
-                             &value_length, &flags, &rc);
-  test_compare(245U, flags);
-  test_true(value);
-  free(value);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_mget(memc, &keys, &key_length, 1));
-
-  char return_key[MEMCACHED_MAX_KEY];
-  size_t return_key_length;
-  flags= 0;
-  value= memcached_fetch(memc, return_key, &return_key_length,
-                         &value_length, &flags, &rc);
-  test_compare(uint32_t(245), flags);
-  test_true(value);
-  free(value);
-  delete [] insert_data;
-
-
-  return TEST_SUCCESS;
-}
-
-test_return_t user_supplied_bug9(memcached_st *memc)
-{
-  const char *keys[]= {"UDATA:edevil@sapo.pt", "fudge&*@#", "for^#@&$not"};
-  size_t key_length[3];
-  uint32_t flags;
-  unsigned count= 0;
-
-  char return_key[MEMCACHED_MAX_KEY];
-  size_t return_key_length;
-  char *return_value;
-  size_t return_value_length;
-
-
-  key_length[0]= strlen("UDATA:edevil@sapo.pt");
-  key_length[1]= strlen("fudge&*@#");
-  key_length[2]= strlen("for^#@&$not");
-
-
-  for (unsigned int x= 0; x < 3; x++)
-  {
-    memcached_return_t rc= memcached_set(memc, keys[x], key_length[x],
-                                         keys[x], key_length[x],
-                                         (time_t)50, (uint32_t)9);
-    test_compare(MEMCACHED_SUCCESS, rc);
-  }
-
-  memcached_return_t rc= memcached_mget(memc, keys, key_length, 3);
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  /* We need to empty the server before continueing test */
-  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
-                                        &return_value_length, &flags, &rc)) != NULL)
-  {
-    test_true(return_value);
-    free(return_value);
-    count++;
-  }
-  test_compare(3U, count);
-
-  return TEST_SUCCESS;
-}
-
-/* We are testing with aggressive timeout to get failures */
-test_return_t user_supplied_bug10(memcached_st *memc)
-{
-  test_skip(memc->servers[0].type, MEMCACHED_CONNECTION_TCP);
-
-  size_t value_length= 512;
-  unsigned int set= 1;
-  memcached_st *mclone= memcached_clone(NULL, memc);
-
-  memcached_behavior_set(mclone, MEMCACHED_BEHAVIOR_NO_BLOCK, set);
-  memcached_behavior_set(mclone, MEMCACHED_BEHAVIOR_TCP_NODELAY, set);
-  memcached_behavior_set(mclone, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, uint64_t(0));
-
-  libtest::vchar_t value;
-  value.reserve(value_length);
-  for (uint32_t x= 0; x < value_length; x++)
-  {
-    value.push_back(char(x % 127));
-  }
-
-  for (unsigned int x= 1; x <= 100000; ++x)
-  {
-    memcached_return_t rc= memcached_set(mclone, 
-                                         test_literal_param("foo"),
-                                         &value[0], value.size(),
-                                         0, 0);
-
-    test_true((rc == MEMCACHED_SUCCESS or rc == MEMCACHED_WRITE_FAILURE or rc == MEMCACHED_BUFFERED or rc == MEMCACHED_TIMEOUT or rc == MEMCACHED_CONNECTION_FAILURE 
-               or rc == MEMCACHED_SERVER_TEMPORARILY_DISABLED));
-
-    if (rc == MEMCACHED_WRITE_FAILURE or rc == MEMCACHED_TIMEOUT)
-    {
-      x--;
-    }
-  }
-
-  memcached_free(mclone);
-
-  return TEST_SUCCESS;
-}
-
-/*
-  We are looking failures in the async protocol
-*/
-test_return_t user_supplied_bug11(memcached_st *memc)
-{
-  (void)memc;
-#ifndef __APPLE__
-  test::Memc mclone(memc);
-
-  memcached_behavior_set(&mclone, MEMCACHED_BEHAVIOR_NO_BLOCK, true);
-  memcached_behavior_set(&mclone, MEMCACHED_BEHAVIOR_TCP_NODELAY, true);
-  memcached_behavior_set(&mclone, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, size_t(-1));
-
-  test_compare(-1, int32_t(memcached_behavior_get(&mclone, MEMCACHED_BEHAVIOR_POLL_TIMEOUT)));
-
-  libtest::vchar_t value;
-  value.reserve(512);
-  for (unsigned int x= 0; x < 512; x++)
-  {
-    value.push_back(char(x % 127));
-  }
-
-  for (unsigned int x= 1; x <= 100000; ++x)
-  {
-    memcached_return_t rc= memcached_set(&mclone, test_literal_param("foo"), &value[0], value.size(), 0, 0);
-    (void)rc;
-  }
-
-#endif
-
-  return TEST_SUCCESS;
-}
-
-/*
-  Bug found where incr was not returning MEMCACHED_NOTFOUND when object did not exist.
-*/
-test_return_t user_supplied_bug12(memcached_st *memc)
-{
-  memcached_return_t rc;
-  uint32_t flags;
-  size_t value_length;
-  char *value;
-  uint64_t number_value;
-
-  value= memcached_get(memc, "autoincrement", strlen("autoincrement"),
-                       &value_length, &flags, &rc);
-  test_null(value);
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  rc= memcached_increment(memc, "autoincrement", strlen("autoincrement"),
-                          1, &number_value);
-  test_null(value);
-  /* The binary protocol will set the key if it doesn't exist */
-  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) == 1)
-  {
-    test_compare(MEMCACHED_SUCCESS, rc);
-  }
-  else
-  {
-    test_compare(MEMCACHED_NOTFOUND, rc);
-  }
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc, "autoincrement", strlen("autoincrement"), "1", 1, 0, 0));
-
-  value= memcached_get(memc, "autoincrement", strlen("autoincrement"), &value_length, &flags, &rc);
-  test_true(value);
-  free(value);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_increment(memc, "autoincrement", strlen("autoincrement"), 1, &number_value));
-  test_compare(2UL, number_value);
-
-  return TEST_SUCCESS;
-}
-
-/*
-  Bug found where command total one more than MEMCACHED_MAX_BUFFER
-  set key34567890 0 0 8169 \r\n is sent followed by buffer of size 8169, followed by 8169
-*/
-test_return_t user_supplied_bug13(memcached_st *memc)
-{
-  char key[] = "key34567890";
-
-  char commandFirst[]= "set key34567890 0 0 ";
-  char commandLast[] = " \r\n"; /* first line of command sent to server */
-  size_t commandLength;
-
-  commandLength = strlen(commandFirst) + strlen(commandLast) + 4; /* 4 is number of characters in size, probably 8196 */
-
-  size_t overflowSize = MEMCACHED_MAX_BUFFER - commandLength;
-
-  for (size_t testSize= overflowSize - 1; testSize < overflowSize + 1; testSize++)
-  {
-    char *overflow= new (std::nothrow) char[testSize];
-    test_true(overflow);
-
-    memset(overflow, 'x', testSize);
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, key, strlen(key),
-                               overflow, testSize, 0, 0));
-    delete [] overflow;
-  }
-
-  return TEST_SUCCESS;
-}
-
-
-/*
-  Test values of many different sizes
-  Bug found where command total one more than MEMCACHED_MAX_BUFFER
-  set key34567890 0 0 8169 \r\n
-  is sent followed by buffer of size 8169, followed by 8169
-*/
-test_return_t user_supplied_bug14(memcached_st *memc)
-{
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, true);
-
-  libtest::vchar_t value;
-  value.reserve(18000);
-  for (ptrdiff_t x= 0; x < 18000; x++)
-  {
-    value.push_back((char) (x % 127));
-  }
-
-  for (size_t current_length= 1; current_length < value.size(); current_length++)
-  {
-    memcached_return_t rc= memcached_set(memc, test_literal_param("foo"),
-                                         &value[0], current_length,
-                                         (time_t)0, (uint32_t)0);
-    ASSERT_TRUE_(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED, "Instead got %s", memcached_strerror(NULL, rc));
-
-    size_t string_length;
-    uint32_t flags;
-    char *string= memcached_get(memc, test_literal_param("foo"),
-                                &string_length, &flags, &rc);
-
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(string_length, current_length);
-    char buffer[1024];
-    snprintf(buffer, sizeof(buffer), "%u", uint32_t(string_length));
-    test_memcmp(string, &value[0], string_length);
-
-    free(string);
-  }
-
-  return TEST_SUCCESS;
-}
-
-/*
-  Look for zero length value problems
-*/
-test_return_t user_supplied_bug15(memcached_st *memc)
-{
-  for (uint32_t x= 0; x < 2; x++)
-  {
-    memcached_return_t rc= memcached_set(memc, test_literal_param("mykey"),
-                                         NULL, 0,
-                                         (time_t)0, (uint32_t)0);
-
-    test_compare(MEMCACHED_SUCCESS, rc);
-
-    size_t length;
-    uint32_t flags;
-    char *value= memcached_get(memc, test_literal_param("mykey"),
-                               &length, &flags, &rc);
-
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_false(value);
-    test_zero(length);
-    test_zero(flags);
-
-    value= memcached_get(memc, test_literal_param("mykey"),
-                         &length, &flags, &rc);
-
-    test_compare(MEMCACHED_SUCCESS, rc);
-    test_null(value);
-    test_zero(length);
-    test_zero(flags);
-  }
-
-  return TEST_SUCCESS;
-}
-
-/* Check the return sizes on FLAGS to make sure it stores 32bit unsigned values correctly */
-test_return_t user_supplied_bug16(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_set(memc, test_literal_param("mykey"),
-                                                NULL, 0,
-                                                (time_t)0, UINT32_MAX));
-
-
-  size_t length;
-  uint32_t flags;
-  memcached_return_t rc;
-  char *value= memcached_get(memc, test_literal_param("mykey"),
-                             &length, &flags, &rc);
-
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_null(value);
-  test_zero(length);
-  test_compare(flags, UINT32_MAX);
-
-  return TEST_SUCCESS;
-}
-
-#if !defined(__sun) && !defined(__OpenBSD__)
-/* Check the validity of chinese key*/
-test_return_t user_supplied_bug17(memcached_st *memc)
-{
-  const char *key= "豆瓣";
-  const char *value="我们在炎热抑郁的夏天无法停止豆瓣";
-  memcached_return_t rc= memcached_set(memc, key, strlen(key),
-                                       value, strlen(value),
-                                       (time_t)0, 0);
-
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  size_t length;
-  uint32_t flags;
-  char *value2= memcached_get(memc, key, strlen(key),
-                              &length, &flags, &rc);
-
-  test_compare(length, strlen(value));
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_memcmp(value, value2, length);
-  free(value2);
-
-  return TEST_SUCCESS;
-}
-#endif
-
-/*
-  From Andrei on IRC
-*/
-
-test_return_t user_supplied_bug19(memcached_st *)
-{
-  memcached_return_t res;
-
-  memcached_st *memc= memcached(test_literal_param("--server=localhost:11311/?100 --server=localhost:11312/?100"));
-
-  const memcached_instance_st * server= memcached_server_by_key(memc, "a", 1, &res);
-  test_true(server);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-/* CAS test from Andei */
-test_return_t user_supplied_bug20(memcached_st *memc)
-{
-  const char *key= "abc";
-  size_t key_len= strlen("abc");
-
-  test_skip(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc,
-                             test_literal_param("abc"),
-                             test_literal_param("foobar"),
-                             (time_t)0, (uint32_t)0));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, &key, &key_len, 1));
-
-  memcached_result_st result_obj;
-  memcached_result_st *result= memcached_result_create(memc, &result_obj);
-  test_true(result);
-
-  memcached_result_create(memc, &result_obj);
-  memcached_return_t status;
-  result= memcached_fetch_result(memc, &result_obj, &status);
-
-  test_true(result);
-  test_compare(MEMCACHED_SUCCESS, status);
-
-  memcached_result_free(result);
-
-  return TEST_SUCCESS;
-}
-
-/* Large mget() of missing keys with binary proto
- *
- * If many binary quiet commands (such as getq's in an mget) fill the output
- * buffer and the server chooses not to respond, memcached_flush hangs. See
- * http://lists.tangent.org/pipermail/libmemcached/2009-August/000918.html
- */
-
-/* sighandler_t function that always asserts false */
-static __attribute__((noreturn)) void fail(int)
-{
-  fatal_assert(0);
-}
-
-
-test_return_t _user_supplied_bug21(memcached_st* memc, size_t key_count)
-{
-#ifdef WIN32
-  (void)memc;
-  (void)key_count;
-  return TEST_SKIPPED;
-#else
-  void (*oldalarm)(int);
-
-  memcached_st *memc_clone= memcached_clone(NULL, memc);
-  test_true(memc_clone);
-
-  /* only binproto uses getq for mget */
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, true));
-
-  /* empty the cache to ensure misses (hence non-responses) */
-  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc_clone, 0));
-
-  keys_st keys(key_count);
-
-  oldalarm= signal(SIGALRM, fail);
-  alarm(5);
-
-  test_compare_got(MEMCACHED_SUCCESS,
-                   memcached_mget(memc_clone, keys.keys_ptr(), keys.lengths_ptr(), keys.size()),
-                   memcached_last_error_message(memc_clone));
-
-  alarm(0);
-  signal(SIGALRM, oldalarm);
-
-  memcached_return_t rc;
-  uint32_t flags;
-  char return_key[MEMCACHED_MAX_KEY];
-  size_t return_key_length;
-  char *return_value;
-  size_t return_value_length;
-  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
-                                        &return_value_length, &flags, &rc)))
-  {
-    test_false(return_value); // There are no keys to fetch, so the value should never be returned
-  }
-  test_compare(MEMCACHED_NOTFOUND, rc);
-  test_zero(return_value_length);
-  test_zero(return_key_length);
-  test_false(return_key[0]);
-  test_false(return_value);
-
-  memcached_free(memc_clone);
-
-  return TEST_SUCCESS;
-#endif
-}
-
-test_return_t user_supplied_bug21(memcached_st *memc)
-{
-  test_skip(TEST_SUCCESS, pre_binary(memc));
+  for (uint32_t x= 0; x < 10; x++)
+  {
+    value= memcached_get(memc, keys[0], key_length[0],
+                         &value_length, &flags, &rc);
+    test_compare(rc, MEMCACHED_SUCCESS);
+    test_true(value);
+    ::free(value);
 
-  /* should work as of r580 */
-  test_compare(TEST_SUCCESS,
-               _user_supplied_bug21(memc, 10));
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_mget(memc, keys, key_length, 4));
 
-  /* should fail as of r580 */
-  test_compare(TEST_SUCCESS,
-               _user_supplied_bug21(memc, 1000));
+    test_compare(TEST_SUCCESS, fetch_all_results(memc, count));
+    test_compare(4U, count);
+  }
+  delete [] insert_data;
 
   return TEST_SUCCESS;
 }
 
-test_return_t comparison_operator_memcached_st_and__memcached_return_t_TEST(memcached_st *)
+test_return_t user_supplied_bug6(memcached_st *memc)
 {
-  test::Memc memc_;
-
-  memcached_st *memc= &memc_;
-
-  ASSERT_EQ(memc, MEMCACHED_SUCCESS);
-  test_compare(memc, MEMCACHED_SUCCESS);
+  const char *keys[]= {"036790384900", "036790384902", "036790384904", "036790384906"};
+  size_t key_length[]=  {strlen("036790384900"), strlen("036790384902"), strlen("036790384904"), strlen("036790384906")};
+  char return_key[MEMCACHED_MAX_KEY];
+  size_t return_key_length;
+  char *value;
+  size_t value_length;
+  uint32_t flags;
+  char *insert_data= new (std::nothrow) char[VALUE_SIZE_BUG5];
 
-  ASSERT_NEQ(memc, MEMCACHED_FAILURE);
+  for (uint32_t x= 0; x < VALUE_SIZE_BUG5; x++)
+  {
+    insert_data[x]= (signed char)rand();
+  }
 
-  return TEST_SUCCESS;
-}
+  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc, 0));
 
-test_return_t ketama_TEST(memcached_st *)
-{
-  test::Memc memc("--server=10.0.1.1:11211 --server=10.0.1.2:11211");
+  test_compare(TEST_SUCCESS, confirm_keys_dont_exist(memc, keys, test_array_length(keys)));
 
+  // We will now confirm that memcached_mget() returns success, but we will
+  // then check to make sure that no actual keys are returned.
   test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(&memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED, true));
-
-  test_compare(memcached_behavior_get(&memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED), uint64_t(1));
+               memcached_mget(memc, keys, key_length, 4));
 
-  test_compare(memcached_behavior_set(&memc, MEMCACHED_BEHAVIOR_KETAMA_HASH, MEMCACHED_HASH_MD5), MEMCACHED_SUCCESS);
+  memcached_return_t rc;
+  uint32_t count= 0;
+  while ((value= memcached_fetch(memc, return_key, &return_key_length,
+                                 &value_length, &flags, &rc)))
+  {
+    count++;
+  }
+  test_zero(count);
+  test_compare(MEMCACHED_NOTFOUND, rc);
 
-  test_compare(memcached_hash_t(memcached_behavior_get(&memc, MEMCACHED_BEHAVIOR_KETAMA_HASH)), MEMCACHED_HASH_MD5);
+  for (uint32_t x= 0; x < test_array_length(keys); x++)
+  {
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_set(memc, keys[x], key_length[x],
+                               insert_data, VALUE_SIZE_BUG5,
+                               (time_t)0, (uint32_t)0));
+  }
+  test_compare(TEST_SUCCESS, confirm_keys_exist(memc, keys, test_array_length(keys)));
 
-  test_compare(memcached_behavior_set_distribution(&memc, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY), MEMCACHED_SUCCESS);
+  for (uint32_t x= 0; x < 2; x++)
+  {
+    value= memcached_get(memc, keys[0], key_length[0],
+                         &value_length, &flags, &rc);
+    test_true(value);
+    free(value);
 
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_mget(memc, keys, key_length, 4));
+    /* We test for purge of partial complete fetches */
+    for (count= 3; count; count--)
+    {
+      value= memcached_fetch(memc, return_key, &return_key_length,
+                             &value_length, &flags, &rc);
+      test_compare(MEMCACHED_SUCCESS, rc);
+      test_memcmp(value, insert_data, value_length);
+      test_true(value_length);
+      free(value);
+    }
+  }
+  delete [] insert_data;
 
   return TEST_SUCCESS;
 }
 
-test_return_t output_ketama_weighted_keys(memcached_st *)
+test_return_t user_supplied_bug8(memcached_st *)
 {
-  memcached_st *memc= memcached_create(NULL);
-  test_true(memc);
+  memcached_return_t rc;
+  memcached_st *mine;
+  memcached_st *memc_clone;
 
+  memcached_server_st *servers;
+  const char *server_list= "memcache1.memcache.bk.sapo.pt:11211, memcache1.memcache.bk.sapo.pt:11212, memcache1.memcache.bk.sapo.pt:11213, memcache1.memcache.bk.sapo.pt:11214, memcache2.memcache.bk.sapo.pt:11211, memcache2.memcache.bk.sapo.pt:11212, memcache2.memcache.bk.sapo.pt:11213, memcache2.memcache.bk.sapo.pt:11214";
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED, true));
+  servers= memcached_servers_parse(server_list);
+  test_true(servers);
 
-  uint64_t value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_WEIGHTED);
-  test_compare(value, uint64_t(1));
+  mine= memcached_create(NULL);
+  rc= memcached_server_push(mine, servers);
+  test_compare(MEMCACHED_SUCCESS, rc);
+  memcached_server_list_free(servers);
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_KETAMA_HASH, MEMCACHED_HASH_MD5));
+  test_true(mine);
+  memc_clone= memcached_clone(NULL, mine);
 
-  value= memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_KETAMA_HASH);
-  test_true(value == MEMCACHED_HASH_MD5);
+  memcached_quit(mine);
+  memcached_quit(memc_clone);
 
 
-  test_true(memcached_behavior_set_distribution(memc, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY) == MEMCACHED_SUCCESS);
+  memcached_free(mine);
+  memcached_free(memc_clone);
 
-  memcached_server_st *server_pool;
-  server_pool = memcached_servers_parse("10.0.1.1:11211,10.0.1.2:11211,10.0.1.3:11211,10.0.1.4:11211,10.0.1.5:11211,10.0.1.6:11211,10.0.1.7:11211,10.0.1.8:11211,192.168.1.1:11211,192.168.100.1:11211");
-  memcached_server_push(memc, server_pool);
+  return TEST_SUCCESS;
+}
 
-  // @todo this needs to be refactored to actually test something.
-#if 0
-  FILE *fp;
-  if ((fp = fopen("ketama_keys.txt", "w")))
-  {
-    // noop
-  } else {
-    printf("cannot write to file ketama_keys.txt");
-    return TEST_FAILURE;
-  }
+/* Test flag store/retrieve */
+test_return_t user_supplied_bug7(memcached_st *memc)
+{
+  char *insert_data= new (std::nothrow) char[VALUE_SIZE_BUG5];
+  test_true(insert_data);
 
-  for (int x= 0; x < 10000; x++)
+  for (size_t x= 0; x < VALUE_SIZE_BUG5; x++)
   {
-    char key[10];
-    snprintf(key, sizeof(key), "%d", x);
-
-    uint32_t server_idx = memcached_generate_hash(memc, key, strlen(key));
-    char *hostname = memc->hosts[server_idx].hostname;
-    in_port_t port = memc->hosts[server_idx].port;
-    fprintf(fp, "key %s is on host /%s:%u\n", key, hostname, port);
-    const memcached_instance_st * instance=
-      memcached_server_instance_by_position(memc, host_index);
+    insert_data[x]= (signed char)rand();
   }
-  fclose(fp);
-#endif
-  memcached_server_list_free(server_pool);
-  memcached_free(memc);
 
-  return TEST_SUCCESS;
-}
+  memcached_flush(memc, 0);
+
+  const char *keys= "036790384900";
+  size_t key_length=  strlen(keys);
+  test_compare(MEMCACHED_SUCCESS, memcached_set(memc, keys, key_length,
+                                                insert_data, VALUE_SIZE_BUG5,
+                                                time_t(0), 245U));
 
+  memcached_return_t rc;
+  size_t value_length;
+  uint32_t flags= 0;
+  char *value= memcached_get(memc, keys, key_length,
+                             &value_length, &flags, &rc);
+  test_compare(245U, flags);
+  test_true(value);
+  free(value);
 
-test_return_t result_static(memcached_st *memc)
-{
-  memcached_result_st result;
-  memcached_result_st *result_ptr= memcached_result_create(memc, &result);
-  test_false(result.options.is_allocated);
-  test_true(memcached_is_initialized(&result));
-  test_true(result_ptr);
-  test_true(result_ptr == &result);
+  test_compare(MEMCACHED_SUCCESS, memcached_mget(memc, &keys, &key_length, 1));
 
-  memcached_result_free(&result);
+  char return_key[MEMCACHED_MAX_KEY];
+  size_t return_key_length;
+  flags= 0;
+  value= memcached_fetch(memc, return_key, &return_key_length,
+                         &value_length, &flags, &rc);
+  test_compare(uint32_t(245), flags);
+  test_true(value);
+  free(value);
+  delete [] insert_data;
 
-  test_false(result.options.is_allocated);
-  test_false(memcached_is_initialized(&result));
 
   return TEST_SUCCESS;
 }
 
-test_return_t result_alloc(memcached_st *memc)
+test_return_t user_supplied_bug9(memcached_st *memc)
 {
-  memcached_result_st *result_ptr= memcached_result_create(memc, NULL);
-  test_true(result_ptr);
-  test_true(result_ptr->options.is_allocated);
-  test_true(memcached_is_initialized(result_ptr));
-  memcached_result_free(result_ptr);
+  const char *keys[]= {"UDATA:edevil@sapo.pt", "fudge&*@#", "for^#@&$not"};
+  size_t key_length[3];
+  uint32_t flags;
+  unsigned count= 0;
 
-  return TEST_SUCCESS;
-}
+  char return_key[MEMCACHED_MAX_KEY];
+  size_t return_key_length;
+  char *return_value;
+  size_t return_value_length;
 
 
-test_return_t add_host_test1(memcached_st *memc)
-{
-  memcached_return_t rc;
-  char servername[]= "0.example.com";
+  key_length[0]= strlen("UDATA:edevil@sapo.pt");
+  key_length[1]= strlen("fudge&*@#");
+  key_length[2]= strlen("for^#@&$not");
 
-  memcached_server_st *servers= memcached_server_list_append_with_weight(NULL, servername, 400, 0, &rc);
-  test_true(servers);
-  test_compare(1U, memcached_server_list_count(servers));
 
-  for (uint32_t x= 2; x < 20; x++)
+  for (unsigned int x= 0; x < 3; x++)
   {
-    char buffer[SMALL_STRING_LEN];
-
-    snprintf(buffer, SMALL_STRING_LEN, "%lu.example.com", (unsigned long)(400 +x));
-    servers= memcached_server_list_append_with_weight(servers, buffer, 401, 0,
-                                                      &rc);
+    memcached_return_t rc= memcached_set(memc, keys[x], key_length[x],
+                                         keys[x], key_length[x],
+                                         (time_t)50, (uint32_t)9);
     test_compare(MEMCACHED_SUCCESS, rc);
-    test_compare(x, memcached_server_list_count(servers));
   }
 
-  test_compare(MEMCACHED_SUCCESS, memcached_server_push(memc, servers));
-  test_compare(MEMCACHED_SUCCESS, memcached_server_push(memc, servers));
+  memcached_return_t rc= memcached_mget(memc, keys, key_length, 3);
+  test_compare(MEMCACHED_SUCCESS, rc);
 
-  memcached_server_list_free(servers);
+  /* We need to empty the server before continueing test */
+  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
+                                        &return_value_length, &flags, &rc)) != NULL)
+  {
+    test_true(return_value);
+    free(return_value);
+    count++;
+  }
+  test_compare(3U, count);
 
   return TEST_SUCCESS;
 }
 
-
-static void my_free(const memcached_st *ptr, void *mem, void *context)
+/* We are testing with aggressive timeout to get failures */
+test_return_t user_supplied_bug10(memcached_st *memc)
 {
-  (void)context;
-  (void)ptr;
-#ifdef HARD_MALLOC_TESTS
-  void *real_ptr= (mem == NULL) ? mem : (void*)((caddr_t)mem - 8);
-  free(real_ptr);
-#else
-  free(mem);
-#endif
-}
+  test_skip(memc->servers[0].type, MEMCACHED_CONNECTION_TCP);
 
+  size_t value_length= 512;
+  unsigned int set= 1;
+  memcached_st *mclone= memcached_clone(NULL, memc);
 
-static void *my_malloc(const memcached_st *ptr, const size_t size, void *context)
-{
-  (void)context;
-  (void)ptr;
-#ifdef HARD_MALLOC_TESTS
-  void *ret= malloc(size + 8);
-  if (ret != NULL)
+  memcached_behavior_set(mclone, MEMCACHED_BEHAVIOR_NO_BLOCK, set);
+  memcached_behavior_set(mclone, MEMCACHED_BEHAVIOR_TCP_NODELAY, set);
+  memcached_behavior_set(mclone, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, uint64_t(0));
+
+  libtest::vchar_t value;
+  value.reserve(value_length);
+  for (uint32_t x= 0; x < value_length; x++)
   {
-    ret= (void*)((caddr_t)ret + 8);
+    value.push_back(char(x % 127));
   }
-#else
-  void *ret= malloc(size);
-#endif
 
-  if (ret != NULL)
-  {
-    memset(ret, 0xff, size);
+  for (unsigned int x= 1; x <= 100000; ++x)
+  {
+    memcached_return_t rc= memcached_set(mclone, 
+                                         test_literal_param("foo"),
+                                         &value[0], value.size(),
+                                         0, 0);
+
+    test_true((rc == MEMCACHED_SUCCESS or rc == MEMCACHED_WRITE_FAILURE or rc == MEMCACHED_BUFFERED or rc == MEMCACHED_TIMEOUT or rc == MEMCACHED_CONNECTION_FAILURE 
+               or rc == MEMCACHED_SERVER_TEMPORARILY_DISABLED));
+
+    if (rc == MEMCACHED_WRITE_FAILURE or rc == MEMCACHED_TIMEOUT)
+    {
+      x--;
+    }
   }
 
-  return ret;
-}
+  memcached_free(mclone);
 
+  return TEST_SUCCESS;
+}
 
-static void *my_realloc(const memcached_st *ptr, void *mem, const size_t size, void *)
+/*
+  We are looking failures in the async protocol
+*/
+test_return_t user_supplied_bug11(memcached_st *memc)
 {
-#ifdef HARD_MALLOC_TESTS
-  void *real_ptr= (mem == NULL) ? NULL : (void*)((caddr_t)mem - 8);
-  void *nmem= realloc(real_ptr, size + 8);
+  (void)memc;
+#ifndef __APPLE__
+  test::Memc mclone(memc);
 
-  void *ret= NULL;
-  if (nmem != NULL)
-  {
-    ret= (void*)((caddr_t)nmem + 8);
-  }
+  memcached_behavior_set(&mclone, MEMCACHED_BEHAVIOR_NO_BLOCK, true);
+  memcached_behavior_set(&mclone, MEMCACHED_BEHAVIOR_TCP_NODELAY, true);
+  memcached_behavior_set(&mclone, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, size_t(-1));
 
-  return ret;
-#else
-  (void)ptr;
-  return realloc(mem, size);
-#endif
-}
+  test_compare(-1, int32_t(memcached_behavior_get(&mclone, MEMCACHED_BEHAVIOR_POLL_TIMEOUT)));
 
+  libtest::vchar_t value;
+  value.reserve(512);
+  for (unsigned int x= 0; x < 512; x++)
+  {
+    value.push_back(char(x % 127));
+  }
 
-static void *my_calloc(const memcached_st *ptr, size_t nelem, const size_t size, void *)
-{
-#ifdef HARD_MALLOC_TESTS
-  void *mem= my_malloc(ptr, nelem * size);
-  if (mem)
+  for (unsigned int x= 1; x <= 100000; ++x)
   {
-    memset(mem, 0, nelem * size);
+    memcached_return_t rc= memcached_set(&mclone, test_literal_param("foo"), &value[0], value.size(), 0, 0);
+    (void)rc;
   }
 
-  return mem;
-#else
-  (void)ptr;
-  return calloc(nelem, size);
 #endif
+
+  return TEST_SUCCESS;
 }
 
-test_return_t selection_of_namespace_tests(memcached_st *memc)
+/*
+  Bug found where incr was not returning MEMCACHED_NOTFOUND when object did not exist.
+*/
+test_return_t user_supplied_bug12(memcached_st *memc)
 {
   memcached_return_t rc;
-  const char *key= "mine";
+  uint32_t flags;
+  size_t value_length;
   char *value;
+  uint64_t number_value;
 
-  /* Make sure by default none exists */
-  value= (char*)memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc);
+  value= memcached_get(memc, "autoincrement", strlen("autoincrement"),
+                       &value_length, &flags, &rc);
   test_null(value);
-  test_compare_got(MEMCACHED_SUCCESS, rc, memcached_strerror(NULL, rc));
-
-  /* Test a clean set */
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, (void *)key));
-
-  value= (char*)memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc);
-  test_true(value);
-  test_memcmp(value, key, strlen(key));
-  test_compare_got(MEMCACHED_SUCCESS, rc, memcached_strerror(NULL, rc));
-
-  /* Test that we can turn it off */
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, NULL));
+  test_compare(MEMCACHED_NOTFOUND, rc);
 
-  value= (char*)memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc);
+  rc= memcached_increment(memc, "autoincrement", strlen("autoincrement"),
+                          1, &number_value);
   test_null(value);
-  test_compare_got(MEMCACHED_SUCCESS, rc, memcached_strerror(NULL, rc));
+  /* The binary protocol will set the key if it doesn't exist */
+  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) == 1)
+  {
+    test_compare(MEMCACHED_SUCCESS, rc);
+  }
+  else
+  {
+    test_compare(MEMCACHED_NOTFOUND, rc);
+  }
 
-  /* Now setup for main test */
   test_compare(MEMCACHED_SUCCESS,
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, (void *)key));
+               memcached_set(memc, "autoincrement", strlen("autoincrement"), "1", 1, 0, 0));
 
-  value= (char *)memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc);
+  value= memcached_get(memc, "autoincrement", strlen("autoincrement"), &value_length, &flags, &rc);
   test_true(value);
-  test_compare_got(MEMCACHED_SUCCESS, rc, memcached_strerror(NULL, rc));
-  test_memcmp(value, key, strlen(key));
+  free(value);
 
-  /* Set to Zero, and then Set to something too large */
-  {
-    char long_key[255];
-    memset(long_key, 0, 255);
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_increment(memc, "autoincrement", strlen("autoincrement"), 1, &number_value));
+  test_compare(2UL, number_value);
 
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, NULL));
+  return TEST_SUCCESS;
+}
 
-    ASSERT_NULL_(memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc), "Setting namespace to NULL did not work");
+/*
+  Bug found where command total one more than MEMCACHED_MAX_BUFFER
+  set key34567890 0 0 8169 \r\n is sent followed by buffer of size 8169, followed by 8169
+*/
+test_return_t user_supplied_bug13(memcached_st *memc)
+{
+  char key[] = "key34567890";
 
-    /* Test a long key for failure */
-    /* TODO, extend test to determine based on setting, what result should be */
-    strncpy(long_key, "Thisismorethentheallottednumberofcharacters", sizeof(long_key));
-    test_compare(MEMCACHED_SUCCESS, 
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, long_key));
+  char commandFirst[]= "set key34567890 0 0 ";
+  char commandLast[] = " \r\n"; /* first line of command sent to server */
+  size_t commandLength;
 
-    /* Now test a key with spaces (which will fail from long key, since bad key is not set) */
-    strncpy(long_key, "This is more then the allotted number of characters", sizeof(long_key));
-    test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) ? MEMCACHED_SUCCESS : MEMCACHED_BAD_KEY_PROVIDED,
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, long_key));
+  commandLength = strlen(commandFirst) + strlen(commandLast) + 4; /* 4 is number of characters in size, probably 8196 */
+
+  size_t overflowSize = MEMCACHED_MAX_BUFFER - commandLength;
 
-    /* Test for a bad prefix, but with a short key */
-    test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) ? MEMCACHED_INVALID_ARGUMENTS : MEMCACHED_SUCCESS,
-                 memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_VERIFY_KEY, 1));
+  for (size_t testSize= overflowSize - 1; testSize < overflowSize + 1; testSize++)
+  {
+    char *overflow= new (std::nothrow) char[testSize];
+    test_true(overflow);
 
-    test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL) ? MEMCACHED_SUCCESS : MEMCACHED_BAD_KEY_PROVIDED,
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, "dog cat"));
+    memset(overflow, 'x', testSize);
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_set(memc, key, strlen(key),
+                               overflow, testSize, 0, 0));
+    delete [] overflow;
   }
 
   return TEST_SUCCESS;
 }
 
-test_return_t set_namespace(memcached_st *memc)
+
+/*
+  Test values of many different sizes
+  Bug found where command total one more than MEMCACHED_MAX_BUFFER
+  set key34567890 0 0 8169 \r\n
+  is sent followed by buffer of size 8169, followed by 8169
+*/
+test_return_t user_supplied_bug14(memcached_st *memc)
 {
-  memcached_return_t rc;
-  const char *key= "mine";
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, true);
 
-  // Make sure we default to a null namespace
-  char* value= (char*)memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc);
-  ASSERT_NULL_(value, "memc had a value for namespace when none should exist");
-  test_compare_got(MEMCACHED_SUCCESS, rc, memcached_strerror(NULL, rc));
+  libtest::vchar_t value;
+  value.reserve(18000);
+  for (ptrdiff_t x= 0; x < 18000; x++)
+  {
+    value.push_back((char) (x % 127));
+  }
 
-  /* Test a clean set */
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_callback_set(memc, MEMCACHED_CALLBACK_NAMESPACE, (void *)key));
+  for (size_t current_length= 1; current_length < value.size(); current_length++)
+  {
+    memcached_return_t rc= memcached_set(memc, test_literal_param("foo"),
+                                         &value[0], current_length,
+                                         (time_t)0, (uint32_t)0);
+    ASSERT_TRUE_(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED, "Instead got %s", memcached_strerror(NULL, rc));
 
-  value= (char*)memcached_callback_get(memc, MEMCACHED_CALLBACK_NAMESPACE, &rc);
-  ASSERT_TRUE(value);
-  test_memcmp(value, key, strlen(key));
-  test_compare_got(MEMCACHED_SUCCESS, rc, memcached_strerror(NULL, rc));
+    size_t string_length;
+    uint32_t flags;
+    char *string= memcached_get(memc, test_literal_param("foo"),
+                                &string_length, &flags, &rc);
 
-  return TEST_SUCCESS;
-}
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_compare(string_length, current_length);
+    char buffer[1024];
+    snprintf(buffer, sizeof(buffer), "%u", uint32_t(string_length));
+    test_memcmp(string, &value[0], string_length);
 
-test_return_t set_namespace_and_binary(memcached_st *memc)
-{
-  test_return_if(pre_binary(memc));
-  test_return_if(set_namespace(memc));
+    free(string);
+  }
 
   return TEST_SUCCESS;
 }
 
-#ifdef MEMCACHED_ENABLE_DEPRECATED
-test_return_t deprecated_set_memory_alloc(memcached_st *memc)
+/*
+  Look for zero length value problems
+*/
+test_return_t user_supplied_bug15(memcached_st *memc)
 {
-  void *test_ptr= NULL;
-  void *cb_ptr= NULL;
+  for (uint32_t x= 0; x < 2; x++)
   {
-    memcached_malloc_fn malloc_cb= (memcached_malloc_fn)my_malloc;
-    cb_ptr= *(void **)&malloc_cb;
-    memcached_return_t rc;
+    memcached_return_t rc= memcached_set(memc, test_literal_param("mykey"),
+                                         NULL, 0,
+                                         (time_t)0, (uint32_t)0);
 
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_MALLOC_FUNCTION, cb_ptr));
-    test_ptr= memcached_callback_get(memc, MEMCACHED_CALLBACK_MALLOC_FUNCTION, &rc);
     test_compare(MEMCACHED_SUCCESS, rc);
-    test_true(test_ptr == cb_ptr);
-  }
 
-  {
-    memcached_realloc_fn realloc_cb=
-      (memcached_realloc_fn)my_realloc;
-    cb_ptr= *(void **)&realloc_cb;
-    memcached_return_t rc;
+    size_t length;
+    uint32_t flags;
+    char *value= memcached_get(memc, test_literal_param("mykey"),
+                               &length, &flags, &rc);
 
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_REALLOC_FUNCTION, cb_ptr));
-    test_ptr= memcached_callback_get(memc, MEMCACHED_CALLBACK_REALLOC_FUNCTION, &rc);
     test_compare(MEMCACHED_SUCCESS, rc);
-    test_true(test_ptr == cb_ptr);
-  }
+    test_false(value);
+    test_zero(length);
+    test_zero(flags);
 
-  {
-    memcached_free_fn free_cb=
-      (memcached_free_fn)my_free;
-    cb_ptr= *(void **)&free_cb;
-    memcached_return_t rc;
+    value= memcached_get(memc, test_literal_param("mykey"),
+                         &length, &flags, &rc);
 
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_callback_set(memc, MEMCACHED_CALLBACK_FREE_FUNCTION, cb_ptr));
-    test_ptr= memcached_callback_get(memc, MEMCACHED_CALLBACK_FREE_FUNCTION, &rc);
     test_compare(MEMCACHED_SUCCESS, rc);
-    test_true(test_ptr == cb_ptr);
+    test_null(value);
+    test_zero(length);
+    test_zero(flags);
   }
 
   return TEST_SUCCESS;
 }
-#endif
-
-
-test_return_t set_memory_alloc(memcached_st *memc)
-{
-  test_compare(MEMCACHED_INVALID_ARGUMENTS,
-               memcached_set_memory_allocators(memc, NULL, my_free,
-                                               my_realloc, my_calloc, NULL));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set_memory_allocators(memc, my_malloc, my_free,
-                                               my_realloc, my_calloc, NULL));
-
-  memcached_malloc_fn mem_malloc;
-  memcached_free_fn mem_free;
-  memcached_realloc_fn mem_realloc;
-  memcached_calloc_fn mem_calloc;
-  memcached_get_memory_allocators(memc, &mem_malloc, &mem_free,
-                                  &mem_realloc, &mem_calloc);
-
-  test_true(mem_malloc == my_malloc);
-  test_true(mem_realloc == my_realloc);
-  test_true(mem_calloc == my_calloc);
-  test_true(mem_free == my_free);
-
-  return TEST_SUCCESS;
-}
 
-test_return_t enable_consistent_crc(memcached_st *memc)
+/* Check the return sizes on FLAGS to make sure it stores 32bit unsigned values correctly */
+test_return_t user_supplied_bug16(memcached_st *memc)
 {
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, MEMCACHED_DISTRIBUTION_CONSISTENT));
-  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION),  uint64_t(MEMCACHED_DISTRIBUTION_CONSISTENT));
+  test_compare(MEMCACHED_SUCCESS, memcached_set(memc, test_literal_param("mykey"),
+                                                NULL, 0,
+                                                (time_t)0, UINT32_MAX));
 
-  test_return_t rc;
-  if ((rc= pre_crc(memc)) != TEST_SUCCESS)
-  {
-    return rc;
-  }
 
-  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION),  uint64_t(MEMCACHED_DISTRIBUTION_CONSISTENT));
+  size_t length;
+  uint32_t flags;
+  memcached_return_t rc;
+  char *value= memcached_get(memc, test_literal_param("mykey"),
+                             &length, &flags, &rc);
 
-  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH) != MEMCACHED_HASH_CRC)
-  {
-    return TEST_SKIPPED;
-  }
+  test_compare(MEMCACHED_SUCCESS, rc);
+  test_null(value);
+  test_zero(length);
+  test_compare(flags, UINT32_MAX);
 
   return TEST_SUCCESS;
 }
 
-test_return_t enable_consistent_hsieh(memcached_st *memc)
+#if !defined(__sun) && !defined(__OpenBSD__)
+/* Check the validity of chinese key*/
+test_return_t user_supplied_bug17(memcached_st *memc)
 {
-  test_return_t rc;
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, MEMCACHED_DISTRIBUTION_CONSISTENT);
-  if ((rc= pre_hsieh(memc)) != TEST_SUCCESS)
-  {
-    return rc;
-  }
+  const char *key= "豆瓣";
+  const char *value="我们在炎热抑郁的夏天无法停止豆瓣";
+  memcached_return_t rc= memcached_set(memc, key, strlen(key),
+                                       value, strlen(value),
+                                       (time_t)0, 0);
 
-  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION), uint64_t(MEMCACHED_DISTRIBUTION_CONSISTENT));
+  test_compare(MEMCACHED_SUCCESS, rc);
 
-  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH) != MEMCACHED_HASH_HSIEH)
-  {
-    return TEST_SKIPPED;
-  }
+  size_t length;
+  uint32_t flags;
+  char *value2= memcached_get(memc, key, strlen(key),
+                              &length, &flags, &rc);
+
+  test_compare(length, strlen(value));
+  test_compare(MEMCACHED_SUCCESS, rc);
+  test_memcmp(value, value2, length);
+  free(value2);
 
   return TEST_SUCCESS;
 }
+#endif
 
-test_return_t enable_cas(memcached_st *memc)
+/*
+  From Andrei on IRC
+*/
+
+test_return_t user_supplied_bug19(memcached_st *)
 {
-  if (libmemcached_util_version_check(memc, 1, 2, 4))
-  {
-    memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true);
+  memcached_return_t res;
 
-    return TEST_SUCCESS;
-  }
+  memcached_st *memc= memcached(test_literal_param("--server=localhost:11311/?100 --server=localhost:11312/?100"));
 
-  return TEST_SKIPPED;
+  const memcached_instance_st * server= memcached_server_by_key(memc, "a", 1, &res);
+  test_true(server);
+
+  memcached_free(memc);
+
+  return TEST_SUCCESS;
 }
 
-test_return_t check_for_1_2_3(memcached_st *memc)
+/* CAS test from Andei */
+test_return_t user_supplied_bug20(memcached_st *memc)
 {
-  memcached_version(memc);
+  const char *key= "abc";
+  size_t key_len= strlen("abc");
 
-  const memcached_instance_st * instance=
-    memcached_server_instance_by_position(memc, 0);
+  test_skip(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true));
 
-  if ((instance->major_version >= 1 && (instance->minor_version == 2 && instance->micro_version >= 4))
-      or instance->minor_version > 2)
-  {
-    return TEST_SUCCESS;
-  }
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_set(memc,
+                             test_literal_param("abc"),
+                             test_literal_param("foobar"),
+                             (time_t)0, (uint32_t)0));
 
-  return TEST_SKIPPED;
-}
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_mget(memc, &key, &key_len, 1));
 
-test_return_t MEMCACHED_BEHAVIOR_POLL_TIMEOUT_test(memcached_st *memc)
-{
-  const uint64_t timeout= 100; // Not using, just checking that it sets
+  memcached_result_st result_obj;
+  memcached_result_st *result= memcached_result_create(memc, &result_obj);
+  test_true(result);
 
-  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, timeout);
+  memcached_result_create(memc, &result_obj);
+  memcached_return_t status;
+  result= memcached_fetch_result(memc, &result_obj, &status);
 
-  test_compare(timeout, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_POLL_TIMEOUT));
+  test_true(result);
+  test_compare(MEMCACHED_SUCCESS, status);
+
+  memcached_result_free(result);
 
   return TEST_SUCCESS;
 }
 
-test_return_t noreply_test(memcached_st *memc)
+/* Large mget() of missing keys with binary proto
+ *
+ * If many binary quiet commands (such as getq's in an mget) fill the output
+ * buffer and the server chooses not to respond, memcached_flush hangs. See
+ * http://lists.tangent.org/pipermail/libmemcached/2009-August/000918.html
+ */
+
+/* sighandler_t function that always asserts false */
+static __attribute__((noreturn)) void fail(int)
 {
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NOREPLY, true));
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS, true));
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true));
-  test_compare(1LLU, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NOREPLY));
-  test_compare(1LLU, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS));
-  test_compare(1LLU, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS));
+  fatal_assert(0);
+}
 
-  memcached_return_t ret;
-  for (int count= 0; count < 5; ++count)
-  {
-    for (size_t x= 0; x < 100; ++x)
-    {
-      char key[MEMCACHED_MAXIMUM_INTEGER_DISPLAY_LENGTH +1];
-      int check_length= snprintf(key, sizeof(key), "%lu", (unsigned long)x);
-      test_false((size_t)check_length >= sizeof(key) || check_length < 0);
 
-      size_t len= (size_t)check_length;
+test_return_t _user_supplied_bug21(memcached_st* memc, size_t key_count)
+{
+#ifdef WIN32
+  (void)memc;
+  (void)key_count;
+  return TEST_SKIPPED;
+#else
+  void (*oldalarm)(int);
 
-      switch (count)
-      {
-      case 0:
-        ret= memcached_add(memc, key, len, key, len, 0, 0);
-        break;
-      case 1:
-        ret= memcached_replace(memc, key, len, key, len, 0, 0);
-        break;
-      case 2:
-        ret= memcached_set(memc, key, len, key, len, 0, 0);
-        break;
-      case 3:
-        ret= memcached_append(memc, key, len, key, len, 0, 0);
-        break;
-      case 4:
-        ret= memcached_prepend(memc, key, len, key, len, 0, 0);
-        break;
-      default:
-        test_true(count);
-        break;
-      }
-      test_true_got(ret == MEMCACHED_SUCCESS or ret == MEMCACHED_BUFFERED,
-                    memcached_strerror(NULL, ret));
-    }
+  memcached_st *memc_clone= memcached_clone(NULL, memc);
+  test_true(memc_clone);
 
-    /*
-     ** NOTE: Don't ever do this in your code! this is not a supported use of the
-     ** API and is _ONLY_ done this way to verify that the library works the
-     ** way it is supposed to do!!!!
-   */
-#if 0
-    int no_msg=0;
-    for (uint32_t x= 0; x < memcached_server_count(memc); ++x)
-    {
-      const memcached_instance_st * instance=
-        memcached_server_instance_by_position(memc, x);
-      no_msg+=(int)(instance->cursor_active);
-    }
+  /* only binproto uses getq for mget */
+  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc_clone, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, true));
 
-    test_true(no_msg == 0);
-#endif
-    test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
+  /* empty the cache to ensure misses (hence non-responses) */
+  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc_clone, 0));
 
-    /*
-     ** Now validate that all items was set properly!
-   */
-    for (size_t x= 0; x < 100; ++x)
-    {
-      char key[10];
+  keys_st keys(key_count);
 
-      int check_length= snprintf(key, sizeof(key), "%lu", (unsigned long)x);
+  oldalarm= signal(SIGALRM, fail);
+  alarm(5);
 
-      test_false((size_t)check_length >= sizeof(key) || check_length < 0);
+  test_compare_got(MEMCACHED_SUCCESS,
+                   memcached_mget(memc_clone, keys.keys_ptr(), keys.lengths_ptr(), keys.size()),
+                   memcached_last_error_message(memc_clone));
 
-      size_t len= (size_t)check_length;
-      size_t length;
-      uint32_t flags;
-      char* value=memcached_get(memc, key, strlen(key),
-                                &length, &flags, &ret);
-      // For the moment we will just go to the next key
-      if (MEMCACHED_TIMEOUT == ret)
-      {
-        continue;
-      }
-      test_true(ret == MEMCACHED_SUCCESS and value != NULL);
-      switch (count)
-      {
-      case 0: /* FALLTHROUGH */
-      case 1: /* FALLTHROUGH */
-      case 2:
-        test_true(strncmp(value, key, len) == 0);
-        test_true(len == length);
-        break;
-      case 3:
-        test_true(length == len * 2);
-        break;
-      case 4:
-        test_true(length == len * 3);
-        break;
-      default:
-        test_true(count);
-        break;
-      }
-      free(value);
-    }
-  }
+  alarm(0);
+  signal(SIGALRM, oldalarm);
 
-  /* Try setting an illegal cas value (should not return an error to
-   * the caller (because we don't expect a return message from the server)
- */
-  const char* keys[]= {"0"};
-  size_t lengths[]= {1};
-  size_t length;
+  memcached_return_t rc;
   uint32_t flags;
-  memcached_result_st results_obj;
-  memcached_result_st *results;
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_mget(memc, keys, lengths, 1));
-
-  results= memcached_result_create(memc, &results_obj);
-  test_true(results);
-  results= memcached_fetch_result(memc, &results_obj, &ret);
-  test_true(results);
-  test_compare(MEMCACHED_SUCCESS, ret);
-  uint64_t cas= memcached_result_cas(results);
-  memcached_result_free(&results_obj);
-
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_cas(memc, keys[0], lengths[0], keys[0], lengths[0], 0, 0, cas));
+  char return_key[MEMCACHED_MAX_KEY];
+  size_t return_key_length;
+  char *return_value;
+  size_t return_value_length;
+  while ((return_value= memcached_fetch(memc, return_key, &return_key_length,
+                                        &return_value_length, &flags, &rc)))
+  {
+    test_false(return_value); // There are no keys to fetch, so the value should never be returned
+  }
+  test_compare(MEMCACHED_NOTFOUND, rc);
+  test_zero(return_value_length);
+  test_zero(return_key_length);
+  test_false(return_key[0]);
+  test_false(return_value);
 
-  /*
-   * The item will have a new cas value, so try to set it again with the old
-   * value. This should fail!
- */
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_cas(memc, keys[0], lengths[0], keys[0], lengths[0], 0, 0, cas));
-  test_true(memcached_flush_buffers(memc) == MEMCACHED_SUCCESS);
-  char* value=memcached_get(memc, keys[0], lengths[0], &length, &flags, &ret);
-  test_true(ret == MEMCACHED_SUCCESS && value != NULL);
-  free(value);
+  memcached_free(memc_clone);
 
   return TEST_SUCCESS;
+#endif
 }
 
-test_return_t analyzer_test(memcached_st *memc)
+test_return_t user_supplied_bug21(memcached_st *memc)
 {
-  memcached_analysis_st *report;
-  memcached_return_t rc;
-
-  memcached_stat_st *memc_stat= memcached_stat(memc, NULL, &rc);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_true(memc_stat);
+  test_skip(TEST_SUCCESS, pre_binary(memc));
 
-  report= memcached_analyze(memc, memc_stat, &rc);
-  test_compare(MEMCACHED_SUCCESS, rc);
-  test_true(report);
+  /* should work as of r580 */
+  test_compare(TEST_SUCCESS,
+               _user_supplied_bug21(memc, 10));
 
-  free(report);
-  memcached_stat_free(NULL, memc_stat);
+  /* should fail as of r580 */
+  test_compare(TEST_SUCCESS,
+               _user_supplied_bug21(memc, 1000));
 
   return TEST_SUCCESS;
 }
 
-test_return_t util_version_test(memcached_st *memc)
+test_return_t comparison_operator_memcached_st_and__memcached_return_t_TEST(memcached_st *)
 {
-  test_compare(memcached_version(memc), MEMCACHED_SUCCESS);
-  test_true(libmemcached_util_version_check(memc, 0, 0, 0));
-
-  bool if_successful= libmemcached_util_version_check(memc, 9, 9, 9);
-
-  // We expect failure
-  if (if_successful)
-  {
-    fprintf(stderr, "\n----------------------------------------------------------------------\n");
-    fprintf(stderr, "\nDumping Server Information\n\n");
-    memcached_server_fn callbacks[1];
-
-    callbacks[0]= dump_server_information;
-    memcached_server_cursor(memc, callbacks, (void *)stderr,  1);
-    fprintf(stderr, "\n----------------------------------------------------------------------\n");
-  }
-  test_true(if_successful == false);
+  test::Memc memc_;
 
-  const memcached_instance_st * instance=
-    memcached_server_instance_by_position(memc, 0);
+  memcached_st *memc= &memc_;
 
-  memcached_version(memc);
+  ASSERT_EQ(memc, MEMCACHED_SUCCESS);
+  test_compare(memc, MEMCACHED_SUCCESS);
 
-  // We only use one binary when we test, so this should be just fine.
-  if_successful= libmemcached_util_version_check(memc, instance->major_version, instance->minor_version, instance->micro_version);
-  test_true(if_successful == true);
+  ASSERT_NEQ(memc, MEMCACHED_FAILURE);
 
-  if (instance->micro_version > 0)
-  {
-    if_successful= libmemcached_util_version_check(memc, instance->major_version, instance->minor_version, (uint8_t)(instance->micro_version -1));
-  }
-  else if (instance->minor_version > 0)
-  {
-    if_successful= libmemcached_util_version_check(memc, instance->major_version, (uint8_t)(instance->minor_version - 1), instance->micro_version);
-  }
-  else if (instance->major_version > 0)
-  {
-    if_successful= libmemcached_util_version_check(memc, (uint8_t)(instance->major_version -1), instance->minor_version, instance->micro_version);
-  }
+  return TEST_SUCCESS;
+}
 
-  test_true(if_successful == true);
+test_return_t result_static(memcached_st *memc)
+{
+  memcached_result_st result;
+  memcached_result_st *result_ptr= memcached_result_create(memc, &result);
+  test_false(result.options.is_allocated);
+  test_true(memcached_is_initialized(&result));
+  test_true(result_ptr);
+  test_true(result_ptr == &result);
 
-  if (instance->micro_version > 0)
-  {
-    if_successful= libmemcached_util_version_check(memc, instance->major_version, instance->minor_version, (uint8_t)(instance->micro_version +1));
-  }
-  else if (instance->minor_version > 0)
-  {
-    if_successful= libmemcached_util_version_check(memc, instance->major_version, (uint8_t)(instance->minor_version +1), instance->micro_version);
-  }
-  else if (instance->major_version > 0)
-  {
-    if_successful= libmemcached_util_version_check(memc, (uint8_t)(instance->major_version +1), instance->minor_version, instance->micro_version);
-  }
+  memcached_result_free(&result);
 
-  test_true(if_successful == false);
+  test_false(result.options.is_allocated);
+  test_false(memcached_is_initialized(&result));
 
   return TEST_SUCCESS;
 }
 
-test_return_t getpid_connection_failure_test(memcached_st *memc)
+test_return_t result_alloc(memcached_st *memc)
 {
-  test_skip(memc->servers[0].type, MEMCACHED_CONNECTION_TCP);
-  memcached_return_t rc;
-  const memcached_instance_st * instance=
-    memcached_server_instance_by_position(memc, 0);
-
-  // Test both the version that returns a code, and the one that does not.
-  test_true(libmemcached_util_getpid(memcached_server_name(instance),
-                                     memcached_server_port(instance) -1, NULL) == -1);
-
-  test_true(libmemcached_util_getpid(memcached_server_name(instance),
-                                     memcached_server_port(instance) -1, &rc) == -1);
-  test_compare_got(MEMCACHED_CONNECTION_FAILURE, rc, memcached_strerror(memc, rc));
+  memcached_result_st *result_ptr= memcached_result_create(memc, NULL);
+  test_true(result_ptr);
+  test_true(result_ptr->options.is_allocated);
+  test_true(memcached_is_initialized(result_ptr));
+  memcached_result_free(result_ptr);
 
   return TEST_SUCCESS;
 }
 
 
-test_return_t getpid_test(memcached_st *memc)
+test_return_t add_host_test1(memcached_st *memc)
 {
   memcached_return_t rc;
-  const memcached_instance_st * instance=
-    memcached_server_instance_by_position(memc, 0);
-
-  // Test both the version that returns a code, and the one that does not.
-  test_true(libmemcached_util_getpid(memcached_server_name(instance),
-                                     memcached_server_port(instance), NULL) > -1);
-
-  test_true(libmemcached_util_getpid(memcached_server_name(instance),
-                                     memcached_server_port(instance), &rc) > -1);
-  test_compare(MEMCACHED_SUCCESS, rc);
+  char servername[]= "0.example.com";
 
-  return TEST_SUCCESS;
-}
+  memcached_server_st *servers= memcached_server_list_append_with_weight(NULL, servername, 400, 0, &rc);
+  test_true(servers);
+  test_compare(1U, memcached_server_list_count(servers));
 
-static memcached_return_t ping_each_server(const memcached_st*,
-                                           const memcached_instance_st * instance,
-                                           void*)
-{
-  // Test both the version that returns a code, and the one that does not.
-  memcached_return_t rc;
-  if (libmemcached_util_ping(memcached_server_name(instance),
-                             memcached_server_port(instance), &rc) == false)
+  for (uint32_t x= 2; x < 20; x++)
   {
-    throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "%s:%d %s", memcached_server_name(instance),
-                         memcached_server_port(instance), memcached_strerror(NULL, rc));
-  }
+    char buffer[SMALL_STRING_LEN];
 
-  if (libmemcached_util_ping(memcached_server_name(instance),
-                                   memcached_server_port(instance), NULL) == false)
-  {
-    throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "%s:%d", memcached_server_name(instance), memcached_server_port(instance));
+    snprintf(buffer, SMALL_STRING_LEN, "%lu.example.com", (unsigned long)(400 +x));
+    servers= memcached_server_list_append_with_weight(servers, buffer, 401, 0,
+                                                      &rc);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_compare(x, memcached_server_list_count(servers));
   }
 
-  return MEMCACHED_SUCCESS;
-}
+  test_compare(MEMCACHED_SUCCESS, memcached_server_push(memc, servers));
+  test_compare(MEMCACHED_SUCCESS, memcached_server_push(memc, servers));
 
-test_return_t libmemcached_util_ping_TEST(memcached_st *memc)
-{
-  memcached_server_fn callbacks[1]= { ping_each_server };
-  memcached_server_cursor(memc, callbacks, NULL,  1);
+  memcached_server_list_free(servers);
 
   return TEST_SUCCESS;
 }
 
 
-#if 0
-test_return_t hash_sanity_test (memcached_st *memc)
+static void my_free(const memcached_st *ptr, void *mem, void *context)
 {
-  (void)memc;
-
-  assert(MEMCACHED_HASH_DEFAULT == MEMCACHED_HASH_DEFAULT);
-  assert(MEMCACHED_HASH_MD5 == MEMCACHED_HASH_MD5);
-  assert(MEMCACHED_HASH_CRC == MEMCACHED_HASH_CRC);
-  assert(MEMCACHED_HASH_FNV1_64 == MEMCACHED_HASH_FNV1_64);
-  assert(MEMCACHED_HASH_FNV1A_64 == MEMCACHED_HASH_FNV1A_64);
-  assert(MEMCACHED_HASH_FNV1_32 == MEMCACHED_HASH_FNV1_32);
-  assert(MEMCACHED_HASH_FNV1A_32 == MEMCACHED_HASH_FNV1A_32);
-#ifdef HAVE_HSIEH_HASH
-  assert(MEMCACHED_HASH_HSIEH == MEMCACHED_HASH_HSIEH);
+  (void)context;
+  (void)ptr;
+#ifdef HARD_MALLOC_TESTS
+  void *real_ptr= (mem == NULL) ? mem : (void*)((caddr_t)mem - 8);
+  free(real_ptr);
+#else
+  free(mem);
 #endif
-  assert(MEMCACHED_HASH_MURMUR == MEMCACHED_HASH_MURMUR);
-  assert(MEMCACHED_HASH_JENKINS == MEMCACHED_HASH_JENKINS);
-  assert(MEMCACHED_HASH_MAX == MEMCACHED_HASH_MAX);
-
-  return TEST_SUCCESS;
 }
-#endif
-
-test_return_t hsieh_avaibility_test (memcached_st *memc)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_HSIEH));
 
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH,
-                                      (uint64_t)MEMCACHED_HASH_HSIEH));
-
-  return TEST_SUCCESS;
-}
 
-test_return_t murmur_avaibility_test (memcached_st *memc)
+static void *my_malloc(const memcached_st *ptr, const size_t size, void *context)
 {
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_MURMUR));
+  (void)context;
+  (void)ptr;
+#ifdef HARD_MALLOC_TESTS
+  void *ret= malloc(size + 8);
+  if (ret != NULL)
+  {
+    ret= (void*)((caddr_t)ret + 8);
+  }
+#else
+  void *ret= malloc(size);
+#endif
 
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, (uint64_t)MEMCACHED_HASH_MURMUR));
+  if (ret != NULL)
+  {
+    memset(ret, 0xff, size);
+  }
 
-  return TEST_SUCCESS;
+  return ret;
 }
 
-test_return_t one_at_a_time_run (memcached_st *)
+
+static void *my_realloc(const memcached_st *ptr, void *mem, const size_t size, void *)
 {
-  uint32_t x;
-  const char **ptr;
+#ifdef HARD_MALLOC_TESTS
+  void *real_ptr= (mem == NULL) ? NULL : (void*)((caddr_t)mem - 8);
+  void *nmem= realloc(real_ptr, size + 8);
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  void *ret= NULL;
+  if (nmem != NULL)
   {
-    test_compare(one_at_a_time_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_DEFAULT));
+    ret= (void*)((caddr_t)nmem + 8);
   }
 
-  return TEST_SUCCESS;
+  return ret;
+#else
+  (void)ptr;
+  return realloc(mem, size);
+#endif
 }
 
-test_return_t md5_run (memcached_st *)
-{
-  uint32_t x;
-  const char **ptr;
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+static void *my_calloc(const memcached_st *ptr, size_t nelem, const size_t size, void *)
+{
+#ifdef HARD_MALLOC_TESTS
+  void *mem= my_malloc(ptr, nelem * size);
+  if (mem)
   {
-    test_compare(md5_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_MD5));
+    memset(mem, 0, nelem * size);
   }
 
-  return TEST_SUCCESS;
+  return mem;
+#else
+  (void)ptr;
+  return calloc(nelem, size);
+#endif
 }
 
-test_return_t crc_run (memcached_st *)
+#ifdef MEMCACHED_ENABLE_DEPRECATED
+test_return_t deprecated_set_memory_alloc(memcached_st *memc)
 {
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  void *test_ptr= NULL;
+  void *cb_ptr= NULL;
   {
-    test_compare(crc_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_CRC));
-  }
+    memcached_malloc_fn malloc_cb= (memcached_malloc_fn)my_malloc;
+    cb_ptr= *(void **)&malloc_cb;
+    memcached_return_t rc;
 
-  return TEST_SUCCESS;
-}
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_callback_set(memc, MEMCACHED_CALLBACK_MALLOC_FUNCTION, cb_ptr));
+    test_ptr= memcached_callback_get(memc, MEMCACHED_CALLBACK_MALLOC_FUNCTION, &rc);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_true(test_ptr == cb_ptr);
+  }
 
-test_return_t fnv1_64_run (memcached_st *)
-{
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_FNV1_64));
+  {
+    memcached_realloc_fn realloc_cb=
+      (memcached_realloc_fn)my_realloc;
+    cb_ptr= *(void **)&realloc_cb;
+    memcached_return_t rc;
 
-  uint32_t x;
-  const char **ptr;
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_callback_set(memc, MEMCACHED_CALLBACK_REALLOC_FUNCTION, cb_ptr));
+    test_ptr= memcached_callback_get(memc, MEMCACHED_CALLBACK_REALLOC_FUNCTION, &rc);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_true(test_ptr == cb_ptr);
+  }
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
   {
-    test_compare(fnv1_64_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_FNV1_64));
+    memcached_free_fn free_cb=
+      (memcached_free_fn)my_free;
+    cb_ptr= *(void **)&free_cb;
+    memcached_return_t rc;
+
+    test_compare(MEMCACHED_SUCCESS,
+                 memcached_callback_set(memc, MEMCACHED_CALLBACK_FREE_FUNCTION, cb_ptr));
+    test_ptr= memcached_callback_get(memc, MEMCACHED_CALLBACK_FREE_FUNCTION, &rc);
+    test_compare(MEMCACHED_SUCCESS, rc);
+    test_true(test_ptr == cb_ptr);
   }
 
   return TEST_SUCCESS;
 }
+#endif
+
 
-test_return_t fnv1a_64_run (memcached_st *)
+test_return_t set_memory_alloc(memcached_st *memc)
 {
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_FNV1A_64));
+  test_compare(MEMCACHED_INVALID_ARGUMENTS,
+               memcached_set_memory_allocators(memc, NULL, my_free,
+                                               my_realloc, my_calloc, NULL));
 
-  uint32_t x;
-  const char **ptr;
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_set_memory_allocators(memc, my_malloc, my_free,
+                                               my_realloc, my_calloc, NULL));
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(fnv1a_64_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_FNV1A_64));
-  }
+  memcached_malloc_fn mem_malloc;
+  memcached_free_fn mem_free;
+  memcached_realloc_fn mem_realloc;
+  memcached_calloc_fn mem_calloc;
+  memcached_get_memory_allocators(memc, &mem_malloc, &mem_free,
+                                  &mem_realloc, &mem_calloc);
+
+  test_true(mem_malloc == my_malloc);
+  test_true(mem_realloc == my_realloc);
+  test_true(mem_calloc == my_calloc);
+  test_true(mem_free == my_free);
 
   return TEST_SUCCESS;
 }
 
-test_return_t fnv1_32_run (memcached_st *)
+test_return_t enable_consistent_crc(memcached_st *memc)
 {
-  uint32_t x;
-  const char **ptr;
+  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, MEMCACHED_DISTRIBUTION_CONSISTENT));
+  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION),  uint64_t(MEMCACHED_DISTRIBUTION_CONSISTENT));
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  test_return_t rc;
+  if ((rc= pre_crc(memc)) != TEST_SUCCESS)
   {
-    test_compare(fnv1_32_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_FNV1_32));
+    return rc;
   }
 
-  return TEST_SUCCESS;
-}
-
-test_return_t fnv1a_32_run (memcached_st *)
-{
-  uint32_t x;
-  const char **ptr;
+  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION),  uint64_t(MEMCACHED_DISTRIBUTION_CONSISTENT));
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH) != MEMCACHED_HASH_CRC)
   {
-    test_compare(fnv1a_32_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_FNV1A_32));
+    return TEST_SKIPPED;
   }
 
   return TEST_SUCCESS;
 }
 
-test_return_t hsieh_run (memcached_st *)
+test_return_t enable_consistent_hsieh(memcached_st *memc)
 {
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_HSIEH));
+  test_return_t rc;
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, MEMCACHED_DISTRIBUTION_CONSISTENT);
+  if ((rc= pre_hsieh(memc)) != TEST_SUCCESS)
+  {
+    return rc;
+  }
 
-  uint32_t x;
-  const char **ptr;
+  test_compare(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION), uint64_t(MEMCACHED_DISTRIBUTION_CONSISTENT));
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  if (memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_HASH) != MEMCACHED_HASH_HSIEH)
   {
-    test_compare(hsieh_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_HSIEH));
+    return TEST_SKIPPED;
   }
 
   return TEST_SUCCESS;
 }
 
-test_return_t murmur_run (memcached_st *)
+test_return_t enable_cas(memcached_st *memc)
 {
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_MURMUR));
-
-#ifdef WORDS_BIGENDIAN
-  (void)murmur_values;
-  return TEST_SKIPPED;
-#else
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  if (libmemcached_util_version_check(memc, 1, 2, 4))
   {
-    test_compare(murmur_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_MURMUR));
+    memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_SUPPORT_CAS, true);
+
+    return TEST_SUCCESS;
   }
 
-  return TEST_SUCCESS;
-#endif
+  return TEST_SKIPPED;
 }
 
-test_return_t murmur3_TEST(hashkit_st *)
+test_return_t check_for_1_2_3(memcached_st *memc)
 {
-  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_MURMUR3));
+  memcached_version(memc);
 
-#ifdef WORDS_BIGENDIAN
-  (void)murmur3_values;
-  return TEST_SKIPPED;
-#else
-  uint32_t x;
-  const char **ptr;
+  const memcached_instance_st * instance=
+    memcached_server_instance_by_position(memc, 0);
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
+  if ((instance->major_version >= 1 && (instance->minor_version == 2 && instance->micro_version >= 4))
+      or instance->minor_version > 2)
   {
-    test_compare(murmur3_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_MURMUR3));
+    return TEST_SUCCESS;
   }
 
-  return TEST_SUCCESS;
-#endif
+  return TEST_SKIPPED;
 }
 
-test_return_t jenkins_run (memcached_st *)
+test_return_t MEMCACHED_BEHAVIOR_POLL_TIMEOUT_test(memcached_st *memc)
 {
-  uint32_t x;
-  const char **ptr;
-
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    test_compare(jenkins_values[x],
-                 memcached_generate_hash_value(*ptr, strlen(*ptr), MEMCACHED_HASH_JENKINS));
-  }
+  const uint64_t timeout= 100; // Not using, just checking that it sets
 
-  return TEST_SUCCESS;
-}
+  memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, timeout);
 
-static uint32_t hash_md5_test_function(const char *string, size_t string_length, void *)
-{
-  return libhashkit_md5(string, string_length);
-}
+  test_compare(timeout, memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_POLL_TIMEOUT));
 
-static uint32_t hash_crc_test_function(const char *string, size_t string_length, void *)
-{
-  return libhashkit_crc32(string, string_length);
+  return TEST_SUCCESS;
 }
 
-test_return_t memcached_get_hashkit_test (memcached_st *)
+test_return_t analyzer_test(memcached_st *memc)
 {
-  uint32_t x;
-  const char **ptr;
-  hashkit_st new_kit;
-
-  memcached_st *memc= memcached(test_literal_param("--server=localhost:1 --server=localhost:2 --server=localhost:3 --server=localhost:4 --server=localhost5 --DISTRIBUTION=modula"));
-
-  uint32_t md5_hosts[]= {4U, 1U, 0U, 1U, 4U, 2U, 0U, 3U, 0U, 0U, 3U, 1U, 0U, 0U, 1U, 3U, 0U, 0U, 0U, 3U, 1U, 0U, 4U, 4U, 3U};
-  uint32_t crc_hosts[]= {2U, 4U, 1U, 0U, 2U, 4U, 4U, 4U, 1U, 2U, 3U, 4U, 3U, 4U, 1U, 3U, 3U, 2U, 0U, 0U, 0U, 1U, 2U, 4U, 0U};
-
-  const hashkit_st *kit= memcached_get_hashkit(memc);
-
-  hashkit_clone(&new_kit, kit);
-  test_compare(HASHKIT_SUCCESS, hashkit_set_custom_function(&new_kit, hash_md5_test_function, NULL));
-
-  memcached_set_hashkit(memc, &new_kit);
-
-  /*
-    Verify Setting the hash.
-  */
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    uint32_t hash_val;
-
-    hash_val= hashkit_digest(kit, *ptr, strlen(*ptr));
-    test_compare_got(md5_values[x], hash_val, *ptr);
-  }
-
-
-  /*
-    Now check memcached_st.
-  */
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    uint32_t hash_val;
+  memcached_analysis_st *report;
+  memcached_return_t rc;
 
-    hash_val= memcached_generate_hash(memc, *ptr, strlen(*ptr));
-    test_compare_got(md5_hosts[x], hash_val, *ptr);
-  }
+  memcached_stat_st *memc_stat= memcached_stat(memc, NULL, &rc);
+  test_compare(MEMCACHED_SUCCESS, rc);
+  test_true(memc_stat);
 
-  test_compare(HASHKIT_SUCCESS, hashkit_set_custom_function(&new_kit, hash_crc_test_function, NULL));
+  report= memcached_analyze(memc, memc_stat, &rc);
+  test_compare(MEMCACHED_SUCCESS, rc);
+  test_true(report);
 
-  memcached_set_hashkit(memc, &new_kit);
+  free(report);
+  memcached_stat_free(NULL, memc_stat);
 
-  /*
-    Verify Setting the hash.
-  */
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    uint32_t hash_val;
+  return TEST_SUCCESS;
+}
 
-    hash_val= hashkit_digest(kit, *ptr, strlen(*ptr));
-    test_true(crc_values[x] == hash_val);
-  }
+test_return_t hsieh_avaibility_test (memcached_st *memc)
+{
+  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_HSIEH));
 
-  for (ptr= list_to_hash, x= 0; *ptr; ptr++, x++)
-  {
-    uint32_t hash_val;
+  test_compare(MEMCACHED_SUCCESS, 
+               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH,
+                                      (uint64_t)MEMCACHED_HASH_HSIEH));
 
-    hash_val= memcached_generate_hash(memc, *ptr, strlen(*ptr));
-    test_compare(crc_hosts[x], hash_val);
-  }
+  return TEST_SUCCESS;
+}
 
-  memcached_free(memc);
+test_return_t murmur_avaibility_test (memcached_st *memc)
+{
+  test_skip(true, libhashkit_has_algorithm(HASHKIT_HASH_MURMUR));
+
+  test_compare(MEMCACHED_SUCCESS,
+               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_HASH, (uint64_t)MEMCACHED_HASH_MURMUR));
 
   return TEST_SUCCESS;
 }
@@ -4026,92 +1818,6 @@ test_return_t memcached_get_by_key_MEMCACHED_NOTFOUND(memcached_st *memc)
   return TEST_SUCCESS;
 }
 
-test_return_t regression_bug_434484(memcached_st *memc)
-{
-  test_skip(TEST_SUCCESS, pre_binary(memc));
-
-  test_compare(MEMCACHED_NOTSTORED, 
-               memcached_append(memc, 
-                                test_literal_param(__func__), // Key
-                                test_literal_param(__func__), // Value
-                                0, 0));
-
-  libtest::vchar_t data;
-  data.resize(2048 * 1024);
-  test_compare(MEMCACHED_E2BIG,
-               memcached_set(memc, 
-                             test_literal_param(__func__), // Key
-                             &data[0], data.size(), 0, 0));
-
-  return TEST_SUCCESS;
-}
-
-test_return_t regression_bug_434843(memcached_st *original_memc)
-{
-  test_skip(TEST_SUCCESS, pre_binary(original_memc));
-
-  memcached_return_t rc;
-  size_t counter= 0;
-  memcached_execute_fn callbacks[]= { &callback_counter };
-
-  /*
-   * I only want to hit only _one_ server so I know the number of requests I'm
-   * sending in the pipleine to the server. Let's try to do a multiget of
-   * 1024 (that should satisfy most users don't you think?). Future versions
-   * will include a mget_execute function call if you need a higher number.
- */
-  memcached_st *memc= create_single_instance_memcached(original_memc, "--BINARY-PROTOCOL");
-
-  keys_st keys(1024);
-
-  /*
-   * Run two times.. the first time we should have 100% cache miss,
-   * and the second time we should have 100% cache hits
- */
-  for (ptrdiff_t y= 0; y < 2; y++)
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_mget(memc, keys.keys_ptr(), keys.lengths_ptr(), keys.size()));
-
-    // One the first run we should get a NOT_FOUND, but on the second some data
-    // should be returned.
-    test_compare(y ?  MEMCACHED_SUCCESS : MEMCACHED_NOTFOUND, 
-                 memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-
-    if (y == 0)
-    {
-      /* The first iteration should give me a 100% cache miss. verify that*/
-      char blob[1024]= { 0 };
-
-      test_false(counter);
-
-      for (size_t x= 0; x < keys.size(); ++x)
-      {
-        rc= memcached_add(memc, 
-                          keys.key_at(x), keys.length_at(x),
-                          blob, sizeof(blob), 0, 0);
-        test_true(rc == MEMCACHED_SUCCESS || rc == MEMCACHED_BUFFERED);
-      }
-    }
-    else
-    {
-      /* Verify that we received all of the key/value pairs */
-      test_compare(counter, keys.size());
-    }
-  }
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t regression_bug_434843_buffered(memcached_st *memc)
-{
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS, true));
-
-  return regression_bug_434843(memc);
-}
-
 test_return_t regression_bug_421108(memcached_st *memc)
 {
   memcached_return_t rc;
@@ -4147,227 +1853,6 @@ test_return_t regression_bug_421108(memcached_st *memc)
   return TEST_SUCCESS;
 }
 
-/*
- * The test case isn't obvious so I should probably document why
- * it works the way it does. Bug 442914 was caused by a bug
- * in the logic in memcached_purge (it did not handle the case
- * where the number of bytes sent was equal to the watermark).
- * In this test case, create messages so that we hit that case
- * and then disable noreply mode and issue a new command to
- * verify that it isn't stuck. If we change the format for the
- * delete command or the watermarks, we need to update this
- * test....
- */
-test_return_t regression_bug_442914(memcached_st *original_memc)
-{
-  test_skip(original_memc->servers[0].type, MEMCACHED_CONNECTION_TCP);
-
-  memcached_st* memc= create_single_instance_memcached(original_memc, "--NOREPLY --TCP-NODELAY");
-
-  for (uint32_t x= 0; x < 250; ++x)
-  {
-    char key[251];
-    size_t len= (size_t)snprintf(key, sizeof(key), "%0250u", x);
-    memcached_return_t rc= memcached_delete(memc, key, len, 0);
-    char error_buffer[2048]= { 0 };
-    snprintf(error_buffer, sizeof(error_buffer), "%s key: %s", memcached_last_error_message(memc), key);
-    test_true_got(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED, error_buffer);
-  }
-
-  // Delete, and then delete again to look for not found
-  {
-    char key[251];
-    size_t len= snprintf(key, sizeof(key), "%037u", 251U);
-    memcached_return_t rc= memcached_delete(memc, key, len, 0);
-    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED);
-
-    test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NOREPLY, false));
-    test_compare(MEMCACHED_NOTFOUND, memcached_delete(memc, key, len, 0));
-  }
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t regression_bug_447342(memcached_st *memc)
-{
-  if (memcached_server_count(memc) < 3 or pre_replication(memc) != TEST_SUCCESS)
-  {
-    return TEST_SKIPPED;
-  }
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NUMBER_OF_REPLICAS, 2));
-
-  keys_st keys(100);
-
-  for (size_t x= 0; x < keys.size(); ++x)
-  {
-    test_compare(MEMCACHED_SUCCESS,
-                 memcached_set(memc, 
-                               keys.key_at(x), keys.length_at(x), // Keys
-                               keys.key_at(x), keys.length_at(x), // Values
-                               0, 0));
-  }
-
-  /*
-   ** We are using the quiet commands to store the replicas, so we need
-   ** to ensure that all of them are processed before we can continue.
-   ** In the test we go directly from storing the object to trying to
-   ** receive the object from all of the different servers, so we
-   ** could end up in a race condition (the memcached server hasn't yet
-   ** processed the quiet command from the replication set when it process
-   ** the request from the other client (created by the clone)). As a
-   ** workaround for that we call memcached_quit to send the quit command
-   ** to the server and wait for the response ;-) If you use the test code
-   ** as an example for your own code, please note that you shouldn't need
-   ** to do this ;-)
- */
-  memcached_quit(memc);
-
-  /* Verify that all messages are stored, and we didn't stuff too much
-   * into the servers
- */
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, 
-                              keys.keys_ptr(), keys.lengths_ptr(), keys.size()));
-
-  unsigned int counter= 0;
-  memcached_execute_fn callbacks[]= { &callback_counter };
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-
-  /* Verify that we received all of the key/value pairs */
-  test_compare(counter, keys.size());
-
-  memcached_quit(memc);
-  /*
-   * Don't do the following in your code. I am abusing the internal details
-   * within the library, and this is not a supported interface.
-   * This is to verify correct behavior in the library. Fake that two servers
-   * are dead..
- */
-  const memcached_instance_st * instance_one= memcached_server_instance_by_position(memc, 0);
-  const memcached_instance_st * instance_two= memcached_server_instance_by_position(memc, 2);
-  in_port_t port0= instance_one->port();
-  in_port_t port2= instance_two->port();
-
-  ((memcached_server_write_instance_st)instance_one)->port(0);
-  ((memcached_server_write_instance_st)instance_two)->port(0);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc, 
-                              keys.keys_ptr(), keys.lengths_ptr(), keys.size()));
-
-  counter= 0;
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-  test_compare(counter, keys.size());
-
-  /* restore the memc handle */
-  ((memcached_server_write_instance_st)instance_one)->port(port0);
-  ((memcached_server_write_instance_st)instance_two)->port(port2);
-
-  memcached_quit(memc);
-
-  /* Remove half of the objects */
-  for (size_t x= 0; x < keys.size(); ++x)
-  {
-    if (x & 1)
-    {
-      test_compare(MEMCACHED_SUCCESS,
-                   memcached_delete(memc, keys.key_at(x), keys.length_at(x), 0));
-    }
-  }
-
-  memcached_quit(memc);
-  ((memcached_server_write_instance_st)instance_one)->port(0);
-  ((memcached_server_write_instance_st)instance_two)->port(0);
-
-  /* now retry the command, this time we should have cache misses */
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_mget(memc,
-                              keys.keys_ptr(), keys.lengths_ptr(), keys.size()));
-
-  counter= 0;
-  test_compare(MEMCACHED_SUCCESS, 
-               memcached_fetch_execute(memc, callbacks, (void *)&counter, 1));
-  test_compare(counter, (unsigned int)(keys.size() >> 1));
-
-  /* restore the memc handle */
-  ((memcached_server_write_instance_st)instance_one)->port(port0);
-  ((memcached_server_write_instance_st)instance_two)->port(port2);
-
-  return TEST_SUCCESS;
-}
-
-test_return_t regression_bug_463297(memcached_st *memc)
-{
-  test_compare(MEMCACHED_INVALID_ARGUMENTS, memcached_delete(memc, "foo", 3, 1));
-
-  // Since we blocked timed delete, this test is no longer valid.
-#if 0
-  memcached_st *memc_clone= memcached_clone(NULL, memc);
-  test_true(memc_clone);
-  test_true(memcached_version(memc_clone) == MEMCACHED_SUCCESS);
-
-  const memcached_instance_st * instance=
-    memcached_server_instance_by_position(memc_clone, 0);
-
-  if (instance->major_version > 1 ||
-      (instance->major_version == 1 &&
-       instance->minor_version > 2))
-  {
-    /* Binary protocol doesn't support deferred delete */
-    memcached_st *bin_clone= memcached_clone(NULL, memc);
-    test_true(bin_clone);
-    test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(bin_clone, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1));
-    test_compare(MEMCACHED_INVALID_ARGUMENTS, memcached_delete(bin_clone, "foo", 3, 1));
-    memcached_free(bin_clone);
-
-    memcached_quit(memc_clone);
-
-    /* If we know the server version, deferred delete should fail
-     * with invalid arguments */
-    test_compare(MEMCACHED_INVALID_ARGUMENTS, memcached_delete(memc_clone, "foo", 3, 1));
-
-    /* If we don't know the server version, we should get a protocol error */
-    memcached_return_t rc= memcached_delete(memc, "foo", 3, 1);
-
-    /* but there is a bug in some of the memcached servers (1.4) that treats
-     * the counter as noreply so it doesn't send the proper error message
-   */
-    test_true_got(rc == MEMCACHED_PROTOCOL_ERROR || rc == MEMCACHED_NOTFOUND || rc == MEMCACHED_CLIENT_ERROR || rc == MEMCACHED_INVALID_ARGUMENTS, memcached_strerror(NULL, rc));
-
-    /* And buffered mode should be disabled and we should get protocol error */
-    test_true(memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS, 1) == MEMCACHED_SUCCESS);
-    rc= memcached_delete(memc, "foo", 3, 1);
-    test_true_got(rc == MEMCACHED_PROTOCOL_ERROR || rc == MEMCACHED_NOTFOUND || rc == MEMCACHED_CLIENT_ERROR || rc == MEMCACHED_INVALID_ARGUMENTS, memcached_strerror(NULL, rc));
-
-    /* Same goes for noreply... */
-    test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NOREPLY, 1));
-    rc= memcached_delete(memc, "foo", 3, 1);
-    test_true_got(rc == MEMCACHED_PROTOCOL_ERROR || rc == MEMCACHED_NOTFOUND || rc == MEMCACHED_CLIENT_ERROR || rc == MEMCACHED_INVALID_ARGUMENTS, memcached_strerror(NULL, rc));
-
-    /* but a normal request should go through (and be buffered) */
-    test_compare(MEMCACHED_BUFFERED, (rc= memcached_delete(memc, "foo", 3, 0)));
-    test_compare(MEMCACHED_SUCCESS, memcached_flush_buffers(memc));
-
-    test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS, 0));
-    /* unbuffered noreply should be success */
-    test_compare(MEMCACHED_SUCCESS, memcached_delete(memc, "foo", 3, 0));
-    /* unbuffered with reply should be not found... */
-    test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NOREPLY, 0));
-    test_compare(MEMCACHED_NOTFOUND, memcached_delete(memc, "foo", 3, 0));
-  }
-
-  memcached_free(memc_clone);
-#endif
-
-  return TEST_SUCCESS;
-}
-
 
 /* Test memcached_server_get_last_disconnect
  * For a working server set, shall be NULL
@@ -4581,104 +2066,6 @@ test_return_t wrong_failure_counter_two_test(memcached_st *memc)
   return TEST_SUCCESS;
 }
 
-test_return_t regression_996813_TEST(memcached_st *)
-{
-  memcached_st* memc= memcached_create(NULL);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION, MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, 1));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_TCP_NODELAY, 1));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_POLL_TIMEOUT, 1));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_CONNECT_TIMEOUT, 300));
-  test_compare(MEMCACHED_SUCCESS, memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_RETRY_TIMEOUT, 30));
-
-  // We will never connect to these servers
-  in_port_t base_port= 11211;
-  for (size_t x= 0; x < 17; x++)
-  {
-    test_compare(MEMCACHED_SUCCESS, memcached_server_add(memc, "10.2.3.4", base_port +x));
-  }
-  test_compare(6U, memcached_generate_hash(memc, test_literal_param("SZ6hu0SHweFmpwpc0w2R")));
-  test_compare(1U, memcached_generate_hash(memc, test_literal_param("SQCK9eiCf53YxHWnYA.o")));
-  test_compare(9U, memcached_generate_hash(memc, test_literal_param("SUSDkGXuuZC9t9VhMwa.")));
-  test_compare(0U, memcached_generate_hash(memc, test_literal_param("SnnqnJARfaCNT679iAF_")));
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-
-/*
- * Test that ensures mget_execute does not end into recursive calls that finally fails
- */
-test_return_t regression_bug_490486(memcached_st *original_memc)
-{
-
-#ifdef __APPLE__
-  return TEST_SKIPPED; // My MAC can't handle this test
-#endif
-
-  test_skip(TEST_SUCCESS, pre_binary(original_memc));
-
-  /*
-   * I only want to hit _one_ server so I know the number of requests I'm
-   * sending in the pipeline.
- */
-  memcached_st *memc= create_single_instance_memcached(original_memc, "--BINARY-PROTOCOL --POLL-TIMEOUT=1000 --REMOVE-FAILED-SERVERS=1 --RETRY-TIMEOUT=3600");
-  test_true(memc);
-
-  keys_st keys(20480);
-
-  /* First add all of the items.. */
-  char blob[1024]= { 0 };
-  for (size_t x= 0; x < keys.size(); ++x)
-  {
-    memcached_return rc= memcached_set(memc,
-                                       keys.key_at(x), keys.length_at(x),
-                                       blob, sizeof(blob), 0, 0);
-    test_true(rc == MEMCACHED_SUCCESS or rc == MEMCACHED_BUFFERED); // MEMCACHED_TIMEOUT <-- hash been observed on OSX
-  }
-
-  {
-
-    /* Try to get all of them with a large multiget */
-    size_t counter= 0;
-    memcached_execute_function callbacks[]= { &callback_counter };
-    memcached_return_t rc= memcached_mget_execute(memc,
-                                                  keys.keys_ptr(), keys.lengths_ptr(), keys.size(),
-                                                  callbacks, &counter, 1);
-    test_compare(MEMCACHED_SUCCESS, rc);
-
-    char* the_value= NULL;
-    char the_key[MEMCACHED_MAX_KEY];
-    size_t the_key_length;
-    size_t the_value_length;
-    uint32_t the_flags;
-
-    do {
-      the_value= memcached_fetch(memc, the_key, &the_key_length, &the_value_length, &the_flags, &rc);
-
-      if ((the_value!= NULL) && (rc == MEMCACHED_SUCCESS))
-      {
-        ++counter;
-        free(the_value);
-      }
-
-    } while ( (the_value!= NULL) && (rc == MEMCACHED_SUCCESS));
-
-
-    test_compare(MEMCACHED_END, rc);
-
-    /* Verify that we got all of the items */
-    test_compare(counter, keys.size());
-  }
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
 
 test_return_t regression_1021819_TEST(memcached_st *original)
 {
@@ -4967,129 +2354,3 @@ static void die_message(memcached_st* mc, memcached_return error, const char* wh
             memcached_strerror(mc, error));
   }
 }
-
-#define TEST_CONSTANT_CREATION 200
-
-test_return_t regression_bug_(memcached_st *memc)
-{
-  const char *remote_server;
-  (void)memc;
-
-  if (! (remote_server= getenv("LIBMEMCACHED_REMOTE_SERVER")))
-  {
-    return TEST_SKIPPED;
-  }
-
-  for (uint32_t x= 0; x < TEST_CONSTANT_CREATION; x++)
-  {
-    memcached_st* mc= memcached_create(NULL);
-    memcached_return rc;
-
-    rc= memcached_behavior_set(mc, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1);
-    if (rc != MEMCACHED_SUCCESS)
-    {
-      die_message(mc, rc, "memcached_behavior_set", x);
-    }
-
-    rc= memcached_behavior_set(mc, MEMCACHED_BEHAVIOR_CACHE_LOOKUPS, 1);
-    if (rc != MEMCACHED_SUCCESS)
-    {
-      die_message(mc, rc, "memcached_behavior_set", x);
-    }
-
-    rc= memcached_server_add(mc, remote_server, 0);
-    if (rc != MEMCACHED_SUCCESS)
-    {
-      die_message(mc, rc, "memcached_server_add", x);
-    }
-
-    const char *set_key= "akey";
-    const size_t set_key_len= strlen(set_key);
-    const char *set_value= "a value";
-    const size_t set_value_len= strlen(set_value);
-
-    if (rc == MEMCACHED_SUCCESS)
-    {
-      if (x > 0)
-      {
-        size_t get_value_len;
-        char *get_value;
-        uint32_t get_value_flags;
-
-        get_value= memcached_get(mc, set_key, set_key_len, &get_value_len,
-                                 &get_value_flags, &rc);
-        if (rc != MEMCACHED_SUCCESS)
-        {
-          die_message(mc, rc, "memcached_get", x);
-        }
-        else
-        {
-
-          if (x != 0 &&
-              (get_value_len != set_value_len
-               || 0!=strncmp(get_value, set_value, get_value_len)))
-          {
-            fprintf(stderr, "Values don't match?\n");
-            rc= MEMCACHED_FAILURE;
-          }
-          free(get_value);
-        }
-      }
-
-      rc= memcached_set(mc,
-                        set_key, set_key_len,
-                        set_value, set_value_len,
-                        0, /* time */
-                        0  /* flags */
-                       );
-      if (rc != MEMCACHED_SUCCESS)
-      {
-        die_message(mc, rc, "memcached_set", x);
-      }
-    }
-
-    memcached_quit(mc);
-    memcached_free(mc);
-
-    if (rc != MEMCACHED_SUCCESS)
-    {
-      break;
-    }
-  }
-
-  return TEST_SUCCESS;
-}
-
-test_return_t kill_TEST(memcached_st *original_memc)
-{
-  memcached_st *memc= create_single_instance_memcached(original_memc, 0);
-  test_true(memc);
-
-  const memcached_instance_st * instance= memcached_server_instance_by_position(memc, 0);
-
-  pid_t pid;
-  test_true((pid= libmemcached_util_getpid(memcached_server_name(instance),
-                                           memcached_server_port(instance), NULL)) > -1);
-
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc, 
-                             test_literal_param(__func__), // Keys
-                             test_literal_param(__func__), // Values
-                             0, 0));
-  test_true_got(kill(pid, SIGTERM) == 0, strerror(errno));
-
-  memcached_return_t ret= memcached_set(memc, 
-                                        test_literal_param(__func__), // Keys
-                                        test_literal_param(__func__), // Values
-                                        0, 0);
-  if (ret == MEMCACHED_ERRNO) {
-    test_compare(EPIPE, memcached_last_error_errno(memc));
-  } else {
-    test_compare(MEMCACHED_CONNECTION_FAILURE, ret);
-  }
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
diff --git a/tests/libmemcached_test_container.h b/tests/libmemcached_test_container.h
deleted file mode 100644 (file)
index dd645b9..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-#pragma once
-
-/* The structure we use for the test system */
-struct libmemcached_test_container_st
-{
-private:
-  memcached_st *_parent;
-
-public:
-  libtest::server_startup_st& construct;
-
-  libmemcached_test_container_st(libtest::server_startup_st &construct_arg) :
-    _parent(NULL),
-    construct(construct_arg)
-  { }
-
-  memcached_st* parent()
-  {
-    return _parent;
-  }
-
-  void parent(memcached_st* arg)
-  {
-    assert(_parent != arg);
-    reset();
-    _parent= arg;
-  }
-
-  void reset()
-  {
-    if (_parent)
-    {
-      memcached_free(_parent);
-      _parent= NULL;
-    }
-  }
-
-  ~libmemcached_test_container_st()
-  {
-    reset();
-  }
-};
-
-
diff --git a/tests/libmemcached_world.h b/tests/libmemcached_world.h
deleted file mode 100644 (file)
index a536093..0000000
+++ /dev/null
@@ -1,113 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  Copyright (C) 2006-2009 Brian Aker
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-#pragma once
-
-#include "tests/libmemcached_test_container.h"
-
-static char *sasl_pwdb = const_cast<char *>(LIBMEMCACHED_WITH_SASL_PWDB);
-static char *sasl_conf = const_cast<char *>(LIBMEMCACHED_WITH_SASL_CONF);
-
-static void *world_create(libtest::server_startup_st& servers, test_return_t& error)
-{
-  SKIP_UNLESS(libtest::has_libmemcached());
-
-  if (servers.sasl())
-  {
-    SKIP_UNLESS(libtest::has_libmemcached_sasl());
-
-    // Assume we are running under valgrind, and bail
-    if (getenv("LOG_COMPILER"))
-    {
-      error= TEST_SKIPPED;
-      return NULL;
-    }
-
-    // provide conf and pwdb to memcached binary
-    putenv(sasl_pwdb);
-    putenv(sasl_conf);
-  }
-
-  for (uint32_t x= 0; x < servers.servers_to_run(); x++)
-  {
-    in_port_t port= libtest::get_free_port();
-
-    if (servers.sasl())
-    {
-      if (server_startup(servers, "memcached-sasl", port, NULL) == false)
-      {
-        error= TEST_SKIPPED;
-        return NULL;
-      }
-    }
-    else
-    {
-      if (server_startup(servers, "memcached", port, NULL) == false)
-      {
-        error= TEST_SKIPPED;
-        return NULL;
-      }
-    }
-  }
-
-  libmemcached_test_container_st *global_container= new libmemcached_test_container_st(servers);
-
-  return global_container;
-}
-
-static bool world_destroy(void *object)
-{
-  libmemcached_test_container_st *container= (libmemcached_test_container_st *)object;
-#if 0
-#if defined(LIBMEMCACHED_WITH_SASL_SUPPORT) && LIBMEMCACHED_WITH_SASL_SUPPORT
-  if (LIBMEMCACHED_WITH_SASL_SUPPORT)
-  {
-    sasl_done();
-  }
-#endif
-#endif
-
-  delete container;
-
-  return TEST_SUCCESS;
-}
-
-typedef test_return_t (*libmemcached_test_callback_fn)(memcached_st *);
-
-#include "tests/runner.h"
diff --git a/tests/libmemcached_world_socket.h b/tests/libmemcached_world_socket.h
deleted file mode 100644 (file)
index 69f0a91..0000000
+++ /dev/null
@@ -1,95 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/
- *  Copyright (C) 2006-2009 Brian Aker
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-#pragma once
-
-#include <cassert>
-
-#include "tests/libmemcached_test_container.h"
-
-static void *world_create(libtest::server_startup_st& servers, test_return_t& error)
-{
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  for (uint32_t x= 0; x < servers.servers_to_run(); x++)
-  {
-    const char *argv[]= { "memcached", 0 };
-    if (servers.start_socket_server("memcached", libtest::get_free_port(), argv) == false)
-    {
-#if 0
-      fatal_message("Could not launch memcached");
-#endif
-      error= TEST_SKIPPED;
-      return NULL;
-    }
-  }
-
-
-  libmemcached_test_container_st *global_container= new libmemcached_test_container_st(servers);
-
-  error= TEST_SUCCESS;
-
-  return global_container;
-}
-
-static bool world_destroy(void *object)
-{
-  libmemcached_test_container_st *container= (libmemcached_test_container_st *)object;
-
-#if 0
-#if defined(LIBMEMCACHED_WITH_SASL_SUPPORT) && LIBMEMCACHED_WITH_SASL_SUPPORT
-  if (LIBMEMCACHED_WITH_SASL_SUPPORT)
-  {
-    sasl_done();
-  }
-#endif
-#endif
-
-  delete container;
-
-  return TEST_SUCCESS;
-}
-
-typedef test_return_t (*libmemcached_test_callback_fn)(memcached_st *);
-
-#include "tests/runner.h"
diff --git a/tests/memc.hpp b/tests/memc.hpp
deleted file mode 100644 (file)
index 5e7621b..0000000
+++ /dev/null
@@ -1,104 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached library
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-namespace test {
-
-class Memc {
-public:
-  Memc()
-  {
-    _memc= memcached_create(NULL);
-
-    if (_memc == NULL)
-    {
-      throw "memcached_create() failed";
-    }
-  }
-
-  Memc(const memcached_st* arg)
-  {
-    _memc= memcached_clone(NULL, arg);
-
-    if (_memc == NULL)
-    {
-      throw "memcached_clone() failed";
-    }
-  }
-
-  Memc(const std::string& arg)
-  {
-    _memc= memcached(arg.c_str(), arg.size());
-    if (_memc == NULL)
-    {
-      throw "memcached() failed";
-    }
-  }
-
-  Memc(in_port_t arg)
-  {
-    _memc= memcached_create(NULL);
-
-    if (_memc == NULL)
-    {
-      throw "memcached_create() failed";
-    }
-    memcached_server_add(_memc, "localhost", arg);
-  }
-
-  memcached_st* operator&() const
-  { 
-    return _memc;
-  }
-
-  memcached_st* operator->() const
-  { 
-    return _memc;
-  }
-
-  ~Memc()
-  {
-    memcached_free(_memc);
-  }
-
-private:
-  memcached_st *_memc;
-
-};
-
-} // namespace test
diff --git a/tests/memcat.cc b/tests/memcat.cc
deleted file mode 100644 (file)
index 1da52fd..0000000
+++ /dev/null
@@ -1,151 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Test memcat
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static std::string executable("src/bin/memcat");
-
-static test_return_t help_test(void *)
-{
-  const char *args[]= { "--help", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t cat_test(void *)
-{
-  char buffer[1024];
-  int length= snprintf(buffer, sizeof(buffer), "--server=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, "foo", 0 };
-
-  memcached_st *memc= memcached(buffer, length);
-  test_true(memc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc, test_literal_param("foo"), 0, 0, 0, 0));
-
-  memcached_return_t rc;
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t NOT_FOUND_test(void *)
-{
-  char buffer[1024];
-  int length= snprintf(buffer, sizeof(buffer), "--server=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, "foo", 0 };
-
-  memcached_st *memc= memcached(buffer, length);
-  ASSERT_TRUE(memc);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc, 0));
-
-  memcached_return_t rc;
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
-  test_compare(EXIT_FAILURE, exec_cmdline(executable, args, true));
-
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_st memcat_tests[] ={
-  {"--help", true, help_test },
-  {"cat(FOUND)", true, cat_test },
-  {"cat(NOT_FOUND)", true, NOT_FOUND_test },
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"memcat", 0, 0, memcat_tests },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st& servers, test_return_t& error)
-{
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  if (not server_startup(servers, "memcached", libtest::default_port(), NULL))
-  {
-    error= TEST_FAILURE;
-  }
-
-  return &servers;
-}
-
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/memcp.cc b/tests/memcp.cc
deleted file mode 100644 (file)
index 89ded54..0000000
+++ /dev/null
@@ -1,123 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Test memcp
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-
-#include <sys/stat.h>
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static std::string executable("./src/bin/memcp");
-
-static test_return_t help_test(void *)
-{
-  const char *args[]= { "--help", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-#if 0
-static test_return_t server_test(void *)
-{
-  int fd;
-  std::string tmp_file= create_tmpfile("memcp", fd);
-  ASSERT_TRUE(tmp_file.c_str());
-  struct stat buf;
-  ASSERT_EQ(fstat(fd, &buf), 0);
-  ASSERT_EQ(buf.st_size, 0);
-
-  char buffer[1024];
-  snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, tmp_file.c_str(), 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-  close(fd);
-  unlink(tmp_file.c_str());
-
-  return TEST_SUCCESS;
-}
-#endif
-
-test_st memcp_tests[] ={
-  {"--help", true, help_test },
-#if 0
-  {"--server_test", true, server_test },
-#endif
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"memcp", 0, 0, memcp_tests },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st& servers, test_return_t& error)
-{
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  if (server_startup(servers, "memcached", libtest::default_port(), NULL) == false)
-  {
-    error= TEST_FAILURE;
-  }
-
-  return &servers;
-}
-
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/memdump.cc b/tests/memdump.cc
deleted file mode 100644 (file)
index 0ad421f..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Test memdump
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static std::string executable("./src/bin/memdump");
-
-static test_return_t help_test(void *)
-{
-  const char *args[]= { "--help", "--quiet", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t server_test(void *)
-{
-  char buffer[1024];
-  snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, 0 };
-
-  test_true(exec_cmdline(executable, args, true) <= EXIT_FAILURE);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t FOUND_test(void *)
-{
-  char buffer[1024];
-  int length= snprintf(buffer, sizeof(buffer), "--server=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, 0 };
-
-  memcached_st *memc= memcached(buffer, length);
-  test_true(memc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc, test_literal_param("foo"), 0, 0, 0, 0));
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc, test_literal_param("foo2"), 0, 0, 0, 0));
-
-  memcached_return_t rc;
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  length= snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
-  test_true(exec_cmdline(executable, args, true) <= EXIT_FAILURE);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-test_st memdump_tests[] ={
-  {"--help", true, help_test },
-  {"--server", true, server_test },
-  {"FOUND", true, FOUND_test },
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"memdump", 0, 0, memdump_tests },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st& servers, test_return_t&)
-{
-  SKIP_UNLESS(libtest::has_memcached());
-
-  ASSERT_TRUE(server_startup(servers, "memcached", libtest::default_port(), NULL));
-
-  return &servers;
-}
-
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/memerror.cc b/tests/memerror.cc
deleted file mode 100644 (file)
index 816ef9d..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Test memerror
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static std::string executable("./src/bin/memerror");
-
-static test_return_t help_TEST(void *)
-{
-  const char *args[]= { "--help", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t version_TEST(void *)
-{
-  const char *args[]= { "--version", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t error_test(void *)
-{
-  const char *args[]= { "memcached_success", 0 };
-
-  test_compare(EXIT_FAILURE, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t SUCCESS_TEST(void *)
-{
-  const char *args[]= { "0", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t bad_input_test(void *)
-{
-  const char *args[]= { "bad input", 0 };
-
-  test_compare(EXIT_FAILURE, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-test_st memerror_tests[] ={
-  {"--help", 0, help_TEST},
-  {"--version", 0, version_TEST},
-  {"<error>", 0, error_test},
-  {"0", 0, SUCCESS_TEST},
-  {"<bad input>", 0, bad_input_test},
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"memerror", 0, 0, memerror_tests },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st&, test_return_t& error)
-{
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  return NULL;
-}
-
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/memexist.cc b/tests/memexist.cc
deleted file mode 100644 (file)
index b081e68..0000000
+++ /dev/null
@@ -1,166 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Test memexist
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-#include "libmemcachedutil-1.0/util.h"
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static std::string executable("./src/bin/memexist");
-
-static test_return_t help_test(void *)
-{
-  const char *args[]= { "--help", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-  return TEST_SUCCESS;
-}
-
-static test_return_t exist_test(void *)
-{
-  char buffer[1024];
-  int length= snprintf(buffer, sizeof(buffer), "--server=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, "foo", 0 };
-
-  memcached_st *memc= memcached(buffer, length);
-  test_true(memc);
-
-  test_compare(MEMCACHED_SUCCESS,
-               memcached_set(memc, test_literal_param("foo"), 0, 0, 0, 0));
-
-  memcached_return_t rc;
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_SUCCESS, rc);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t NOT_FOUND_test(void *)
-{
-  char buffer[1024];
-  int length= snprintf(buffer, sizeof(buffer), "--server=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, "foo", 0 };
-
-  memcached_st *memc= memcached(buffer, length);
-  ASSERT_TRUE(memc);
-
-  test_compare(MEMCACHED_SUCCESS, memcached_flush(memc, 0));
-
-  memcached_return_t rc;
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  test_compare(EXIT_FAILURE, exec_cmdline(executable, args, true));
-
-  test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc));
-  test_compare(MEMCACHED_NOTFOUND, rc);
-
-  memcached_free(memc);
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t check_version(void*)
-{
-  char buffer[1024];
-  int length= snprintf(buffer, sizeof(buffer), "--server=localhost:%d", int(default_port()));
-  memcached_st *memc= memcached(buffer, length);
-  ASSERT_TRUE(memc);
-  
-  test_return_t result= TEST_SUCCESS;
-  if (libmemcached_util_version_check(memc, 1, 4, 8) == false)
-  {
-    result= TEST_SKIPPED;
-  }
-  memcached_free(memc);
-
-  return result;
-}
-
-test_st memexist_tests[] ={
-  {"--help", true, help_test },
-  {"exist(FOUND)", true, exist_test },
-  {"exist(NOT_FOUND)", true, NOT_FOUND_test },
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"memexist", check_version, 0, memexist_tests },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st& servers, test_return_t& error)
-{
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  if (server_startup(servers, "memcached", libtest::default_port(), NULL) == false)
-  {
-    error= TEST_SKIPPED;
-  }
-
-  return &servers;
-}
-
-
-void get_world(libtest::Framework* world)
-{
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/memflush.cc b/tests/memflush.cc
deleted file mode 100644 (file)
index 06b38ea..0000000
+++ /dev/null
@@ -1,119 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Test memflush
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-/*
-  Test that we are cycling the servers we are creating during testing.
-*/
-
-#include "mem_config.h"
-
-#include "libtest/test.hpp"
-#include "libmemcached-1.0/memcached.h"
-
-using namespace libtest;
-
-#ifndef __INTEL_COMPILER
-#pragma GCC diagnostic ignored "-Wstrict-aliasing"
-#endif
-
-static std::string executable;
-
-static test_return_t quiet_test(void *)
-{
-  const char *args[]= { "--quiet", 0 };
-
-  test_compare(EXIT_FAILURE, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t help_test(void *)
-{
-  const char *args[]= { "--help", 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-static test_return_t server_test(void *)
-{
-  char buffer[1024];
-  snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
-  const char *args[]= { buffer, 0 };
-
-  test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true));
-
-  return TEST_SUCCESS;
-}
-
-test_st memflush_tests[] ={
-  {"--quiet", true, quiet_test },
-  {"--help", true, help_test },
-  {"--server", true, server_test },
-  {0, 0, 0}
-};
-
-collection_st collection[] ={
-  {"memflush", 0, 0, memflush_tests },
-  {0, 0, 0, 0}
-};
-
-static void *world_create(server_startup_st& servers, test_return_t& error)
-{
-  if (libtest::has_memcached() == false)
-  {
-    error= TEST_SKIPPED;
-    return NULL;
-  }
-
-  if (server_startup(servers, "memcached", libtest::default_port(), NULL) == 0)
-  {
-    error= TEST_SKIPPED;
-  }
-
-  return &servers;
-}
-
-
-void get_world(libtest::Framework* world)
-{
-  executable= "./src/bin/memflush";
-  world->collections(collection);
-  world->create(world_create);
-}
-
diff --git a/tests/namespace.h b/tests/namespace.h
deleted file mode 100644 (file)
index a3d6a10..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-LIBTEST_LOCAL
-test_return_t memcached_increment_namespace(memcached_st *memc);
diff --git a/tests/pool.h b/tests/pool.h
deleted file mode 100644 (file)
index b7b29ee..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached client and server library.
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t memcached_pool_test(memcached_st *);
-test_return_t connection_pool_test(memcached_st *);
-test_return_t connection_pool2_test(memcached_st *);
-test_return_t connection_pool3_test(memcached_st *);
-test_return_t regression_bug_962815(memcached_st *);
diff --git a/tests/print.h b/tests/print.h
deleted file mode 100644 (file)
index f5fcf89..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached client and server library.
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-memcached_return_t server_print_callback(const memcached_st *ptr,
-                                         const memcached_instance_st *server,
-                                         void *context);
-
-memcached_return_t server_print_version_callback(const memcached_st *ptr,
-                                                 const memcached_server_st *server,
-                                                 void *context);
-
-const char * print_version(memcached_st *memc);
diff --git a/tests/replication.h b/tests/replication.h
deleted file mode 100644 (file)
index fb9cd88..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached client and server library.
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t replication_set_test(memcached_st *memc);
-
-test_return_t replication_get_test(memcached_st *memc);
-
-test_return_t replication_mget_test(memcached_st *memc);
-
-test_return_t replication_delete_test(memcached_st *memc);
-
-test_return_t replication_randomize_mget_test(memcached_st *memc);
-
-test_return_t replication_randomize_mget_fail_test(memcached_st *memc);
-
-test_return_t replication_miss_test(memcached_st *memc);
-
-test_return_t check_replication_sanity_TEST(memcached_st*);
diff --git a/tests/runner.h b/tests/runner.h
deleted file mode 100644 (file)
index 17bf55a..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2012 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-
-#pragma once
-
-#include "tests/libmemcached-1.0/generate.h"
-#include "tests/memc.hpp"
-#include "tests/print.h"
-
-class LibmemcachedRunner : public libtest::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);
-  }
-
-  test_return_t flush(void* arg)
-  {
-    return flush((libmemcached_test_container_st*)arg);
-  }
-
-  test_return_t flush(libmemcached_test_container_st *container)
-  {
-    test::Memc memc(container->parent());
-    memcached_flush(&memc, 0);
-    memcached_quit(&memc);
-
-    return TEST_SUCCESS;
-  }
-
-  test_return_t pre(test_callback_fn* func, void *object)
-  {
-    return _pre_runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object);
-  }
-
-  test_return_t post(test_callback_fn* func, void *object)
-  {
-    return _post_runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object);
-  }
-
-private:
-  test_return_t _runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container)
-  {
-    test_true(container);
-    test_true(container->parent());
-    test::Memc memc(container->parent());
-
-    test_compare(true, check());
-
-    test_return_t ret= TEST_SUCCESS;
-    if (func)
-    {
-      test_true(container);
-      ret= func(&memc);
-    }
-
-    return ret;
-  }
-
-  test_return_t _pre_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container)
-  {
-    container->reset();
-    {
-      char buffer[BUFSIZ];
-
-      test_compare(MEMCACHED_SUCCESS,
-                   libmemcached_check_configuration(container->construct.option_string().c_str(), container->construct.option_string().size(),
-                                                    buffer, sizeof(buffer)));
-
-      test_null(container->parent());
-      container->parent(memcached(container->construct.option_string().c_str(), container->construct.option_string().size()));
-      test_true(container->parent());
-#if 0
-      test_compare(MEMCACHED_SUCCESS, memcached_version(container->parent()));
-#endif
-
-      if (container->construct.sasl())
-      {
-        if (memcached_failed(memcached_behavior_set(container->parent(), MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1)))
-        {
-          container->reset();
-          return TEST_FAILURE;
-        }
-
-        if (memcached_failed(memcached_set_sasl_auth_data(container->parent(), container->construct.username().c_str(), container->construct.password().c_str())))
-        {
-          container->reset();
-          return TEST_FAILURE;
-        }
-      }
-    }
-
-    test_compare(true, check());
-
-    if (func)
-    {
-      return func(container->parent());
-    }
-
-    return TEST_SUCCESS;
-  }
-
-  test_return_t _post_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container)
-  {
-    test_compare(true, check());
-    cleanup_pairs(NULL);
-
-    test_return_t rc= TEST_SUCCESS;
-    if (func)
-    {
-      rc= func(container->parent());
-    }
-    container->reset();
-
-    return rc;
-  }
-};
-
diff --git a/tests/server_add.h b/tests/server_add.h
deleted file mode 100644 (file)
index 426571c..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t memcached_server_add_null_test(memcached_st*);
-test_return_t memcached_server_add_empty_test(memcached_st*);
-test_return_t memcached_server_many_TEST(memcached_st*);
-test_return_t memcached_server_many_weighted_TEST(memcached_st*);
-test_return_t memcached_servers_reset_test(memcached_st*);
diff --git a/tests/string.h b/tests/string.h
deleted file mode 100644 (file)
index 7abbe71..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached client and server library.
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-LIBTEST_LOCAL
-test_return_t string_static_null(void *);
-
-LIBTEST_LOCAL
-test_return_t string_alloc_null(void *);
-
-LIBTEST_LOCAL
-test_return_t string_alloc_with_size(void *);
-
-LIBTEST_LOCAL
-test_return_t string_alloc_with_size_toobig(void *);
-
-LIBTEST_LOCAL
-test_return_t string_alloc_append(void *);
-
-LIBTEST_LOCAL
-test_return_t string_alloc_append_toobig(void *);
-
-LIBTEST_LOCAL
-test_return_t string_alloc_append_multiple(void *);
-
-#ifdef __cplusplus
-}
-#endif
diff --git a/tests/touch.h b/tests/touch.h
deleted file mode 100644 (file)
index 1cf2813..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-test_return_t test_memcached_touch(memcached_st *);
-test_return_t test_memcached_touch_by_key(memcached_st *);
diff --git a/tests/virtual_buckets.h b/tests/virtual_buckets.h
deleted file mode 100644 (file)
index 297ee10..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
- * 
- *  Libmemcached Client and Server 
- *
- *  Copyright (C) 2011 Data Differential, http://datadifferential.com/
- *  All rights reserved.
- *
- *  Redistribution and use in source and binary forms, with or without
- *  modification, are permitted provided that the following conditions are
- *  met:
- *
- *      * Redistributions of source code must retain the above copyright
- *  notice, this list of conditions and the following disclaimer.
- *
- *      * Redistributions in binary form must reproduce the above
- *  copyright notice, this list of conditions and the following disclaimer
- *  in the documentation and/or other materials provided with the
- *  distribution.
- *
- *      * The names of its contributors may not be used to endorse or
- *  promote products derived from this software without specific prior
- *  written permission.
- *
- *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- *  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- *  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- *  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- *  OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- *  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- *  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- *  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- */
-
-#pragma once
-
-struct memcached_st;
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-LIBTEST_LOCAL
-test_return_t virtual_back_map(memcached_st *);
-
-#ifdef __cplusplus
-}
-#endif