main.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /* Copyright (c) 2015-2018 the Civetweb developers
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to deal
  5. * in the Software without restriction, including without limitation the rights
  6. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. * copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. * THE SOFTWARE.
  20. */
  21. #include "civetweb_check.h"
  22. #include "shared.h"
  23. #include "public_func.h"
  24. #include "public_server.h"
  25. #include "private.h"
  26. #include "timertest.h"
  27. #include "private_exe.h"
  28. #include <stdlib.h>
  29. #include <stdio.h>
  30. #include <string.h>
  31. /* This unit test file uses the excellent Check unit testing library.
  32. * The API documentation is available here:
  33. * http://check.sourceforge.net/doc/check_html/index.html
  34. *
  35. * Note: CivetWeb is tested using it's own fork of check:
  36. * https://github.com/civetweb/check
  37. * Required fixes from this fork are already available
  38. * in the main repository:
  39. * https://github.com/libcheck/check
  40. */
  41. int
  42. main(const int argc, char *argv[])
  43. {
  44. /* Determine what tests to run */
  45. const char *suite = NULL;
  46. const char *const suite_arg = "--suite=";
  47. const size_t suite_arg_size = strlen(suite_arg);
  48. const char *test_case = NULL;
  49. const char *const test_case_arg = "--test-case=";
  50. const size_t test_case_arg_size = strlen(test_case_arg);
  51. const char *const test_dir_arg = "--test-dir=";
  52. const size_t test_dir_arg_size = strlen(test_dir_arg);
  53. const char *const test_log_arg = "--test-log=";
  54. const size_t test_log_arg_size = strlen(test_log_arg);
  55. const char *const help_arg = "--help";
  56. SRunner *srunner;
  57. int number_run = 0;
  58. int number_failed = 0;
  59. const char *test_log_prefix = NULL;
  60. char test_log_name[128];
  61. int i;
  62. for (i = 1; i < argc; ++i) {
  63. if (0 == strncmp(suite_arg, argv[i], suite_arg_size)
  64. && (strlen(argv[i]) > suite_arg_size)) {
  65. suite = &argv[i][suite_arg_size];
  66. } else if (0 == strncmp(test_case_arg, argv[i], test_case_arg_size)
  67. && (strlen(argv[i]) > test_case_arg_size)) {
  68. test_case = &argv[i][test_case_arg_size];
  69. } else if (0 == strncmp(test_dir_arg, argv[i], test_dir_arg_size)
  70. && (strlen(argv[i]) > test_dir_arg_size)) {
  71. set_test_directory(&argv[i][test_dir_arg_size]);
  72. } else if (0 == strncmp(test_log_arg, argv[i], test_log_arg_size)
  73. && (strlen(argv[i]) > test_log_arg_size)) {
  74. test_log_prefix = &argv[i][test_log_arg_size];
  75. if (strlen(test_log_prefix) > (sizeof(test_log_name)-16)) {
  76. fprintf(stderr, "Argument too long: %s\n", argv[i]);
  77. exit(EXIT_FAILURE);
  78. }
  79. } else if (0 == strcmp(help_arg, argv[i])) {
  80. printf(
  81. "Usage: %s [options]\n"
  82. " --suite=Suite Determines the suite to run\n"
  83. " --test-case='Test Case' Determines the test case to run\n"
  84. " --test-dir='folder/path' The location of the test directory "
  85. "with the \n"
  86. " 'fixtures' and 'expected\n",
  87. argv[0]);
  88. exit(EXIT_SUCCESS);
  89. } else {
  90. fprintf(stderr, "Invalid argument: %s\n", argv[i]);
  91. exit(EXIT_FAILURE);
  92. }
  93. }
  94. /* Register all tests to run them later */
  95. srunner = srunner_create(make_public_func_suite());
  96. srunner_add_suite(srunner, make_public_server_suite());
  97. srunner_add_suite(srunner, make_private_suite());
  98. srunner_add_suite(srunner, make_private_exe_suite());
  99. srunner_add_suite(srunner, make_timertest_suite());
  100. /* Write test logs to a file */
  101. if (test_log_prefix != NULL) {
  102. /* Find the next free log name */
  103. FILE *f;
  104. for (i=1;;i++) {
  105. sprintf(test_log_name, "log-%i.log", i);
  106. f = fopen(test_log_name, "r");
  107. if (f) {
  108. /* already exists */
  109. fclose(f);
  110. continue;
  111. }
  112. srunner_set_log(srunner, test_log_name);
  113. sprintf(test_log_name, "log-%i.xml", i);
  114. srunner_set_xml(srunner, test_log_name);
  115. break;
  116. }
  117. } else {
  118. /* We got a test log name from the command line */
  119. sprintf(test_log_name, "%s.log", test_log_prefix);
  120. srunner_set_log(srunner, test_log_name);
  121. sprintf(test_log_name, "%s.xml", test_log_prefix);
  122. srunner_set_xml(srunner, test_log_name);
  123. }
  124. /* Run tests, using log level CK_VERBOSE, since CK_NORMAL
  125. * offers not enough diagnosis to analyze failed tests.
  126. * see http://check.sourceforge.net/doc/check_html/check_3.html */
  127. srunner_run(srunner, suite, test_case, CK_VERBOSE);
  128. /* Check passed / failed */
  129. number_run = srunner_ntests_run(srunner);
  130. number_failed = srunner_ntests_failed(srunner);
  131. srunner_free(srunner);
  132. return (number_failed == 0) && (number_run != 0) ? EXIT_SUCCESS
  133. : EXIT_FAILURE;
  134. }