main.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. #if defined(_MSC_VER)
  22. #define _CRT_SECURE_NO_WARNINGS /* Microsoft nonsense */
  23. #endif
  24. #include "civetweb_check.h"
  25. #include "shared.h"
  26. #include "public_func.h"
  27. #include "public_server.h"
  28. #include "private.h"
  29. #include "timertest.h"
  30. #include "private_exe.h"
  31. #include <stdlib.h>
  32. #include <stdio.h>
  33. #include <string.h>
  34. /* This unit test file uses the excellent Check unit testing library.
  35. * The API documentation is available here:
  36. * http://check.sourceforge.net/doc/check_html/index.html
  37. *
  38. * Note: CivetWeb is tested using it's own fork of check:
  39. * https://github.com/civetweb/check
  40. * Required fixes from this fork are already available
  41. * in the main repository:
  42. * https://github.com/libcheck/check
  43. */
  44. int
  45. main(const int argc, char *argv[])
  46. {
  47. /* Determine what tests to run */
  48. const char *suite = NULL;
  49. const char *const suite_arg = "--suite=";
  50. const size_t suite_arg_size = strlen(suite_arg);
  51. const char *test_case = NULL;
  52. const char *const test_case_arg = "--test-case=";
  53. const size_t test_case_arg_size = strlen(test_case_arg);
  54. const char *const test_dir_arg = "--test-dir=";
  55. const size_t test_dir_arg_size = strlen(test_dir_arg);
  56. const char *const test_log_arg = "--test-log=";
  57. const size_t test_log_arg_size = strlen(test_log_arg);
  58. const char *const help_arg = "--help";
  59. SRunner *srunner;
  60. int number_run = 0;
  61. int number_failed = 0;
  62. const char *test_log_prefix = NULL;
  63. char test_log_name[128];
  64. int i;
  65. for (i = 1; i < argc; ++i) {
  66. if (0 == strncmp(suite_arg, argv[i], suite_arg_size)
  67. && (strlen(argv[i]) > suite_arg_size)) {
  68. suite = &argv[i][suite_arg_size];
  69. } else if (0 == strncmp(test_case_arg, argv[i], test_case_arg_size)
  70. && (strlen(argv[i]) > test_case_arg_size)) {
  71. test_case = &argv[i][test_case_arg_size];
  72. } else if (0 == strncmp(test_dir_arg, argv[i], test_dir_arg_size)
  73. && (strlen(argv[i]) > test_dir_arg_size)) {
  74. set_test_directory(&argv[i][test_dir_arg_size]);
  75. } else if (0 == strncmp(test_log_arg, argv[i], test_log_arg_size)
  76. && (strlen(argv[i]) > test_log_arg_size)) {
  77. test_log_prefix = &argv[i][test_log_arg_size];
  78. if (strlen(test_log_prefix) > (sizeof(test_log_name) - 16)) {
  79. fprintf(stderr, "Argument too long: %s\n", argv[i]);
  80. exit(EXIT_FAILURE);
  81. }
  82. } else if (0 == strcmp(help_arg, argv[i])) {
  83. printf(
  84. "Usage: %s [options]\n"
  85. " --suite=Suite Determines the suite to run\n"
  86. " --test-case='Test Case' Determines the test case to run\n"
  87. " --test-dir='folder/path' The location of the test directory "
  88. "with the \n"
  89. " 'fixtures' and 'expected\n",
  90. argv[0]);
  91. exit(EXIT_SUCCESS);
  92. } else {
  93. fprintf(stderr, "Invalid argument: %s\n", argv[i]);
  94. exit(EXIT_FAILURE);
  95. }
  96. }
  97. /* Register all tests to run them later */
  98. srunner = srunner_create(make_public_func_suite());
  99. srunner_add_suite(srunner, make_public_server_suite());
  100. srunner_add_suite(srunner, make_private_suite());
  101. srunner_add_suite(srunner, make_private_exe_suite());
  102. srunner_add_suite(srunner, make_timertest_suite());
  103. /* Write test logs to a file */
  104. if (test_log_prefix == NULL) {
  105. /* Find the next free log name */
  106. FILE *f;
  107. for (i = 1;; i++) {
  108. sprintf(test_log_name, "log-%i.log", i);
  109. f = fopen(test_log_name, "r");
  110. if (f) {
  111. /* already exists */
  112. fclose(f);
  113. continue;
  114. }
  115. srunner_set_log(srunner, test_log_name);
  116. sprintf(test_log_name, "log-%i.xml", i);
  117. srunner_set_xml(srunner, test_log_name);
  118. break;
  119. }
  120. } else {
  121. /* We got a test log name from the command line */
  122. sprintf(test_log_name, "%s.log", test_log_prefix);
  123. srunner_set_log(srunner, test_log_name);
  124. sprintf(test_log_name, "%s.xml", test_log_prefix);
  125. srunner_set_xml(srunner, test_log_name);
  126. }
  127. /* Run tests, using log level CK_VERBOSE, since CK_NORMAL
  128. * offers not enough diagnosis to analyze failed tests.
  129. * see http://check.sourceforge.net/doc/check_html/check_3.html */
  130. srunner_run(srunner, suite, test_case, CK_VERBOSE);
  131. /* Check passed / failed */
  132. number_run = srunner_ntests_run(srunner);
  133. number_failed = srunner_ntests_failed(srunner);
  134. srunner_free(srunner);
  135. return (number_failed == 0) && (number_run != 0) ? EXIT_SUCCESS
  136. : EXIT_FAILURE;
  137. }