Merge in changes to allow for weights on hosts.
[m6w6/libmemcached] / tests / parser.h
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 #pragma once
39
40 #include <libtest/test.h>
41
42 #ifdef __cplusplus
43 extern "C" {
44 #endif
45
46 LIBTEST_INTERNAL_API
47 test_return_t server_test(memcached_st *memc);
48
49 LIBTEST_INTERNAL_API
50 test_return_t servers_bad_test(memcached_st *memc);
51
52 LIBTEST_INTERNAL_API
53 test_return_t behavior_parser_test(memcached_st*);
54
55 LIBTEST_INTERNAL_API
56 test_return_t parser_number_options_test(memcached_st*);
57
58 LIBTEST_INTERNAL_API
59 test_return_t parser_distribution_test(memcached_st*);
60
61 LIBTEST_INTERNAL_API
62 test_return_t parser_hash_test(memcached_st*);
63
64 LIBTEST_INTERNAL_API
65 test_return_t parser_boolean_options_test(memcached_st*);
66
67 LIBTEST_INTERNAL_API
68 test_return_t parser_key_prefix_test(memcached_st*);
69
70 LIBTEST_INTERNAL_API
71 test_return_t memcached_parse_configure_file_test(memcached_st*);
72
73 LIBTEST_INTERNAL_API
74 test_return_t libmemcached_check_configuration_test(memcached_st*);
75
76 LIBTEST_INTERNAL_API
77 test_return_t memcached_create_with_options_test(memcached_st*);
78
79 LIBTEST_INTERNAL_API
80 test_return_t memcached_create_with_options_with_filename(memcached_st*);
81
82 LIBTEST_INTERNAL_API
83 test_return_t libmemcached_check_configuration_with_filename_test(memcached_st*);
84
85 LIBTEST_INTERNAL_API
86 test_return_t random_statement_build_test(memcached_st*);
87
88 LIBTEST_INTERNAL_API
89 test_return_t test_include_keyword(memcached_st*);
90
91 LIBTEST_INTERNAL_API
92 test_return_t test_end_keyword(memcached_st*);
93
94 LIBTEST_INTERNAL_API
95 test_return_t test_reset_keyword(memcached_st*);
96
97 LIBTEST_INTERNAL_API
98 test_return_t test_error_keyword(memcached_st*);
99
100 LIBTEST_INTERNAL_API
101 test_return_t server_with_weight_test(memcached_st *);
102
103 #ifdef __cplusplus
104 }
105 #endif