Final bits for options in parser for behaviors.
[m6w6/libmemcached] / tests / parser.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Gearmand client and server library.
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 <libmemcached/memcached.h>
41
42 #include "tests/parser.h"
43 #include "tests/print.h"
44
45 struct scanner_string_st {
46 const char *c_ptr;
47 size_t size;
48 };
49
50 test_return_t server_test(memcached_st *junk)
51 {
52 (void)junk;
53 memcached_return_t rc;
54 memcached_st *memc;
55 memc= memcached_create(NULL);
56
57 scanner_string_st test_strings[]= {
58 { STRING_WITH_LEN("--server=localhost") },
59 { STRING_WITH_LEN("--server=10.0.2.1") },
60 { STRING_WITH_LEN("--server=example.com") },
61 { STRING_WITH_LEN("--server=localhost:30") },
62 { STRING_WITH_LEN("--server=10.0.2.1:20") },
63 { STRING_WITH_LEN("--server=example.com:1024") },
64 { NULL, 0}
65 };
66
67 for (scanner_string_st *ptr= test_strings; ptr->size; ptr++)
68 {
69 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
70 test_true(rc == MEMCACHED_SUCCESS);
71 memcached_servers_reset(memc);
72 }
73
74 memcached_free(memc);
75
76 return TEST_SUCCESS;
77 }
78
79 test_return_t servers_test(memcached_st *junk)
80 {
81 (void)junk;
82 memcached_st *memc;
83 memc= memcached_create(NULL);
84
85 scanner_string_st test_strings[]= {
86 { STRING_WITH_LEN("--servers=localhost:11221,localhost:11222,localhost:11223,localhost:11224,localhost:11225") },
87 { STRING_WITH_LEN("--servers=a.example.com:81,localhost:82,b.example.com") },
88 { STRING_WITH_LEN("--servers=localhost,localhost:80") },
89 { NULL, 0}
90 };
91
92 for (scanner_string_st *ptr= test_strings; ptr->size; ptr++)
93 {
94 memcached_return_t rc;
95 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
96
97 test_true(rc == MEMCACHED_SUCCESS);
98
99 memcached_server_fn callbacks[1];
100 callbacks[0]= server_print_callback;
101 memcached_server_cursor(memc, callbacks, NULL, 1);
102
103 memcached_servers_reset(memc);
104 }
105
106 scanner_string_st bad_test_strings[]= {
107 { STRING_WITH_LEN("-servers=localhost:11221,localhost:11222,localhost:11223,localhost:11224,localhost:11225") },
108 { STRING_WITH_LEN("-- servers=a.example.com:81,localhost:82,b.example.com") },
109 { STRING_WITH_LEN("--servers=localhost80") },
110 { NULL, 0}
111 };
112
113 for (scanner_string_st *ptr= bad_test_strings; ptr->size; ptr++)
114 {
115 memcached_return_t rc;
116 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
117
118 test_false_with(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
119
120 memcached_server_fn callbacks[1];
121 callbacks[0]= server_print_callback;
122 memcached_server_cursor(memc, callbacks, NULL, 1);
123
124 memcached_servers_reset(memc);
125 }
126
127 memcached_free(memc);
128
129 return TEST_SUCCESS;
130 }
131
132 scanner_string_st test_number_options[]= {
133 { STRING_WITH_LEN("--CONNECT_TIMEOUT=456") },
134 { STRING_WITH_LEN("--IO_MSG_WATERMARK=456") },
135 { STRING_WITH_LEN("--IO_BYTES_WATERMARK=456") },
136 { STRING_WITH_LEN("--IO_KEY_PREFETCH=456") },
137 { STRING_WITH_LEN("--NUMBER_OF_REPLICAS=456") },
138 { STRING_WITH_LEN("--POLL_TIMEOUT=456") },
139 { STRING_WITH_LEN("--RCV_TIMEOUT=456") },
140 { STRING_WITH_LEN("--RETRY_TIMEOUT=456") },
141 { STRING_WITH_LEN("--SERVER_FAILURE_LIMIT=456") },
142 { STRING_WITH_LEN("--SND_TIMEOUT=456") },
143 { STRING_WITH_LEN("--SOCKET_RECV_SIZE=456") },
144 { STRING_WITH_LEN("--SOCKET_SEND_SIZE=456") },
145 { NULL, 0}
146 };
147
148 scanner_string_st test_boolean_options[]= {
149 { STRING_WITH_LEN("--AUTO_EJECT_HOSTS") },
150 { STRING_WITH_LEN("--BINARY_PROTOCOL") },
151 { STRING_WITH_LEN("--BUFFER_REQUESTS") },
152 { STRING_WITH_LEN("--CACHE_LOOKUPS") },
153 { STRING_WITH_LEN("--CORK") },
154 { STRING_WITH_LEN("--HASH_WITH_PREFIX_KEY") },
155 { STRING_WITH_LEN("--KETAMA") },
156 { STRING_WITH_LEN("--KETAMA_WEIGHTED") },
157 { STRING_WITH_LEN("--NOREPLY") },
158 { STRING_WITH_LEN("--RANDOMIZE_REPLICA_READ") },
159 { STRING_WITH_LEN("--SORT_HOSTS") },
160 { STRING_WITH_LEN("--SUPPORT_CAS") },
161 { STRING_WITH_LEN("--TCP_NODELAY") },
162 { STRING_WITH_LEN("--TCP_KEEPALIVE") },
163 { STRING_WITH_LEN("--TCP_KEEPIDLE") },
164 { STRING_WITH_LEN("--USE_UDP") },
165 { STRING_WITH_LEN("--VERIFY_KEY") },
166 { NULL, 0}
167 };
168
169 test_return_t parser_number_options_test(memcached_st *junk)
170 {
171 (void)junk;
172 memcached_st *memc;
173 memc= memcached_create(NULL);
174
175 for (scanner_string_st *ptr= test_number_options; ptr->size; ptr++)
176 {
177 memcached_return_t rc;
178 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
179 test_true_got(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
180 }
181
182 memcached_free(memc);
183
184 return TEST_SUCCESS;
185 }
186
187 test_return_t parser_boolean_options_test(memcached_st *junk)
188 {
189 (void)junk;
190 memcached_st *memc;
191 memc= memcached_create(NULL);
192
193 for (scanner_string_st *ptr= test_boolean_options; ptr->size; ptr++)
194 {
195 memcached_return_t rc;
196 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
197 test_true_got(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
198 }
199
200 memcached_free(memc);
201
202 return TEST_SUCCESS;
203 }
204
205 test_return_t behavior_parser_test(memcached_st *junk)
206 {
207 (void)junk;
208 return TEST_SUCCESS;
209 }
210
211 test_return_t parser_hash_test(memcached_st *junk)
212 {
213 (void)junk;
214 memcached_return_t rc;
215 memcached_st *memc;
216 memc= memcached_create(NULL);
217
218 scanner_string_st test_strings[]= {
219 { STRING_WITH_LEN("--HASH=MD5") },
220 { STRING_WITH_LEN("--HASH=CRC") },
221 { STRING_WITH_LEN("--HASH=FNV1_64") },
222 { STRING_WITH_LEN("--HASH=FNV1A_64") },
223 { STRING_WITH_LEN("--HASH=FNV1_32") },
224 { STRING_WITH_LEN("--HASH=FNV1A_32") },
225 { STRING_WITH_LEN("--HASH=HSIEH") },
226 { STRING_WITH_LEN("--HASH=MURMUR") },
227 { STRING_WITH_LEN("--HASH=JENKINS") },
228 { NULL, 0}
229 };
230
231 for (scanner_string_st *ptr= test_strings; ptr->size; ptr++)
232 {
233 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
234 test_true_got(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
235 }
236
237 memcached_free(memc);
238
239 return TEST_SUCCESS;
240 }
241
242 test_return_t parser_distribution_test(memcached_st *junk)
243 {
244 (void)junk;
245 memcached_return_t rc;
246 memcached_st *memc;
247 memc= memcached_create(NULL);
248
249 scanner_string_st test_strings[]= {
250 { STRING_WITH_LEN("--DISTRIBUTION=consistent") },
251 { STRING_WITH_LEN("--DISTRIBUTION=random") },
252 { STRING_WITH_LEN("--DISTRIBUTION=modula") },
253 { NULL, 0}
254 };
255
256 for (scanner_string_st *ptr= test_strings; ptr->size; ptr++)
257 {
258 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
259 test_true_got(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
260 }
261
262 memcached_free(memc);
263
264 return TEST_SUCCESS;
265 }