Update tests per bug 912408, so that if memcached is not available they will SKIP...
[m6w6/libmemcached] / tests / memslap.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Test memslap
4 *
5 * Copyright (C) 2011 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
38 /*
39 Test that we are cycling the servers we are creating during testing.
40 */
41
42 #include <config.h>
43
44 #include <libtest/test.hpp>
45 #include <libmemcached/memcached.h>
46
47 using namespace libtest;
48
49 #ifndef __INTEL_COMPILER
50 #pragma GCC diagnostic ignored "-Wstrict-aliasing"
51 #endif
52
53 static std::string executable;
54
55 static test_return_t quiet_test(void *)
56 {
57 const char *args[]= { "--quiet", 0 };
58
59 test_true(exec_cmdline(executable, args));
60 return TEST_SUCCESS;
61 }
62
63 static test_return_t help_test(void *)
64 {
65 const char *args[]= { "--quiet", "--help", 0 };
66
67 test_true(exec_cmdline(executable, args));
68 return TEST_SUCCESS;
69 }
70
71 static test_return_t server_test(void *)
72 {
73 char buffer[1024];
74 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
75 const char *args[]= { "--quiet", buffer, 0 };
76
77 test_true(exec_cmdline(executable, args));
78 return TEST_SUCCESS;
79 }
80
81 static test_return_t server_concurrency_test(void *)
82 {
83 char buffer[1024];
84 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
85 const char *args[]= { "--quiet", buffer, "--concurrency=10", 0 };
86
87 test_true(exec_cmdline(executable, args));
88 return TEST_SUCCESS;
89 }
90
91 static test_return_t server_concurrency_initial_load_test(void *)
92 {
93 char buffer[1024];
94 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
95 const char *args[]= { "--quiet", buffer, "--concurrency=10", "--initial-load=1000", 0 };
96
97 test_true(exec_cmdline(executable, args));
98 return TEST_SUCCESS;
99 }
100
101 static test_return_t server_concurrency_initial_load_execute_number_test(void *)
102 {
103 char buffer[1024];
104 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
105 const char *args[]= { "--quiet", buffer, "--concurrency=10", "--initial-load=1000", "--execute-number=10", 0 };
106
107 test_true(exec_cmdline(executable, args));
108 return TEST_SUCCESS;
109 }
110
111 static test_return_t server_concurrency_initial_load_execute_number_test_get_test(void *)
112 {
113 char buffer[1024];
114 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
115 const char *args[]= { "--quiet", buffer, "--concurrency=10", "--initial-load=1000", "--execute-number=10", "--test=get", 0 };
116
117 test_true(exec_cmdline(executable, args));
118 return TEST_SUCCESS;
119 }
120
121 static test_return_t server_concurrency_initial_load_execute_number_test_set_test(void *)
122 {
123 char buffer[1024];
124 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
125 const char *args[]= { "--quiet", buffer, "--concurrency=10", "--initial-load=1000", "--execute-number=10", "--test=set", 0 };
126
127 test_true(exec_cmdline(executable, args));
128 return TEST_SUCCESS;
129 }
130
131 static test_return_t server_concurrency_initial_load_execute_number_test_set_non_blocking_test(void *)
132 {
133 char buffer[1024];
134 snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port()));
135 const char *args[]= { "--quiet", buffer, "--concurrency=10", "--initial-load=1000", "--execute-number=10", "--test=set", "--non-blocking", 0 };
136
137 test_true(exec_cmdline(executable, args));
138 return TEST_SUCCESS;
139 }
140
141 test_st memslap_tests[] ={
142 {"--quiet", true, quiet_test },
143 {"--help", true, help_test },
144 {"--server_test", true, server_test },
145 {"--concurrency=10", true, server_concurrency_test },
146 {"--initial-load=1000", true, server_concurrency_initial_load_test },
147 {"--execute-number=10", true, server_concurrency_initial_load_execute_number_test },
148 {"--test=get", true, server_concurrency_initial_load_execute_number_test_get_test },
149 {"--test=set", true, server_concurrency_initial_load_execute_number_test_set_test },
150 {"--test=set --non-blockin", true, server_concurrency_initial_load_execute_number_test_set_non_blocking_test },
151 {0, 0, 0}
152 };
153
154 collection_st collection[] ={
155 {"memslap", 0, 0, memslap_tests },
156 {0, 0, 0, 0}
157 };
158
159 static void *world_create(server_startup_st& servers, test_return_t& error)
160 {
161 if (HAVE_MEMCACHED_BINARY == 0)
162 {
163 error= TEST_SKIPPED;
164 return NULL;
165 }
166
167 const char *argv[1]= { "memslap" };
168 if (not server_startup(servers, "memcached", MEMCACHED_DEFAULT_PORT +10, 1, argv))
169 {
170 error= TEST_FAILURE;
171 }
172
173 return &servers;
174 }
175
176
177 void get_world(Framework *world)
178 {
179 executable= "./clients/memslap";
180 world->collections= collection;
181 world->_create= world_create;
182 }
183