main.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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. int
  36. main(const int argc, char *argv[])
  37. {
  38. // Determine what tests to run
  39. const char *suite = NULL;
  40. const char *const suite_arg = "--suite=";
  41. const size_t suite_arg_size = strlen(suite_arg);
  42. const char *test_case = NULL;
  43. const char *const test_case_arg = "--test-case=";
  44. const size_t test_case_arg_size = strlen(test_case_arg);
  45. const char *const test_dir_arg = "--test-dir=";
  46. const size_t test_dir_arg_size = strlen(test_dir_arg);
  47. SRunner *srunner;
  48. int number_run = 0;
  49. int number_failed = 0;
  50. int i;
  51. for (i = 1; i < argc; ++i) {
  52. if (0 == strncmp(suite_arg, argv[i], suite_arg_size)
  53. && (strlen(argv[i]) > suite_arg_size)) {
  54. suite = &argv[i][suite_arg_size];
  55. } else if (0 == strncmp(test_case_arg, argv[i], test_case_arg_size)
  56. && (strlen(argv[i]) > test_case_arg_size)) {
  57. test_case = &argv[i][test_case_arg_size];
  58. } else if (0 == strncmp(test_dir_arg, argv[i], test_dir_arg_size)
  59. && (strlen(argv[i]) > test_dir_arg_size)) {
  60. set_test_directory(&argv[i][test_dir_arg_size]);
  61. } else if (0 == strcmp("--help", argv[i])) {
  62. printf(
  63. "Usage: %s [options]\n"
  64. " --suite=Suite Determines the suite to run\n"
  65. " --test-case='Test Case' Determines the test case to run\n"
  66. " --test-dir='folder/path' The location of the test directory "
  67. "with the \n"
  68. " 'fixtures' and 'expected\n",
  69. argv[0]);
  70. exit(EXIT_SUCCESS);
  71. } else {
  72. fprintf(stderr, "Invalid argument: %s\n", argv[i]);
  73. exit(EXIT_FAILURE);
  74. }
  75. }
  76. /* Run up the tests */
  77. srunner = srunner_create(make_public_func_suite());
  78. srunner_add_suite(srunner, make_public_server_suite());
  79. srunner_add_suite(srunner, make_private_suite());
  80. srunner_add_suite(srunner, make_private_exe_suite());
  81. srunner_add_suite(srunner, make_timertest_suite());
  82. /* Write test logs to a file */
  83. srunner_set_log(srunner, "test.log");
  84. srunner_set_xml(srunner, "test.xml");
  85. /* CK_NORMAL offers not enough diagnosis during setup phase*/
  86. srunner_run(srunner, suite, test_case, CK_VERBOSE);
  87. number_run = srunner_ntests_run(srunner);
  88. number_failed = srunner_ntests_failed(srunner);
  89. srunner_free(srunner);
  90. return (number_failed == 0) && (number_run != 0) ? EXIT_SUCCESS
  91. : EXIT_FAILURE;
  92. }