Additional fixes/test. We will now limit the hostname when adding it into
[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 memcached_free(memc);
107
108 return TEST_SUCCESS;
109 }