Crank random string test.
[m6w6/libmemcached] / tests / parser.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Libmemcached Client and Server
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
22 * written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 *
36 */
37
38 #include <config.h>
39
40 #include <vector>
41 #include <iostream>
42 #include <string>
43
44 #define BUILDING_LIBMEMCACHED
45 #include <libmemcached/memcached.h>
46
47 #include "tests/parser.h"
48 #include "tests/print.h"
49
50 enum scanner_type_t
51 {
52 NIL,
53 UNSIGNED,
54 SIGNED,
55 ARRAY
56 };
57
58
59 struct scanner_string_st {
60 const char *c_str;
61 size_t size;
62 };
63
64 static inline scanner_string_st scanner_string(const char *arg, size_t arg_size)
65 {
66 scanner_string_st local= { arg, arg_size };
67 return local;
68 }
69
70 #define make_scanner_string(X) scanner_string((X), static_cast<size_t>(sizeof(X) - 1))
71
72 static struct scanner_string_st scanner_string_null= { 0, 0};
73
74 struct scanner_variable_t {
75 enum scanner_type_t type;
76 struct scanner_string_st option;
77 struct scanner_string_st result;
78 test_return_t (*check_func)(memcached_st *memc, const scanner_string_st &hostname);
79 };
80
81 // Check and make sure the first host is what we expect it to be
82 static test_return_t __check_host(memcached_st *memc, const scanner_string_st &hostname)
83 {
84 memcached_server_instance_st instance=
85 memcached_server_instance_by_position(memc, 0);
86
87 test_true(instance);
88
89 const char *first_hostname = memcached_server_name(instance);
90 test_true(first_hostname);
91 test_strcmp(first_hostname, hostname.c_str);
92
93 return TEST_SUCCESS;
94 }
95
96 // Check and make sure the prefix_key is what we expect it to be
97 static test_return_t __check_prefix_key(memcached_st *memc, const scanner_string_st &hostname)
98 {
99 memcached_server_instance_st instance=
100 memcached_server_instance_by_position(memc, 0);
101
102 test_true(instance);
103
104 const char *first_hostname = memcached_server_name(instance);
105 test_true(first_hostname);
106 test_strcmp(first_hostname, hostname.c_str);
107
108 return TEST_SUCCESS;
109 }
110
111 static test_return_t __check_IO_MSG_WATERMARK(memcached_st *memc, const scanner_string_st &value)
112 {
113 uint64_t value_number;
114
115 value_number= atoll(value.c_str);
116
117 test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_IO_MSG_WATERMARK) == value_number);
118 return TEST_SUCCESS;
119 }
120
121 static test_return_t __check_AUTO_EJECT_HOSTS(memcached_st *memc, const scanner_string_st &value)
122 {
123 (void)value;
124 test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_AUTO_EJECT_HOSTS));
125 return TEST_SUCCESS;
126 }
127
128 static test_return_t __check_NOREPLY(memcached_st *memc, const scanner_string_st &value)
129 {
130 (void)value;
131 test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_NOREPLY));
132 return TEST_SUCCESS;
133 }
134
135 static test_return_t __check_VERIFY_KEY(memcached_st *memc, const scanner_string_st &value)
136 {
137 (void)value;
138 test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_VERIFY_KEY));
139 return TEST_SUCCESS;
140 }
141
142 static test_return_t __check_distribution_RANDOM(memcached_st *memc, const scanner_string_st &value)
143 {
144 (void)value;
145 test_true(memcached_behavior_get(memc, MEMCACHED_BEHAVIOR_DISTRIBUTION) == MEMCACHED_DISTRIBUTION_RANDOM);
146 return TEST_SUCCESS;
147 }
148
149 scanner_variable_t test_server_strings[]= {
150 { ARRAY, make_scanner_string("--server=localhost"), make_scanner_string("localhost"), __check_host },
151 { ARRAY, make_scanner_string("--server=10.0.2.1"), make_scanner_string("10.0.2.1"), __check_host },
152 { ARRAY, make_scanner_string("--server=example.com"), make_scanner_string("example.com"), __check_host },
153 { ARRAY, make_scanner_string("--server=localhost:30"), make_scanner_string("localhost"), __check_host },
154 { ARRAY, make_scanner_string("--server=10.0.2.1:20"), make_scanner_string("10.0.2.1"), __check_host },
155 { ARRAY, make_scanner_string("--server=example.com:1024"), make_scanner_string("example.com"), __check_host },
156 { NIL, scanner_string_null, scanner_string_null, NULL }
157 };
158
159 scanner_variable_t test_server_strings_with_weights[]= {
160 { ARRAY, make_scanner_string("--server=10.0.2.1:30/?40"), make_scanner_string("10.0.2.1"), __check_host },
161 { ARRAY, make_scanner_string("--server=example.com:1024/?30"), make_scanner_string("example.com"), __check_host },
162 { ARRAY, make_scanner_string("--server=10.0.2.1/?20"), make_scanner_string("10.0.2.1"), __check_host },
163 { ARRAY, make_scanner_string("--server=example.com/?10"), make_scanner_string("example.com"), __check_host },
164 { NIL, scanner_string_null, scanner_string_null, NULL }
165 };
166
167 scanner_variable_t bad_test_strings[]= {
168 { ARRAY, make_scanner_string("-servers=localhost:11221,localhost:11222,localhost:11223,localhost:11224,localhost:11225"), scanner_string_null, NULL },
169 { ARRAY, make_scanner_string("-- servers=a.example.com:81,localhost:82,b.example.com"), scanner_string_null, NULL },
170 { ARRAY, make_scanner_string("--servers=localhost:+80"), scanner_string_null, NULL},
171 { ARRAY, make_scanner_string("--servers=localhost.com."), scanner_string_null, NULL},
172 { ARRAY, make_scanner_string("--server=localhost.com."), scanner_string_null, NULL},
173 { ARRAY, make_scanner_string("--server=localhost.com.:80"), scanner_string_null, NULL},
174 { NIL, scanner_string_null, scanner_string_null, NULL}
175 };
176
177 scanner_variable_t test_number_options[]= {
178 { ARRAY, make_scanner_string("--CONNECT_TIMEOUT=456"), scanner_string_null, NULL },
179 { ARRAY, make_scanner_string("--IO_MSG_WATERMARK=456"), make_scanner_string("456"), __check_IO_MSG_WATERMARK },
180 { ARRAY, make_scanner_string("--IO_BYTES_WATERMARK=456"), scanner_string_null, NULL },
181 { ARRAY, make_scanner_string("--IO_KEY_PREFETCH=456"), scanner_string_null, NULL },
182 { ARRAY, make_scanner_string("--NUMBER_OF_REPLICAS=456"), scanner_string_null, NULL },
183 { ARRAY, make_scanner_string("--POLL_TIMEOUT=456"), scanner_string_null, NULL },
184 { ARRAY, make_scanner_string("--RCV_TIMEOUT=456"), scanner_string_null, NULL },
185 { ARRAY, make_scanner_string("--RETRY_TIMEOUT=456"), scanner_string_null, NULL },
186 { ARRAY, make_scanner_string("--SERVER_FAILURE_LIMIT=456"), scanner_string_null, NULL },
187 { ARRAY, make_scanner_string("--SND_TIMEOUT=456"), scanner_string_null, NULL },
188 { ARRAY, make_scanner_string("--SOCKET_RECV_SIZE=456"), scanner_string_null, NULL },
189 { ARRAY, make_scanner_string("--SOCKET_SEND_SIZE=456"), scanner_string_null, NULL },
190 { NIL, scanner_string_null, scanner_string_null, NULL}
191 };
192
193 scanner_variable_t test_boolean_options[]= {
194 { ARRAY, make_scanner_string("--AUTO_EJECT_HOSTS"), scanner_string_null, __check_AUTO_EJECT_HOSTS },
195 { ARRAY, make_scanner_string("--BINARY_PROTOCOL"), scanner_string_null, NULL },
196 { ARRAY, make_scanner_string("--BUFFER_REQUESTS"), scanner_string_null, NULL },
197 { ARRAY, make_scanner_string("--HASH_WITH_PREFIX_KEY"), scanner_string_null, NULL },
198 { ARRAY, make_scanner_string("--NOREPLY"), scanner_string_null, __check_NOREPLY },
199 { ARRAY, make_scanner_string("--RANDOMIZE_REPLICA_READ"), scanner_string_null, NULL },
200 { ARRAY, make_scanner_string("--SORT_HOSTS"), scanner_string_null, NULL },
201 { ARRAY, make_scanner_string("--SUPPORT_CAS"), scanner_string_null, NULL },
202 { ARRAY, make_scanner_string("--TCP_NODELAY"), scanner_string_null, NULL },
203 { ARRAY, make_scanner_string("--TCP_KEEPALIVE"), scanner_string_null, NULL },
204 { ARRAY, make_scanner_string("--TCP_KEEPIDLE"), scanner_string_null, NULL },
205 { ARRAY, make_scanner_string("--USE_UDP"), scanner_string_null, NULL },
206 { ARRAY, make_scanner_string("--VERIFY_KEY"), scanner_string_null, __check_VERIFY_KEY },
207 { NIL, scanner_string_null, scanner_string_null, NULL}
208 };
209
210 scanner_variable_t prefix_key_strings[]= {
211 { ARRAY, make_scanner_string("--PREFIX_KEY=foo"), make_scanner_string("foo"), __check_prefix_key },
212 { ARRAY, make_scanner_string("--PREFIX-KEY=\"foo\""), make_scanner_string("foo"), __check_prefix_key },
213 { ARRAY, make_scanner_string("--PREFIX-KEY=\"This is a very long key\""), make_scanner_string("This is a very long key"), __check_prefix_key },
214 { NIL, scanner_string_null, scanner_string_null, NULL}
215 };
216
217 scanner_variable_t distribution_strings[]= {
218 { ARRAY, make_scanner_string("--DISTRIBUTION=consistent"), scanner_string_null, NULL },
219 { ARRAY, make_scanner_string("--DISTRIBUTION=consistent,CRC"), scanner_string_null, NULL },
220 { ARRAY, make_scanner_string("--DISTRIBUTION=consistent,MD5"), scanner_string_null, NULL },
221 { ARRAY, make_scanner_string("--DISTRIBUTION=random"), scanner_string_null, __check_distribution_RANDOM },
222 { ARRAY, make_scanner_string("--DISTRIBUTION=modula"), scanner_string_null, NULL },
223 { NIL, scanner_string_null, scanner_string_null, NULL}
224 };
225
226 scanner_variable_t hash_strings[]= {
227 { ARRAY, make_scanner_string("--HASH=CRC"), scanner_string_null, NULL },
228 { ARRAY, make_scanner_string("--HASH=FNV1A_32"), scanner_string_null, NULL },
229 { ARRAY, make_scanner_string("--HASH=FNV1A_64"), scanner_string_null, NULL },
230 { ARRAY, make_scanner_string("--HASH=FNV1_32"), scanner_string_null, NULL },
231 { ARRAY, make_scanner_string("--HASH=FNV1_64"), scanner_string_null, NULL },
232 { ARRAY, make_scanner_string("--HASH=JENKINS"), scanner_string_null, NULL },
233 { ARRAY, make_scanner_string("--HASH=MD5"), scanner_string_null, NULL },
234 { ARRAY, make_scanner_string("--HASH=MURMUR"), scanner_string_null, NULL },
235 { NIL, scanner_string_null, scanner_string_null, NULL}
236 };
237
238
239 static test_return_t _test_option(scanner_variable_t *scanner, bool test_true= true)
240 {
241 (void)test_true;
242 memcached_st *memc;
243 memc= memcached_create(NULL);
244
245 for (scanner_variable_t *ptr= scanner; ptr->type != NIL; ptr++)
246 {
247 memcached_return_t rc;
248 rc= memcached_parse_configuration(memc, ptr->option.c_str, ptr->option.size);
249 if (test_true)
250 {
251 if (rc != MEMCACHED_SUCCESS)
252 {
253 memcached_error_print(memc);
254 }
255
256 test_true(rc == MEMCACHED_SUCCESS);
257
258 if (ptr->check_func)
259 {
260 test_return_t test_rc= (*ptr->check_func)(memc, ptr->result);
261 if (test_rc != TEST_SUCCESS)
262 return test_rc;
263 }
264 }
265 else
266 {
267 test_false_with(rc == MEMCACHED_SUCCESS, ptr->option.c_str);
268 }
269 memcached_reset(memc);
270 }
271 memcached_free(memc);
272
273 return TEST_SUCCESS;
274 }
275
276 test_return_t server_test(memcached_st *)
277 {
278 return _test_option(test_server_strings);
279 }
280
281 test_return_t server_with_weight_test(memcached_st *)
282 {
283 return _test_option(test_server_strings_with_weights);
284 }
285
286 test_return_t servers_bad_test(memcached_st *)
287 {
288 test_return_t rc;
289 if ((rc= _test_option(bad_test_strings, false)) != TEST_SUCCESS)
290 {
291 return rc;
292 }
293
294 return TEST_SUCCESS;
295 }
296
297 test_return_t parser_number_options_test(memcached_st*)
298 {
299 return _test_option(test_number_options);
300 }
301
302 test_return_t parser_boolean_options_test(memcached_st*)
303 {
304 return _test_option(test_boolean_options);
305 }
306
307 test_return_t behavior_parser_test(memcached_st*)
308 {
309 return TEST_SUCCESS;
310 }
311
312 test_return_t parser_hash_test(memcached_st*)
313 {
314 return _test_option(hash_strings);
315 }
316
317 test_return_t parser_distribution_test(memcached_st*)
318 {
319 return _test_option(distribution_strings);
320 }
321
322 test_return_t parser_key_prefix_test(memcached_st*)
323 {
324 return _test_option(distribution_strings);
325 }
326
327 #define SUPPORT_EXAMPLE_CNF "support/example.cnf"
328
329 test_return_t memcached_parse_configure_file_test(memcached_st*)
330 {
331 if (access(SUPPORT_EXAMPLE_CNF, R_OK))
332 return TEST_SKIPPED;
333
334 memcached_st memc;
335 memcached_st *memc_ptr= memcached_create(&memc);
336
337 test_true(memc_ptr);
338
339 memcached_return_t rc= memcached_parse_configure_file(memc_ptr, memcached_string_with_size(SUPPORT_EXAMPLE_CNF));
340 test_true_got(rc == MEMCACHED_SUCCESS, memcached_last_error_message(memc_ptr) ? memcached_last_error_message(memc_ptr) : memcached_strerror(NULL, rc));
341 memcached_free(memc_ptr);
342
343 return TEST_SUCCESS;
344 }
345
346 test_return_t memcached_create_with_options_with_filename(memcached_st*)
347 {
348 if (access(SUPPORT_EXAMPLE_CNF, R_OK))
349 return TEST_SKIPPED;
350
351 memcached_st *memc_ptr;
352 memc_ptr= memcached_create_with_options(STRING_WITH_LEN("--CONFIGURE-FILE=\"support/example.cnf\""));
353 test_true_got(memc_ptr, memcached_last_error_message(memc_ptr));
354 memcached_free(memc_ptr);
355
356 return TEST_SUCCESS;
357 }
358
359 test_return_t libmemcached_check_configuration_with_filename_test(memcached_st*)
360 {
361 if (access(SUPPORT_EXAMPLE_CNF, R_OK))
362 return TEST_SKIPPED;
363
364 memcached_return_t rc;
365 char buffer[BUFSIZ];
366
367 rc= libmemcached_check_configuration(STRING_WITH_LEN("--CONFIGURE-FILE=\"support/example.cnf\""), buffer, sizeof(buffer));
368 test_true_got(rc == MEMCACHED_SUCCESS, buffer);
369
370 rc= libmemcached_check_configuration(STRING_WITH_LEN("--CONFIGURE-FILE=support/example.cnf"), buffer, sizeof(buffer));
371 test_false_with(rc == MEMCACHED_SUCCESS, buffer);
372
373 rc= libmemcached_check_configuration(STRING_WITH_LEN("--CONFIGURE-FILE=\"bad-path/example.cnf\""), buffer, sizeof(buffer));
374 test_true_got(rc == MEMCACHED_ERRNO, buffer);
375
376 return TEST_SUCCESS;
377 }
378
379 test_return_t libmemcached_check_configuration_test(memcached_st*)
380 {
381 memcached_return_t rc;
382 char buffer[BUFSIZ];
383
384 rc= libmemcached_check_configuration(STRING_WITH_LEN("--server=localhost"), buffer, sizeof(buffer));
385 test_true_got(rc == MEMCACHED_SUCCESS, buffer);
386
387 rc= libmemcached_check_configuration(STRING_WITH_LEN("--dude=localhost"), buffer, sizeof(buffer));
388 test_false_with(rc == MEMCACHED_SUCCESS, buffer);
389 test_true(rc == MEMCACHED_PARSE_ERROR);
390
391 return TEST_SUCCESS;
392 }
393
394 test_return_t memcached_create_with_options_test(memcached_st*)
395 {
396 memcached_st *memc_ptr;
397 memc_ptr= memcached_create_with_options(STRING_WITH_LEN("--server=localhost"));
398 test_true_got(memc_ptr, memcached_last_error_message(memc_ptr));
399 memcached_free(memc_ptr);
400
401 memc_ptr= memcached_create_with_options(STRING_WITH_LEN("--dude=localhost"));
402 test_false_with(memc_ptr, memcached_last_error_message(memc_ptr));
403
404 return TEST_SUCCESS;
405 }
406
407 test_return_t test_include_keyword(memcached_st*)
408 {
409 if (access(SUPPORT_EXAMPLE_CNF, R_OK))
410 return TEST_SKIPPED;
411
412 char buffer[BUFSIZ];
413 memcached_return_t rc;
414 rc= libmemcached_check_configuration(STRING_WITH_LEN("INCLUDE \"support/example.cnf\""), buffer, sizeof(buffer));
415 test_true_got(rc == MEMCACHED_SUCCESS, buffer);
416
417 return TEST_SUCCESS;
418 }
419
420 test_return_t test_end_keyword(memcached_st*)
421 {
422 char buffer[BUFSIZ];
423 memcached_return_t rc;
424 rc= libmemcached_check_configuration(STRING_WITH_LEN("--server=localhost END bad keywords"), buffer, sizeof(buffer));
425 test_true_got(rc == MEMCACHED_SUCCESS, buffer);
426
427 return TEST_SUCCESS;
428 }
429
430 test_return_t test_reset_keyword(memcached_st*)
431 {
432 char buffer[BUFSIZ];
433 memcached_return_t rc;
434 rc= libmemcached_check_configuration(STRING_WITH_LEN("--server=localhost reset --server=bad.com"), buffer, sizeof(buffer));
435 test_true_got(rc == MEMCACHED_SUCCESS, buffer);
436
437 return TEST_SUCCESS;
438 }
439
440 test_return_t test_error_keyword(memcached_st*)
441 {
442 char buffer[BUFSIZ];
443 memcached_return_t rc;
444 rc= libmemcached_check_configuration(STRING_WITH_LEN("--server=localhost ERROR --server=bad.com"), buffer, sizeof(buffer));
445 test_true_got(rc != MEMCACHED_SUCCESS, buffer);
446
447 return TEST_SUCCESS;
448 }
449
450 #define RANDOM_STRINGS 100
451 test_return_t random_statement_build_test(memcached_st*)
452 {
453 std::vector<scanner_string_st *> option_list;
454
455 for (scanner_variable_t *ptr= test_server_strings; ptr->type != NIL; ptr++)
456 option_list.push_back(&ptr->option);
457
458 for (scanner_variable_t *ptr= test_number_options; ptr->type != NIL; ptr++)
459 option_list.push_back(&ptr->option);
460
461 for (scanner_variable_t *ptr= test_boolean_options; ptr->type != NIL; ptr++)
462 option_list.push_back(&ptr->option);
463
464 for (scanner_variable_t *ptr= prefix_key_strings; ptr->type != NIL; ptr++)
465 option_list.push_back(&ptr->option);
466
467 for (scanner_variable_t *ptr= distribution_strings; ptr->type != NIL; ptr++)
468 option_list.push_back(&ptr->option);
469
470 for (scanner_variable_t *ptr= hash_strings; ptr->type != NIL; ptr++)
471 option_list.push_back(&ptr->option);
472
473 for (uint32_t x= 0; x < RANDOM_STRINGS; x++)
474 {
475 std::string random_options;
476
477 uint32_t number_of= random() % option_list.size();
478 for (uint32_t options= 0; options < number_of; options++)
479 {
480 random_options+= option_list[random() % option_list.size()]->c_str;
481 random_options+= " ";
482 }
483
484 memcached_return_t rc;
485 memcached_st *memc_ptr= memcached_create(NULL);
486 rc= memcached_parse_configuration(memc_ptr, random_options.c_str(), random_options.size() -1);
487 if (rc == MEMCACHED_PARSE_ERROR)
488 {
489 std::cerr << std::endl << "Failed to parse(" << memcached_strerror(NULL, rc) << "): " << random_options << std::endl;
490 memcached_error_print(memc_ptr);
491 }
492 memcached_free(memc_ptr);
493 }
494
495 return TEST_SUCCESS;
496 }