fix wrong type of memcached_instance_st::server_timeout_counter_query_id
[awesomized/libmemcached] / tests / parser.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Libmemcached library
4 *
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
17 * distribution.
18 *
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
21 * written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 *
35 */
36
37 #include <mem_config.h>
38
39 /*
40 C++ interface test
41 */
42 #include <libmemcached-1.0/memcached.hpp>
43 #include <libtest/test.hpp>
44
45 using namespace libtest;
46
47 static test_return_t memcached_NULL_string_TEST(void*)
48 {
49 test_null(memcached(NULL, 75));
50 return TEST_SUCCESS;
51 }
52
53 static test_return_t memcached_zero_string_length_TEST(void*)
54 {
55 test_null(memcached("value", 0));
56 return TEST_SUCCESS;
57 }
58
59 static test_return_t putenv_localhost_quoted_TEST(void*)
60 {
61 test_zero(setenv("LIBMEMCACHED", "\"--server=localhost\"", 1));
62 test_null(memcached(NULL, 0));
63
64 return TEST_SUCCESS;
65 }
66
67 static test_return_t putenv_NULL_TEST(void*)
68 {
69 test_zero(setenv("LIBMEMCACHED", "", 1));
70 memcached_st *memc= memcached(NULL, 0);
71 test_true(memc);
72
73 memcached_free(memc);
74
75 return TEST_SUCCESS;
76 }
77
78 static test_return_t putenv_localhost_TEST(void*)
79 {
80 test_zero(setenv("LIBMEMCACHED", "--server=localhost", 1));
81 memcached_st *memc= memcached(NULL, 0);
82 test_true(memc);
83
84 memcached_free(memc);
85
86 return TEST_SUCCESS;
87 }
88
89 test_st memcached_TESTS[] ={
90 {"memcached(NULL, 75)", false, (test_callback_fn*)memcached_NULL_string_TEST },
91 {"memcached(\"value\", 0)", false, (test_callback_fn*)memcached_zero_string_length_TEST },
92 {"putenv(LIBMEMCACHED=--server=localhost)", false, (test_callback_fn*)putenv_localhost_TEST },
93 {"putenv(LIBMEMCACHED)", false, (test_callback_fn*)putenv_NULL_TEST },
94 {"putenv(LIBMEMCACHED=--server=\"localhost\")", false, (test_callback_fn*)putenv_localhost_quoted_TEST },
95 {0, 0, 0}
96 };
97
98 collection_st collection[] ={
99 {"memcached()", 0, 0, memcached_TESTS},
100 {0, 0, 0, 0}
101 };
102
103 void get_world(libtest::Framework* world)
104 {
105 world->collections(collection);
106 }
107