main.c 3.7 KB

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