1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
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
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
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.
39 Test that we are cycling the servers we are creating during testing.
44 #include <libtest/test.hpp>
45 #include <libmemcached/memcached.h>
47 using namespace libtest
;
49 #ifndef __INTEL_COMPILER
50 #pragma GCC diagnostic ignored "-Wstrict-aliasing"
53 static std::string executable
;
55 static test_return_t
quiet_test(void *)
57 const char *args
[]= { "--quiet", 0 };
59 test_true(exec_cmdline(executable
, args
));
63 static test_return_t
help_test(void *)
65 const char *args
[]= { "--quiet", "--help", 0 };
67 test_true(exec_cmdline(executable
, args
));
71 static test_return_t
server_test(void *)
74 snprintf(buffer
, sizeof(buffer
), "--servers=localhost:%d", int(default_port()));
75 const char *args
[]= { "--quiet", buffer
, 0 };
77 test_true(exec_cmdline(executable
, args
));
81 static test_return_t
server_concurrency_test(void *)
84 snprintf(buffer
, sizeof(buffer
), "--servers=localhost:%d", int(default_port()));
85 const char *args
[]= { "--quiet", buffer
, "--concurrency=10", 0 };
87 test_true(exec_cmdline(executable
, args
));
91 static test_return_t
server_concurrency_initial_load_test(void *)
94 snprintf(buffer
, sizeof(buffer
), "--servers=localhost:%d", int(default_port()));
95 const char *args
[]= { "--quiet", buffer
, "--concurrency=10", "--initial-load=1000", 0 };
97 test_true(exec_cmdline(executable
, args
));
101 static test_return_t
server_concurrency_initial_load_execute_number_test(void *)
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 };
107 test_true(exec_cmdline(executable
, args
));
111 static test_return_t
server_concurrency_initial_load_execute_number_test_get_test(void *)
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 };
117 test_true(exec_cmdline(executable
, args
));
121 static test_return_t
server_concurrency_initial_load_execute_number_test_set_test(void *)
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 };
127 test_true(exec_cmdline(executable
, args
));
131 static test_return_t
server_concurrency_initial_load_execute_number_test_set_non_blocking_test(void *)
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 };
137 test_true(exec_cmdline(executable
, args
));
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
},
154 collection_st collection
[] ={
155 {"memslap", 0, 0, memslap_tests
},
159 static void *world_create(server_startup_st
& servers
, test_return_t
& error
)
161 if (HAVE_MEMCACHED_BINARY
== 0)
167 const char *argv
[1]= { "memslap" };
168 if (not server_startup(servers
, "memcached", MEMCACHED_DEFAULT_PORT
+10, 1, argv
))
177 void get_world(Framework
*world
)
179 executable
= "./clients/memslap";
180 world
->collections
= collection
;
181 world
->_create
= world_create
;