X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fplus.cpp;h=1b5631d144fc29e6b7a81c2d31fac9b236db86ce;hb=aa2acacce631a544d7915102b7c6c22f4ef4458d;hp=7ede21564c93d00eb07c7ce2fec097a8a5ed258a;hpb=2976ddecb2bc80db436386bf332cbb63dd238330;p=m6w6%2Flibmemcached diff --git a/tests/plus.cpp b/tests/plus.cpp index 7ede2156..1b5631d1 100644 --- a/tests/plus.cpp +++ b/tests/plus.cpp @@ -1,39 +1,63 @@ +/* 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 + /* C++ interface test */ -#include "libmemcached/memcached.hpp" +#include +#include -#include -#include -#include -#include +#include +#include +#include #include #include #include #include -#include -#include "server.h" - -#include "test.h" +#include #include #include using namespace std; using namespace memcache; - -extern "C" { - test_return basic_test(memcached_st *memc); - test_return increment_test(memcached_st *memc); - test_return basic_master_key_test(memcached_st *memc); - test_return mget_result_function(memcached_st *memc); - test_return mget_test(memcached_st *memc); - memcached_return callback_counter(memcached_st *, - memcached_result_st *, - void *context); - void *world_create(void); - void world_destroy(void *p); -} +using namespace libtest; static void populate_vector(vector &vec, const string &str) { @@ -44,13 +68,13 @@ static void populate_vector(vector &vec, const string &str) static void copy_vec_to_string(vector &vec, string &str) { str.clear(); - if (! vec.empty()) + if (not vec.empty()) { str.assign(vec.begin(), vec.end()); } } -test_return basic_test(memcached_st *memc) +static test_return_t basic_test(memcached_st *memc) { Memcache foo(memc); const string value_set("This is some data"); @@ -59,31 +83,18 @@ test_return basic_test(memcached_st *memc) populate_vector(value, value_set); - foo.set("mine", value, 0, 0); - foo.get("mine", test_value); + test_true(foo.set("mine", value, 0, 0)); + test_true(foo.get("mine", test_value)); - assert((memcmp(&test_value[0], &value[0], test_value.size()) == 0)); + test_memcmp(&test_value[0], &value[0], test_value.size()); + test_false(foo.set("", value, 0, 0)); - /* - * Simple test of the exceptions here...this should throw an exception - * saying that the key is empty. - */ - try - { - foo.set("", value, 0, 0); - } - catch (Error &err) - { - return TEST_SUCCESS; - } - - return TEST_FAILURE; + return TEST_SUCCESS; } -test_return increment_test(memcached_st *memc) +static test_return_t increment_test(memcached_st *original) { - Memcache mcach(memc); - bool rc; + Memcache mcach(original); const string key("blah"); const string inc_value("1"); std::vector inc_val; @@ -94,40 +105,31 @@ test_return increment_test(memcached_st *memc) populate_vector(inc_val, inc_value); - rc= mcach.set(key, inc_val, 0, 0); - if (rc == false) - { - return TEST_FAILURE; - } - mcach.get(key, ret_value); - if (ret_value.empty()) - { - return TEST_FAILURE; - } + test_true(mcach.set(key, inc_val, 0, 0)); + + test_true(mcach.get(key, ret_value)); + test_false(ret_value.empty()); copy_vec_to_string(ret_value, ret_string); int_inc_value= uint64_t(atol(inc_value.c_str())); int_ret_value= uint64_t(atol(ret_string.c_str())); - assert(int_ret_value == int_inc_value); + test_compare(int_inc_value, int_ret_value); - rc= mcach.increment(key, 1, &int_ret_value); - assert(rc == true); - assert(int_ret_value == 2); + test_true(mcach.increment(key, 1, &int_ret_value)); + test_compare(uint64_t(2), int_ret_value); - rc= mcach.increment(key, 1, &int_ret_value); - assert(rc == true); - assert(int_ret_value == 3); + test_true(mcach.increment(key, 1, &int_ret_value)); + test_compare(uint64_t(3), int_ret_value); - rc= mcach.increment(key, 5, &int_ret_value); - assert(rc == true); - assert(int_ret_value == 8); + test_true(mcach.increment(key, 5, &int_ret_value)); + test_compare(uint64_t(8), int_ret_value); return TEST_SUCCESS; } -test_return basic_master_key_test(memcached_st *memc) +static test_return_t basic_master_key_test(memcached_st *original) { - Memcache foo(memc); + Memcache foo(original); const string value_set("Data for server A"); vector value; vector test_value; @@ -137,79 +139,26 @@ test_return basic_master_key_test(memcached_st *memc) populate_vector(value, value_set); - foo.setByKey(master_key_a, key, value, 0, 0); - foo.getByKey(master_key_a, key, test_value); + test_true(foo.setByKey(master_key_a, key, value, 0, 0)); + test_true(foo.getByKey(master_key_a, key, test_value)); - assert((memcmp(&value[0], &test_value[0], value.size()) == 0)); + test_compare(value.size(), test_value.size()); + test_memcmp(&value[0], &test_value[0], value.size()); test_value.clear(); - foo.getByKey(master_key_b, key, test_value); - assert((memcmp(&value[0], &test_value[0], value.size()) == 0)); - - return TEST_SUCCESS; -} - -/* Count the results */ -memcached_return callback_counter(memcached_st *, - memcached_result_st *, - void *context) -{ - unsigned int *counter= static_cast(context); - - *counter= *counter + 1; - - return MEMCACHED_SUCCESS; -} - -test_return mget_result_function(memcached_st *memc) -{ - Memcache mc(memc); - bool rc; - string key1("fudge"); - string key2("son"); - string key3("food"); - vector keys; - vector< vector *> values; - vector val1; - vector val2; - vector val3; - populate_vector(val1, key1); - populate_vector(val2, key2); - populate_vector(val3, key3); - keys.reserve(3); - keys.push_back(key1); - keys.push_back(key2); - keys.push_back(key3); - values.reserve(3); - values.push_back(&val1); - values.push_back(&val2); - values.push_back(&val3); - unsigned int counter; - memcached_execute_function callbacks[1]; - - /* We need to empty the server before we continue the test */ - rc= mc.flush(0); - rc= mc.setAll(keys, values, 50, 9); - assert(rc == true); - - rc= mc.mget(keys); - assert(rc == true); - - callbacks[0]= &callback_counter; - counter= 0; - rc= mc.fetchExecute(callbacks, static_cast(&counter), 1); - - assert(counter == 3); +#if 0 + test_false(foo.getByKey(master_key_b, key, test_value)); + test_zero(test_value.size()); +#endif return TEST_SUCCESS; } -test_return mget_test(memcached_st *memc) +static test_return_t mget_test(memcached_st *original) { - Memcache mc(memc); - bool rc; - memcached_return mc_rc; + Memcache memc(original); + memcached_return_t mc_rc; vector keys; vector< vector *> values; keys.reserve(3); @@ -231,77 +180,126 @@ test_return mget_test(memcached_st *memc) vector return_value; /* We need to empty the server before we continue the test */ - rc= mc.flush(0); - assert(rc == true); + test_true(memc.flush()); + + test_true(memc.mget(keys)); - rc= mc.mget(keys); - assert(rc == true); + test_compare(MEMCACHED_NOTFOUND, + memc.fetch(return_key, return_value)); - while ((mc_rc= mc.fetch(return_key, return_value)) != MEMCACHED_END) + test_true(memc.setAll(keys, values, 50, 9)); + + test_true(memc.mget(keys)); + size_t count= 0; + while (memcached_success(mc_rc= memc.fetch(return_key, return_value))) { - assert(return_value.size() != 0); - return_value.clear(); + test_compare(return_key.length(), return_value.size()); + test_memcmp(&return_value[0], return_key.c_str(), return_value.size()); + count++; } - assert(mc_rc == MEMCACHED_END); + test_compare(values.size(), count); - rc= mc.setAll(keys, values, 50, 9); - assert(rc == true); + return TEST_SUCCESS; +} - rc= mc.mget(keys); - assert(rc == true); +static test_return_t basic_behavior(memcached_st *original) +{ + Memcache memc(original); + uint64_t value= 1; + test_true(memc.setBehavior(MEMCACHED_BEHAVIOR_VERIFY_KEY, value)); + uint64_t behavior= memc.getBehavior(MEMCACHED_BEHAVIOR_VERIFY_KEY); + test_compare(behavior, value); - while ((mc_rc= mc.fetch(return_key, return_value)) != MEMCACHED_END) - { - assert(return_key.length() == return_value.size()); - assert(!memcmp(&return_value[0], return_key.c_str(), return_value.size())); - } + return TEST_SUCCESS; +} + +static test_return_t error_test(memcached_st *) +{ + Memcache memc("--server=localhost:0"); + std::vector value; + + test_false(memc.set("key", value, time_t(0), uint32_t(0))); + + test_true(memc.error()); + + return TEST_SUCCESS; +} + +static test_return_t error_std_string_test(memcached_st *) +{ + Memcache memc("--server=localhost:0"); + std::vector value; + + test_false(memc.set("key", value, time_t(0), uint32_t(0))); + + std::string error_message; + test_true(memc.error(error_message)); + test_false(error_message.empty()); return TEST_SUCCESS; } +static test_return_t error_memcached_return_t_test(memcached_st *) +{ + Memcache memc("--server=localhost:0"); + std::vector value; + + test_false(memc.set("key", value, time_t(0), uint32_t(0))); + + memcached_return_t rc; + test_true(memc.error(rc)); + test_compare(MEMCACHED_CONNECTION_FAILURE, rc); + + return TEST_SUCCESS; +} + +test_st error_tests[] ={ + { "error()", false, reinterpret_cast(error_test) }, + { "error(std::string&)", false, reinterpret_cast(error_std_string_test) }, + { "error(memcached_return_t&)", false, reinterpret_cast(error_memcached_return_t_test) }, + {0, 0, 0} +}; + test_st tests[] ={ - { "basic", 0, basic_test }, - { "basic_master_key", 0, basic_master_key_test }, - { "increment_test", 0, increment_test }, - { "mget", 1, mget_test }, - { "mget_result_function", 1, mget_result_function }, + { "basic", false, + reinterpret_cast(basic_test) }, + { "basic_master_key", false, + reinterpret_cast(basic_master_key_test) }, + { "increment_test", false, + reinterpret_cast(increment_test) }, + { "mget", true, + reinterpret_cast(mget_test) }, + { "basic_behavior", false, + reinterpret_cast(basic_behavior) }, {0, 0, 0} }; collection_st collection[] ={ {"block", 0, 0, tests}, + {"error()", 0, 0, error_tests}, {0, 0, 0, 0} }; -#define SERVERS_TO_CREATE 1 - -extern "C" void *world_create(void) -{ - server_startup_st *construct; +#define SERVERS_TO_CREATE 5 - construct= (server_startup_st *)malloc(sizeof(server_startup_st)); - memset(construct, 0, sizeof(server_startup_st)); +#define TEST_PORT_BASE MEMCACHED_DEFAULT_PORT +10 +#include "libmemcached_world.h" - construct->count= SERVERS_TO_CREATE; - server_startup(construct); +void get_world(Framework *world) +{ + world->collections= collection; - return construct; -} + world->_create= world_create; + world->_destroy= world_destroy; -void world_destroy(void *p) -{ - server_startup_st *construct= static_cast(p); - memcached_server_st *servers= - static_cast(construct->servers); - memcached_server_list_free(servers); + world->item._startup= reinterpret_cast(world_test_startup); + world->item._flush= reinterpret_cast(world_flush); + world->item.set_pre(reinterpret_cast(world_pre_run)); + world->item.set_post(reinterpret_cast(world_post_run)); + world->_on_error= reinterpret_cast(world_on_error); - server_shutdown(construct); - free(construct); -} + world->collection_startup= reinterpret_cast(world_container_startup); + world->collection_shutdown= reinterpret_cast(world_container_shutdown); -void get_world(world_st *world) -{ - world->collections= collection; - world->create= world_create; - world->destroy= world_destroy; + world->set_runner(&defualt_libmemcached_runner); }