Merge in additions to the scanner.
[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 test_return_t behavior_parser_test(memcached_st *junk)
133 {
134 (void)junk;
135 return TEST_SUCCESS;
136 }
137
138 test_return_t parser_hash_test(memcached_st *junk)
139 {
140 (void)junk;
141 memcached_return_t rc;
142 memcached_st *memc;
143 memc= memcached_create(NULL);
144
145 scanner_string_st test_strings[]= {
146 { STRING_WITH_LEN("--HASH=MD5") },
147 { STRING_WITH_LEN("--HASH=CRC") },
148 { STRING_WITH_LEN("--HASH=FNV1_64") },
149 { STRING_WITH_LEN("--HASH=FNV1A_64") },
150 { STRING_WITH_LEN("--HASH=FNV1_32") },
151 { STRING_WITH_LEN("--HASH=FNV1A_32") },
152 { STRING_WITH_LEN("--HASH=HSIEH") },
153 { STRING_WITH_LEN("--HASH=MURMUR") },
154 { STRING_WITH_LEN("--HASH=JENKINS") },
155 { NULL, 0}
156 };
157
158 for (scanner_string_st *ptr= test_strings; ptr->size; ptr++)
159 {
160 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
161 test_true_got(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
162 }
163
164 memcached_free(memc);
165
166 return TEST_SUCCESS;
167 }
168
169 test_return_t parser_distribution_test(memcached_st *junk)
170 {
171 (void)junk;
172 memcached_return_t rc;
173 memcached_st *memc;
174 memc= memcached_create(NULL);
175
176 scanner_string_st test_strings[]= {
177 { STRING_WITH_LEN("--DISTRIBUTION=consistent") },
178 { STRING_WITH_LEN("--DISTRIBUTION=random") },
179 { STRING_WITH_LEN("--DISTRIBUTION=modula") },
180 { NULL, 0}
181 };
182
183 for (scanner_string_st *ptr= test_strings; ptr->size; ptr++)
184 {
185 rc= memcached_parse_options(memc, ptr->c_ptr, ptr->size);
186 test_true_got(rc == MEMCACHED_SUCCESS, ptr->c_ptr);
187 }
188
189 memcached_free(memc);
190
191 return TEST_SUCCESS;
192 }