Update test so that socket and tcp are running the tests, but not interlaced (this...
[m6w6/libmemcached] / tests / libmemcached_world_socket.h
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Libmemcached Client and Server
4 *
5 * Copyright (C) 2011-2012 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
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
19 * distribution.
20 *
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
23 * written permission.
24 *
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.
36 *
37 */
38
39
40 #pragma once
41
42 #include <cassert>
43
44 /* The structure we use for the test system */
45 struct libmemcached_test_container_st
46 {
47 libtest::server_startup_st& construct;
48 memcached_st *parent;
49 memcached_st *memc;
50
51 libmemcached_test_container_st(libtest::server_startup_st &construct_arg) :
52 construct(construct_arg),
53 parent(NULL),
54 memc(NULL)
55 { }
56 };
57
58 static void *world_create(libtest::server_startup_st& servers, test_return_t& error)
59 {
60 if (HAVE_MEMCACHED_BINARY == 0)
61 {
62 error= TEST_SKIPPED;
63 return NULL;
64 }
65
66 in_port_t max_port= TEST_PORT_BASE;
67 for (uint32_t x= 0; x < servers.count(); x++)
68 {
69 const char *argv[1]= { "memcached" };
70 if (not servers.start_socket_server("memcached", max_port +1, 1, argv))
71 {
72 error= TEST_FATAL;
73 return NULL;
74 }
75 }
76
77
78 libmemcached_test_container_st *global_container= new libmemcached_test_container_st(servers);
79 if (global_container == NULL)
80 {
81 error= TEST_MEMORY_ALLOCATION_FAILURE;
82 return NULL;
83 }
84
85 error= TEST_SUCCESS;
86
87 return global_container;
88 }
89
90 static test_return_t world_container_startup(libmemcached_test_container_st *container)
91 {
92 char buffer[BUFSIZ];
93
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());
98
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));
103
104 if (container->construct.sasl())
105 {
106 if (memcached_failed(memcached_behavior_set(container->parent, MEMCACHED_BEHAVIOR_BINARY_PROTOCOL, 1)))
107 {
108 memcached_free(container->parent);
109 return TEST_FAILURE;
110 }
111
112 if (memcached_failed(memcached_set_sasl_auth_data(container->parent, container->construct.username().c_str(), container->construct.password().c_str())))
113 {
114 memcached_free(container->parent);
115 return TEST_FAILURE;
116 }
117 }
118
119 for (uint32_t host= 0; host < memcached_server_count(container->parent); ++host)
120 {
121 memcached_server_instance_st instance=
122 memcached_server_instance_by_position(container->parent, host);
123
124 if (instance->type == MEMCACHED_CONNECTION_TCP)
125 {
126 test_true_got(memcached_server_port(instance) >= TEST_PORT_BASE, memcached_server_port(instance));
127 }
128 }
129
130 return TEST_SUCCESS;
131 }
132
133 static test_return_t world_container_shutdown(libmemcached_test_container_st *container)
134 {
135 memcached_free(container->parent);
136 container->parent= NULL;
137
138 return TEST_SUCCESS;
139 }
140
141 static test_return_t world_test_startup(libmemcached_test_container_st *container)
142 {
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);
148
149 return TEST_SUCCESS;
150 }
151
152 test_return_t world_flush(libmemcached_test_container_st *container);
153 test_return_t world_flush(libmemcached_test_container_st *container)
154 {
155 test_true(container->memc);
156 memcached_flush(container->memc, 0);
157 memcached_quit(container->memc);
158
159 return TEST_SUCCESS;
160 }
161
162 static test_return_t world_pre_run(libmemcached_test_container_st *container)
163 {
164 test_true(container->memc);
165 for (uint32_t loop= 0; loop < memcached_server_list_count(container->memc->servers); loop++)
166 {
167 memcached_server_instance_st instance=
168 memcached_server_instance_by_position(container->memc, loop);
169
170 test_compare(-1, instance->fd);
171 test_compare(0U, instance->cursor_active);
172 }
173
174 return TEST_SUCCESS;
175 }
176
177
178 static test_return_t world_post_run(libmemcached_test_container_st *container)
179 {
180 test_true(container->memc);
181
182 return TEST_SUCCESS;
183 }
184
185 static test_return_t world_on_error(test_return_t , libmemcached_test_container_st *container)
186 {
187 test_true(container->memc);
188 memcached_free(container->memc);
189 container->memc= NULL;
190
191 return TEST_SUCCESS;
192 }
193
194 static bool world_destroy(void *object)
195 {
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)
199 {
200 sasl_done();
201 }
202 #endif
203
204 delete container;
205
206 return TEST_SUCCESS;
207 }
208
209 typedef test_return_t (*libmemcached_test_callback_fn)(memcached_st *);
210
211 static test_return_t _runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container)
212 {
213 if (func)
214 {
215 test_true(container);
216 test_true(container->memc);
217 test_return_t ret;
218 try {
219 ret= func(container->memc);
220 }
221 catch (std::exception& e)
222 {
223 libtest::Error << e.what();
224 return TEST_FAILURE;
225 }
226
227 return ret;
228 }
229
230 return TEST_SUCCESS;
231 }
232
233 static test_return_t _pre_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container)
234 {
235 if (func)
236 {
237 return func(container->parent);
238 }
239
240 return TEST_SUCCESS;
241 }
242
243 static test_return_t _post_runner_default(libmemcached_test_callback_fn func, libmemcached_test_container_st *container)
244 {
245 if (func)
246 {
247 return func(container->parent);
248 }
249
250 return TEST_SUCCESS;
251 }
252
253 class LibmemcachedRunner : public libtest::Runner {
254 public:
255 test_return_t run(test_callback_fn* func, void *object)
256 {
257 return _runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object);
258 }
259
260 test_return_t pre(test_callback_fn* func, void *object)
261 {
262 return _pre_runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object);
263 }
264
265 test_return_t post(test_callback_fn* func, void *object)
266 {
267 return _post_runner_default(libmemcached_test_callback_fn(func), (libmemcached_test_container_st*)object);
268 }
269 };
270
271 static LibmemcachedRunner defualt_libmemcached_runner;