1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 #include "mem_config.h"
42 #include "libtest/test.hpp"
44 #include "libmemcached-1.0/memcached.h"
45 #include "libmemcachedutil-1.0/util.h"
47 using namespace libtest
;
49 #include "tests/libmemcached-1.0/stat.h"
51 static memcached_return_t
item_counter(const memcached_instance_st
* ,
52 const char *key
, size_t key_length
,
53 const char *value
, size_t, // value_length,
56 if ((key_length
== (sizeof("curr_items") -1)) and (strncmp("curr_items", key
, (sizeof("curr_items") -1)) == 0))
58 uint64_t* counter
= (uint64_t*)context
;
59 unsigned long number_value
= strtoul(value
, (char **)NULL
, 10);
60 ASSERT_NEQ(number_value
, ULONG_MAX
);
61 *counter
= *counter
+number_value
;
64 return MEMCACHED_SUCCESS
;
67 test_return_t
memcached_stat_TEST(memcached_st
*memc
)
70 test_compare(MEMCACHED_INVALID_ARGUMENTS
,
71 memcached_stat_execute(memc
, "BAD_ARG_VALUE", item_counter
, &counter
));
76 #define memcached_dump_TEST2_COUNT 64
77 test_return_t
memcached_stat_TEST2(memcached_st
*memc
)
79 test_skip(false, memcached_behavior_get(memc
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
));
81 /* The dump test relies on there being at least 32 items in memcached */
82 for (uint32_t x
= 0; x
< memcached_dump_TEST2_COUNT
; x
++)
85 int length
= snprintf(key
, sizeof(key
), "%s%u", __func__
, x
);
87 ASSERT_TRUE(length
> 0);
89 test_compare(MEMCACHED_SUCCESS
,
90 memcached_set(memc
, key
, length
,
91 NULL
, 0, // Zero length values
92 time_t(0), uint32_t(0)));
97 ASSERT_EQ(MEMCACHED_SUCCESS
,
98 memcached_stat_execute(memc
, NULL
, item_counter
, &counter
));