private_exe.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Copyright (c) 2015 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. /**
  22. * We include the source file so that we have access to the internal private
  23. * static functions.
  24. */
  25. #ifdef _MSC_VER
  26. #define _CRT_SECURE_NO_WARNINGS
  27. #endif
  28. #include "private_exe.h"
  29. /* This is required for "realpath". According to
  30. * http://man7.org/linux/man-pages/man3/realpath.3.html
  31. * defining _XOPEN_SOURCE 600 should be enough, but in
  32. * practice this does not work. */
  33. extern char *realpath(const char *path, char *resolved_path);
  34. /* main is already used in the test suite,
  35. * so this define will rename main in main.c */
  36. #define main exe_main
  37. #include "../src/main.c"
  38. #include <stdlib.h>
  39. /* This unit test file uses the excellent Check unit testing library.
  40. * The API documentation is available here:
  41. * http://check.sourceforge.net/doc/check_html/index.html
  42. */
  43. START_TEST(test_helper_funcs)
  44. {
  45. const char *psrc = "test str";
  46. char *pdst;
  47. /* test sdup */
  48. pdst = sdup(psrc);
  49. ck_assert(pdst != NULL);
  50. ck_assert_str_eq(pdst, psrc);
  51. ck_assert_ptr_ne(pdst, psrc);
  52. free(pdst);
  53. }
  54. END_TEST
  55. Suite *
  56. make_private_exe_suite(void)
  57. {
  58. Suite *const suite = suite_create("EXE");
  59. TCase *const helper_funcs = tcase_create("Helper funcs");
  60. tcase_add_test(helper_funcs, test_helper_funcs);
  61. tcase_set_timeout(helper_funcs, civetweb_min_test_timeout);
  62. suite_add_tcase(suite, helper_funcs);
  63. return suite;
  64. }