0272ee7e181a10ba73cbad237287491e789d0c8c
[m6w6/libmemcached] / libtest / unittest.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * libtest
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 3 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22
23 #include <config.h>
24
25 #include <libtest/test.hpp>
26
27 #if defined(LIBTEST_WITH_LIBMEMCACHED_SUPPORT) && LIBTEST_WITH_LIBMEMCACHED_SUPPORT
28 #include <libmemcached-1.0/memcached.h>
29 #endif
30
31 #if defined(LIBTEST_WITH_LIBGEARMAN_SUPPORT) && LIBTEST_WITH_LIBGEARMAN_SUPPORT
32 #include <libgearman/gearman.h>
33 #endif
34
35 #include <cstdlib>
36 #include <unistd.h>
37
38 using namespace libtest;
39
40 static test_return_t LIBTOOL_COMMAND_test(void *)
41 {
42 test_true(getenv("LIBTOOL_COMMAND"));
43 return TEST_SUCCESS;
44 }
45
46 static test_return_t VALGRIND_COMMAND_test(void *)
47 {
48 test_true(getenv("VALGRIND_COMMAND"));
49 return TEST_SUCCESS;
50 }
51
52 static test_return_t HELGRIND_COMMAND_test(void *)
53 {
54 test_true(getenv("HELGRIND_COMMAND"));
55 return TEST_SUCCESS;
56 }
57
58 static test_return_t GDB_COMMAND_test(void *)
59 {
60 test_true(getenv("GDB_COMMAND"));
61 return TEST_SUCCESS;
62 }
63
64 static test_return_t test_success_equals_one_test(void *)
65 {
66 test_skip(HAVE_LIBMEMCACHED, true);
67 #if defined(HAVE_LIBMEMCACHED) && HAVE_LIBMEMCACHED
68 test_zero(MEMCACHED_SUCCESS);
69 #endif
70 return TEST_SUCCESS;
71 }
72
73 static test_return_t test_success_test(void *)
74 {
75 return TEST_SUCCESS;
76 }
77
78 static test_return_t test_failure_test(void *)
79 {
80 return TEST_SKIPPED; // Only run this when debugging
81
82 test_compare(1, 2);
83 return TEST_SUCCESS;
84 }
85
86 static test_return_t local_test(void *)
87 {
88 if (getenv("LIBTEST_LOCAL"))
89 {
90 test_true(test_is_local());
91 }
92 else
93 {
94 test_false(test_is_local());
95 }
96
97 return TEST_SUCCESS;
98 }
99
100 static test_return_t local_not_test(void *)
101 {
102 return TEST_SKIPPED;
103
104 std::string temp;
105
106 const char *ptr;
107 if ((ptr= getenv("LIBTEST_LOCAL")) == NULL)
108 {
109 temp.append(ptr);
110 }
111
112 // unsetenv() will cause issues with valgrind
113 _compare(__FILE__, __LINE__, __func__, 0, unsetenv("LIBTEST_LOCAL"));
114 test_compare(0, unsetenv("LIBTEST_LOCAL"));
115 test_false(test_is_local());
116
117 test_compare(0, setenv("LIBTEST_LOCAL", "1", 1));
118 test_true(test_is_local());
119
120 if (temp.empty())
121 {
122 test_compare(0, unsetenv("LIBTEST_LOCAL"));
123 }
124 else
125 {
126 char *old_string= strdup(temp.c_str());
127 test_compare(0, setenv("LIBTEST_LOCAL", old_string, 1));
128 }
129
130 return TEST_SUCCESS;
131 }
132
133 static test_return_t var_exists_test(void *)
134 {
135 test_compare(0, access("var", R_OK | W_OK | X_OK));
136 return TEST_SUCCESS;
137 }
138
139 static test_return_t var_tmp_exists_test(void *)
140 {
141 test_compare(0, access("var/tmp", R_OK | W_OK | X_OK));
142 return TEST_SUCCESS;
143 }
144
145 static test_return_t var_run_exists_test(void *)
146 {
147 test_compare(0, access("var/run", R_OK | W_OK | X_OK));
148 return TEST_SUCCESS;
149 }
150
151 static test_return_t var_log_exists_test(void *)
152 {
153 test_compare(0, access("var/log", R_OK | W_OK | X_OK));
154 return TEST_SUCCESS;
155 }
156
157 static test_return_t var_tmp_test(void *)
158 {
159 FILE *file= fopen("var/tmp/junk", "w+");
160 char buffer[1024];
161 const char *dir= getcwd(buffer, sizeof(buffer));
162 test_true_got(file, dir);
163 fclose(file);
164 return TEST_SUCCESS;
165 }
166
167 static test_return_t var_run_test(void *)
168 {
169 FILE *file= fopen("var/run/junk", "w+");
170 test_true(file);
171 fclose(file);
172 return TEST_SUCCESS;
173 }
174
175 static test_return_t var_log_test(void *)
176 {
177 FILE *file= fopen("var/log/junk", "w+");
178 test_true(file);
179 fclose(file);
180 return TEST_SUCCESS;
181 }
182
183 static test_return_t var_tmp_rm_test(void *)
184 {
185 test_true(unlink("var/tmp/junk") == 0);
186 return TEST_SUCCESS;
187 }
188
189 static test_return_t var_run_rm_test(void *)
190 {
191 test_true(unlink("var/run/junk") == 0);
192 return TEST_SUCCESS;
193 }
194
195 static test_return_t var_log_rm_test(void *)
196 {
197 test_true(unlink("var/log/junk") == 0);
198 return TEST_SUCCESS;
199 }
200
201 static test_return_t _compare_test_return_t_test(void *)
202 {
203 test_compare(TEST_SUCCESS, TEST_SUCCESS);
204
205 return TEST_SUCCESS;
206 }
207
208 static test_return_t _compare_memcached_return_t_test(void *)
209 {
210 test_skip(HAVE_LIBMEMCACHED, true);
211 #if defined(HAVE_LIBMEMCACHED) && HAVE_LIBMEMCACHED
212 test_compare(MEMCACHED_SUCCESS, MEMCACHED_SUCCESS);
213 #endif
214
215 return TEST_SUCCESS;
216 }
217
218 static test_return_t _compare_gearman_return_t_test(void *)
219 {
220 test_skip(HAVE_LIBGEARMAN, true);
221 #if defined(HAVE_LIBGEARMAN) && HAVE_LIBGEARMAN
222 test_compare(GEARMAN_SUCCESS, GEARMAN_SUCCESS);
223 #endif
224
225 return TEST_SUCCESS;
226 }
227
228 static test_return_t gearmand_cycle_test(void *object)
229 {
230 server_startup_st *servers= (server_startup_st*)object;
231 test_true(servers);
232
233 #if defined(HAVE_GEARMAND_BINARY) && HAVE_GEARMAND_BINARY
234 test_true(has_gearmand_binary());
235 #else
236 test_skip(true, has_gearmand_binary());
237 #endif
238
239 test_true(server_startup(*servers, "gearmand", get_free_port(), 0, NULL));
240
241 return TEST_SUCCESS;
242 }
243
244 static test_return_t memcached_light_cycle_TEST(void *object)
245 {
246 server_startup_st *servers= (server_startup_st*)object;
247 test_true(servers);
248
249 test_skip(true, bool(HAVE_MEMCACHED_LIGHT_BINARY));
250
251 test_true(server_startup(*servers, "memcached-light", get_free_port(), 0, NULL));
252
253 return TEST_SUCCESS;
254 }
255
256 static test_return_t memcached_cycle_test(void *object)
257 {
258 server_startup_st *servers= (server_startup_st*)object;
259 test_true(servers);
260
261 if (MEMCACHED_BINARY and HAVE_LIBMEMCACHED)
262 {
263 test_true(has_memcached_binary());
264 test_true(server_startup(*servers, "memcached", get_free_port(), 0, NULL));
265
266 return TEST_SUCCESS;
267 }
268
269 return TEST_SKIPPED;
270 }
271
272 static test_return_t memcached_socket_cycle_test(void *object)
273 {
274 server_startup_st *servers= (server_startup_st*)object;
275 test_true(servers);
276
277 if (MEMCACHED_BINARY)
278 {
279 if (HAVE_LIBMEMCACHED)
280 {
281 test_true(has_memcached_binary());
282 test_true(servers->start_socket_server("memcached", get_free_port(), 0, NULL));
283
284 return TEST_SUCCESS;
285 }
286 }
287
288 return TEST_SKIPPED;
289 }
290
291 static test_return_t memcached_sasl_test(void *object)
292 {
293 server_startup_st *servers= (server_startup_st*)object;
294 test_true(servers);
295
296 if (getenv("TESTS_ENVIRONMENT"))
297 {
298 return TEST_SKIPPED;
299 }
300
301 if (MEMCACHED_SASL_BINARY)
302 {
303 if (HAVE_LIBMEMCACHED)
304 {
305 test_true(has_memcached_sasl_binary());
306 test_true(server_startup(*servers, "memcached-sasl", get_free_port(), 0, NULL));
307
308 return TEST_SUCCESS;
309 }
310 }
311
312 return TEST_SKIPPED;
313 }
314
315 static test_return_t application_true_BINARY(void *)
316 {
317 Application true_app("true");
318
319 test_compare(Application::SUCCESS, true_app.run());
320 test_compare(Application::SUCCESS, true_app.wait());
321
322 return TEST_SUCCESS;
323 }
324
325 static test_return_t application_gdb_true_BINARY2(void *)
326 {
327 test_skip(0, access("/usr/bin/gdb", X_OK ));
328 Application true_app("true");
329 true_app.use_gdb();
330
331 test_compare(Application::SUCCESS, true_app.run());
332 test_compare(Application::SUCCESS, true_app.wait());
333
334 return TEST_SUCCESS;
335 }
336
337 static test_return_t application_gdb_true_BINARY(void *)
338 {
339 test_skip(0, access("/usr/bin/gdb", X_OK ));
340 Application true_app("true");
341 true_app.use_gdb();
342
343 const char *args[]= { "--fubar", 0 };
344 test_compare(Application::SUCCESS, true_app.run(args));
345 test_compare(Application::SUCCESS, true_app.wait());
346
347 return TEST_SUCCESS;
348 }
349
350 static test_return_t application_true_fubar_BINARY(void *)
351 {
352 Application true_app("true");
353
354 const char *args[]= { "--fubar", 0 };
355 test_compare(Application::SUCCESS, true_app.run(args));
356 test_compare(Application::SUCCESS, true_app.wait());
357 test_compare(0, true_app.stdout_result().size());
358
359 return TEST_SUCCESS;
360 }
361
362 static test_return_t application_doesnotexist_BINARY(void *)
363 {
364 Application true_app("doesnotexist");
365
366 const char *args[]= { "--fubar", 0 };
367 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
368 test_compare(Application::INVALID, true_app.run(args));
369 #else
370 test_compare(Application::SUCCESS, true_app.run(args));
371 #endif
372 // Behavior is different if we are running under valgrind
373 if (getenv("TESTS_ENVIRONMENT") and strstr(getenv("TESTS_ENVIRONMENT"), "valgrind"))
374 {
375 test_compare(Application::FAILURE, true_app.wait());
376 }
377 else
378 {
379 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
380 test_compare(Application::FAILURE, true_app.wait());
381 #else
382 if (getenv("TESTS_ENVIRONMENT") and strstr(getenv("TESTS_ENVIRONMENT"), "valgrind"))
383 {
384 test_compare(Application::FAILURE, true_app.wait());
385 }
386 else
387 {
388 test_compare(Application::INVALID, true_app.wait());
389 }
390 #endif
391 }
392 test_compare(0, true_app.stdout_result().size());
393
394 return TEST_SUCCESS;
395 }
396
397 static test_return_t application_true_fubar_eq_doh_BINARY(void *)
398 {
399 Application true_app("true");
400
401 const char *args[]= { "--fubar=doh", 0 };
402 test_compare(Application::SUCCESS, true_app.run(args));
403 test_compare(Application::SUCCESS, true_app.wait());
404 test_compare(0, true_app.stdout_result().size());
405
406 return TEST_SUCCESS;
407 }
408
409 static test_return_t application_true_fubar_eq_doh_option_BINARY(void *)
410 {
411 Application true_app("true");
412
413 true_app.add_option("--fubar=", "doh");
414
415 test_compare(Application::SUCCESS, true_app.run());
416 test_compare(Application::SUCCESS, true_app.wait());
417 test_compare(0, true_app.stdout_result().size());
418
419 return TEST_SUCCESS;
420 }
421
422
423 static test_return_t GET_TEST(void *)
424 {
425 libtest::http::GET get("http://foo.example.com/");
426
427 test_compare(false, get.execute());
428
429 return TEST_SUCCESS;
430 }
431
432 static test_return_t POST_TEST(void *)
433 {
434 libtest::vchar_t body;
435 libtest::http::POST post("http://foo.example.com/", body);
436
437 test_compare(false, post.execute());
438
439 return TEST_SUCCESS;
440 }
441
442 static test_return_t TRACE_TEST(void *)
443 {
444 libtest::vchar_t body;
445 libtest::http::TRACE trace("http://foo.example.com/", body);
446
447 test_compare(false, trace.execute());
448
449 return TEST_SUCCESS;
450 }
451
452
453 static test_return_t vchar_t_TEST(void *)
454 {
455 libtest::vchar_t response;
456 libtest::make_vector(response, test_literal_param("fubar\n"));
457 test_compare(response, response);
458
459 return TEST_SUCCESS;
460 }
461
462 static test_return_t application_echo_fubar_BINARY(void *)
463 {
464 Application true_app("echo");
465
466 const char *args[]= { "fubar", 0 };
467 test_compare(Application::SUCCESS, true_app.run(args));
468 test_compare(Application::SUCCESS, true_app.wait());
469
470 libtest::vchar_t response;
471 make_vector(response, test_literal_param("fubar\n"));
472 test_compare(response, true_app.stdout_result());
473
474 return TEST_SUCCESS;
475 }
476
477 static test_return_t application_echo_fubar_BINARY2(void *)
478 {
479 Application true_app("echo");
480
481 true_app.add_option("fubar");
482
483 test_compare(Application::SUCCESS, true_app.run());
484 test_compare(Application::SUCCESS, true_app.wait());
485 libtest::vchar_t response;
486 make_vector(response, test_literal_param("fubar\n"));
487 test_compare(response, true_app.stdout_result());
488
489 return TEST_SUCCESS;
490 }
491
492 static test_return_t true_BINARY(void *)
493 {
494 const char *args[]= { 0 };
495 test_compare(EXIT_SUCCESS, exec_cmdline("true", args));
496
497 return TEST_SUCCESS;
498 }
499
500 static test_return_t true_fubar_BINARY(void *)
501 {
502 const char *args[]= { "--fubar", 0 };
503 test_compare(EXIT_SUCCESS, exec_cmdline("true", args));
504
505 return TEST_SUCCESS;
506 }
507
508 static test_return_t echo_fubar_BINARY(void *)
509 {
510 const char *args[]= { "fubar", 0 };
511 test_compare(EXIT_SUCCESS, exec_cmdline("echo", args));
512
513 return TEST_SUCCESS;
514 }
515
516 static test_return_t wait_BINARY(void *)
517 {
518 const char *args[]= { "--quiet", 0 };
519
520 test_compare(EXIT_FAILURE, exec_cmdline("libtest/wait", args, true));
521
522 return TEST_SUCCESS;
523 }
524
525 static test_return_t wait_help_BINARY(void *)
526 {
527 const char *args[]= { "--quiet", "--help", 0 };
528
529 test_compare(EXIT_SUCCESS, exec_cmdline("libtest/wait", args, true));
530
531 return TEST_SUCCESS;
532 }
533
534 static test_return_t wait_version_BINARY(void *)
535 {
536 const char *args[]= { "--quiet", "--version", 0 };
537
538 test_compare(EXIT_SUCCESS, exec_cmdline("libtest/wait", args, true));
539
540 return TEST_SUCCESS;
541 }
542
543 static test_return_t wait_services_BINARY(void *)
544 {
545 test_skip(0, access("/etc/services", R_OK ));
546
547 const char *args[]= { "--quiet", "/etc/services", 0 };
548
549 test_compare(EXIT_SUCCESS, exec_cmdline("libtest/wait", args, true));
550
551 return TEST_SUCCESS;
552 }
553
554 static test_return_t wait_services_BINARY2(void *)
555 {
556 test_skip(0, access("/etc/services", R_OK ));
557
558 const char *args[]= { "/etc/services", 0 };
559
560 test_compare(EXIT_SUCCESS, exec_cmdline("libtest/wait", args, true));
561
562 return TEST_SUCCESS;
563 }
564
565 static test_return_t wait_services_appliction_TEST(void *)
566 {
567 test_skip(0, access("/usr/bin/gdb", X_OK ));
568 test_skip(0, access("/etc/services", R_OK ));
569
570 libtest::Application wait_app("libtest/wait", true);
571 wait_app.use_gdb();
572
573 const char *args[]= { "/etc/services", 0 };
574 test_compare(Application::SUCCESS, wait_app.run(args));
575 test_compare(Application::SUCCESS, wait_app.wait());
576
577 return TEST_SUCCESS;
578 }
579
580 static test_return_t gdb_wait_services_appliction_TEST(void *)
581 {
582 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
583 test_skip(0, TARGET_OS_OSX);
584 #endif
585
586 test_skip(0, access("/usr/bin/gdb", X_OK ));
587 test_skip(0, access("/etc/services", R_OK ));
588
589 libtest::Application wait_app("libtest/wait", true);
590 wait_app.use_gdb();
591
592 const char *args[]= { "/etc/services", 0 };
593 test_compare(Application::SUCCESS, wait_app.run(args));
594 test_compare(Application::SUCCESS, wait_app.wait());
595
596 return TEST_SUCCESS;
597 }
598
599 static test_return_t gdb_abort_services_appliction_TEST(void *)
600 {
601 test_skip(0, access("/usr/bin/gdb", X_OK ));
602
603 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
604 test_skip(0, TARGET_OS_OSX);
605 #endif
606
607 libtest::Application abort_app("libtest/abort", true);
608 abort_app.use_gdb();
609
610 test_compare(Application::SUCCESS, abort_app.run());
611 test_compare(Application::SUCCESS, abort_app.wait());
612
613 std::string gdb_filename= abort_app.gdb_filename();
614 const char *args[]= { "SIGABRT", gdb_filename.c_str(), 0 };
615 test_compare(EXIT_SUCCESS, exec_cmdline("grep", args));
616
617 // Sanity test
618 args[0]= "THIS_WILL_NOT_BE_FOUND";
619 test_compare(EXIT_FAILURE, exec_cmdline("grep", args));
620
621 return TEST_SUCCESS;
622 }
623
624 static test_return_t get_free_port_TEST(void *)
625 {
626 in_port_t ret_port;
627 test_true_hint((ret_port= get_free_port()), ret_port);
628 test_true(get_free_port() != default_port());
629 test_true(get_free_port() != get_free_port());
630
631 return TEST_SUCCESS;
632 }
633
634 static uint32_t fatal_calls= 0;
635
636 static test_return_t fatal_TEST(void *)
637 {
638 test_compare(fatal_calls++, fatal::disabled_counter());
639 throw libtest::fatal(LIBYATL_DEFAULT_PARAM, "Testing va_args based fatal(): %d", 10);
640
641 return TEST_SUCCESS;
642 }
643
644 static test_return_t number_of_cpus_TEST(void *)
645 {
646 test_true(number_of_cpus() >= 1);
647
648 return TEST_SUCCESS;
649 }
650
651 static test_return_t create_tmpfile_TEST(void *)
652 {
653 std::string tmp= create_tmpfile(__func__);
654
655 Application touch_app("touch");
656 const char *args[]= { tmp.c_str(), 0 };
657 test_compare(Application::SUCCESS, touch_app.run(args));
658 test_compare(Application::SUCCESS, touch_app.wait());
659
660 test_compare_hint(0, access(tmp.c_str(), R_OK), strerror(errno));
661 test_compare_hint(0, unlink(tmp.c_str()), strerror(errno));
662
663 return TEST_SUCCESS;
664 }
665
666 static test_return_t fatal_message_TEST(void *)
667 {
668 test_compare(fatal_calls++, fatal::disabled_counter());
669 throw fatal_message("Fatal test");
670
671 return TEST_SUCCESS;
672 }
673
674 static test_return_t default_port_TEST(void *)
675 {
676 in_port_t ret_port= default_port();
677 test_compare(ret_port, libtest::default_port());
678 test_compare(ret_port, libtest::default_port());
679
680 return TEST_SUCCESS;
681 }
682
683 static test_return_t check_for_gearman(void *)
684 {
685 test_skip(true, HAVE_LIBGEARMAN);
686 test_skip(true, has_gearmand_binary());
687 return TEST_SUCCESS;
688 }
689
690
691 test_st gearmand_tests[] ={
692 #if 0
693 {"pause", 0, pause_test },
694 #endif
695 {"gearmand startup-shutdown", 0, gearmand_cycle_test },
696 {"_compare(gearman_return_t)", 0, _compare_gearman_return_t_test },
697 {0, 0, 0}
698 };
699
700 static test_return_t check_for_libmemcached(void *)
701 {
702 test_skip(true, HAVE_LIBMEMCACHED);
703 test_skip(true, has_memcached_binary());
704 return TEST_SUCCESS;
705 }
706
707 test_st memcached_tests[] ={
708 {"memcached startup-shutdown", 0, memcached_cycle_test },
709 {"memcached-light startup-shutdown", 0, memcached_light_cycle_TEST },
710 {"memcached(socket file) startup-shutdown", 0, memcached_socket_cycle_test },
711 {"memcached_sasl() startup-shutdown", 0, memcached_sasl_test },
712 {"_compare(memcached_return_t)", 0, _compare_memcached_return_t_test },
713 {0, 0, 0}
714 };
715
716 test_st environment_tests[] ={
717 {"LIBTOOL_COMMAND", 0, LIBTOOL_COMMAND_test },
718 {"VALGRIND_COMMAND", 0, VALGRIND_COMMAND_test },
719 {"HELGRIND_COMMAND", 0, HELGRIND_COMMAND_test },
720 {"GDB_COMMAND", 0, GDB_COMMAND_test },
721 {0, 0, 0}
722 };
723
724 test_st tests_log[] ={
725 {"TEST_SUCCESS", false, test_success_test },
726 {"TEST_FAILURE", false, test_failure_test },
727 {"TEST_SUCCESS == 0", false, test_success_equals_one_test },
728 {0, 0, 0}
729 };
730
731 test_st local_log[] ={
732 {"test_is_local()", 0, local_test },
733 {"test_is_local(NOT)", 0, local_not_test },
734 {0, 0, 0}
735 };
736
737 test_st directories_tests[] ={
738 {"var exists", 0, var_exists_test },
739 {"var/tmp exists", 0, var_tmp_exists_test },
740 {"var/run exists", 0, var_run_exists_test },
741 {"var/log exists", 0, var_log_exists_test },
742 {"var/tmp", 0, var_tmp_test },
743 {"var/run", 0, var_run_test },
744 {"var/log", 0, var_log_test },
745 {"var/tmp rm", 0, var_tmp_rm_test },
746 {"var/run rm", 0, var_run_rm_test },
747 {"var/log rm", 0, var_log_rm_test },
748 {0, 0, 0}
749 };
750
751 test_st comparison_tests[] ={
752 {"_compare(test_return_t)", 0, _compare_test_return_t_test },
753 {0, 0, 0}
754 };
755
756 test_st cmdline_tests[] ={
757 {"true", 0, true_BINARY },
758 {"true --fubar", 0, true_fubar_BINARY },
759 {"echo fubar", 0, echo_fubar_BINARY },
760 {"wait --quiet", 0, wait_BINARY },
761 {"wait --quiet --help", 0, wait_help_BINARY },
762 {"wait --quiet --version", 0, wait_version_BINARY },
763 {"wait --quiet /etc/services", 0, wait_services_BINARY },
764 {"wait /etc/services", 0, wait_services_BINARY2 },
765 {"wait /etc/services", 0, wait_services_appliction_TEST },
766 {"gdb wait /etc/services", 0, gdb_wait_services_appliction_TEST },
767 {"gdb abort", 0, gdb_abort_services_appliction_TEST },
768 {0, 0, 0}
769 };
770
771 test_st get_free_port_TESTS[] ={
772 {"get_free_port()", 0, get_free_port_TEST },
773 {"default_port()", 0, default_port_TEST },
774 {0, 0, 0}
775 };
776
777 test_st fatal_message_TESTS[] ={
778 {"libtest::fatal", 0, fatal_TEST },
779 {"fatal_message()", 0, fatal_message_TEST },
780 {0, 0, 0}
781 };
782
783 test_st number_of_cpus_TESTS[] ={
784 {"libtest::number_of_cpus()", 0, number_of_cpus_TEST },
785 {0, 0, 0}
786 };
787
788 test_st create_tmpfile_TESTS[] ={
789 {"libtest::create_tmpfile()", 0, create_tmpfile_TEST },
790 {0, 0, 0}
791 };
792
793 test_st application_tests[] ={
794 {"vchar_t", 0, vchar_t_TEST },
795 {"true", 0, application_true_BINARY },
796 {"gbd true --fubar", 0, application_gdb_true_BINARY },
797 {"gbd true", 0, application_gdb_true_BINARY2 },
798 {"true --fubar", 0, application_true_fubar_BINARY },
799 {"doesnotexist --fubar", 0, application_doesnotexist_BINARY },
800 {"true --fubar=doh", 0, application_true_fubar_eq_doh_BINARY },
801 {"true --fubar=doh add_option()", 0, application_true_fubar_eq_doh_option_BINARY },
802 {"echo fubar", 0, application_echo_fubar_BINARY },
803 {"echo fubar (as option)", 0, application_echo_fubar_BINARY2 },
804 {0, 0, 0}
805 };
806
807 static test_return_t check_for_curl(void *)
808 {
809 test_skip(true, HAVE_LIBCURL);
810 return TEST_SUCCESS;
811 }
812
813 static test_return_t disable_fatal_exception(void *)
814 {
815 fatal::disable();
816 return TEST_SUCCESS;
817 }
818
819 static test_return_t enable_fatal_exception(void *)
820 {
821 fatal::disable();
822 return TEST_SUCCESS;
823 }
824
825 test_st http_tests[] ={
826 {"GET", 0, GET_TEST },
827 {"POST", 0, POST_TEST },
828 {"TRACE", 0, TRACE_TEST },
829 {0, 0, 0}
830 };
831
832 collection_st collection[] ={
833 {"environment", 0, 0, environment_tests},
834 {"return values", 0, 0, tests_log},
835 {"local", 0, 0, local_log},
836 {"directories", 0, 0, directories_tests},
837 {"comparison", 0, 0, comparison_tests},
838 {"gearmand", check_for_gearman, 0, gearmand_tests},
839 {"memcached", check_for_libmemcached, 0, memcached_tests},
840 {"cmdline", 0, 0, cmdline_tests},
841 {"application", 0, 0, application_tests},
842 {"http", check_for_curl, 0, http_tests},
843 {"get_free_port()", 0, 0, get_free_port_TESTS },
844 {"fatal", disable_fatal_exception, enable_fatal_exception, fatal_message_TESTS },
845 {"number_of_cpus()", 0, 0, number_of_cpus_TESTS },
846 {"create_tmpfile()", 0, 0, create_tmpfile_TESTS },
847 {0, 0, 0, 0}
848 };
849
850 static void *world_create(server_startup_st& servers, test_return_t&)
851 {
852 return &servers;
853 }
854
855 void get_world(Framework *world)
856 {
857 world->collections= collection;
858 world->_create= world_create;
859 }