1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Libmemcached Client and Server
5 * Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * * Redistributions in binary form must reproduce the above
17 * copyright notice, this list of conditions and the following disclaimer
18 * in the documentation and/or other materials provided with the
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 /* The structure we use for the test system */
45 struct libmemcached_test_container_st
47 libtest::server_startup_st
& construct
;
51 libmemcached_test_container_st(libtest::server_startup_st
&construct_arg
) :
52 construct(construct_arg
),
58 static void *world_create(libtest::server_startup_st
& servers
, test_return_t
& error
)
60 if (HAVE_MEMCACHED_BINARY
== 0)
66 in_port_t max_port
= TEST_PORT_BASE
;
67 for (uint32_t x
= 0; x
< servers
.count(); x
++)
69 const char *argv
[1]= { "memcached" };
70 if (not servers
.start_socket_server("memcached", max_port
+1, 1, argv
))
78 libmemcached_test_container_st
*global_container
= new libmemcached_test_container_st(servers
);
79 if (global_container
== NULL
)
81 error
= TEST_MEMORY_ALLOCATION_FAILURE
;
87 return global_container
;
90 static test_return_t
world_container_startup(libmemcached_test_container_st
*container
)
94 test_compare_got(MEMCACHED_SUCCESS
,
95 libmemcached_check_configuration(container
->construct
.option_string().c_str(), container
->construct
.option_string().size(),
96 buffer
, sizeof(buffer
)),
97 container
->construct
.option_string().c_str());
99 test_null(container
->parent
);
100 container
->parent
= memcached(container
->construct
.option_string().c_str(), container
->construct
.option_string().size());
101 test_true(container
->parent
);
102 test_compare(MEMCACHED_SUCCESS
, memcached_version(container
->parent
));
104 if (container
->construct
.sasl())
106 if (memcached_failed(memcached_behavior_set(container
->parent
, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL
, 1)))
108 memcached_free(container
->parent
);
112 if (memcached_failed(memcached_set_sasl_auth_data(container
->parent
, container
->construct
.username().c_str(), container
->construct
.password().c_str())))
114 memcached_free(container
->parent
);
119 for (uint32_t host
= 0; host
< memcached_server_count(container
->parent
); ++host
)
121 memcached_server_instance_st instance
=
122 memcached_server_instance_by_position(container
->parent
, host
);
124 if (instance
->type
== MEMCACHED_CONNECTION_TCP
)
126 test_true_got(memcached_server_port(instance
) >= TEST_PORT_BASE
, memcached_server_port(instance
));
133 static test_return_t
world_container_shutdown(libmemcached_test_container_st
*container
)
135 memcached_free(container
->parent
);
136 container
->parent
= NULL
;
141 static test_return_t
world_test_startup(libmemcached_test_container_st
*container
)
143 test_true(container
);
144 test_null(container
->memc
);
145 test_true(container
->parent
);
146 container
->memc
= memcached_clone(NULL
, container
->parent
);
147 test_true(container
->memc
);
152 test_return_t
world_flush(libmemcached_test_container_st
*container
);
153 test_return_t
world_flush(libmemcached_test_container_st
*container
)
155 test_true(container
->memc
);
156 memcached_flush(container
->memc
, 0);
157 memcached_quit(container
->memc
);
162 static test_return_t
world_pre_run(libmemcached_test_container_st
*container
)
164 test_true(container
->memc
);
165 for (uint32_t loop
= 0; loop
< memcached_server_list_count(container
->memc
->servers
); loop
++)
167 memcached_server_instance_st instance
=
168 memcached_server_instance_by_position(container
->memc
, loop
);
170 test_compare(-1, instance
->fd
);
171 test_compare(0U, instance
->cursor_active
);
178 static test_return_t
world_post_run(libmemcached_test_container_st
*container
)
180 test_true(container
->memc
);
185 static test_return_t
world_on_error(test_return_t
, libmemcached_test_container_st
*container
)
187 test_true(container
->memc
);
188 memcached_free(container
->memc
);
189 container
->memc
= NULL
;
194 static bool world_destroy(void *object
)
196 libmemcached_test_container_st
*container
= (libmemcached_test_container_st
*)object
;
197 #if defined(LIBMEMCACHED_WITH_SASL_SUPPORT) && LIBMEMCACHED_WITH_SASL_SUPPORT
198 if (LIBMEMCACHED_WITH_SASL_SUPPORT
)
209 typedef test_return_t (*libmemcached_test_callback_fn
)(memcached_st
*);
211 static test_return_t
_runner_default(libmemcached_test_callback_fn func
, libmemcached_test_container_st
*container
)
215 test_true(container
);
216 test_true(container
->memc
);
219 ret
= func(container
->memc
);
221 catch (std::exception
& e
)
223 libtest::Error
<< e
.what();
233 static test_return_t
_pre_runner_default(libmemcached_test_callback_fn func
, libmemcached_test_container_st
*container
)
237 return func(container
->parent
);
243 static test_return_t
_post_runner_default(libmemcached_test_callback_fn func
, libmemcached_test_container_st
*container
)
247 return func(container
->parent
);
253 class LibmemcachedRunner
: public libtest::Runner
{
255 test_return_t
run(test_callback_fn
* func
, void *object
)
257 return _runner_default(libmemcached_test_callback_fn(func
), (libmemcached_test_container_st
*)object
);
260 test_return_t
pre(test_callback_fn
* func
, void *object
)
262 return _pre_runner_default(libmemcached_test_callback_fn(func
), (libmemcached_test_container_st
*)object
);
265 test_return_t
post(test_callback_fn
* func
, void *object
)
267 return _post_runner_default(libmemcached_test_callback_fn(func
), (libmemcached_test_container_st
*)object
);
271 static LibmemcachedRunner defualt_libmemcached_runner
;