lib1506.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 2013, Linus Nielsen Feltzing <linus@haxx.se>
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "test.h"
  23. #include "testutil.h"
  24. #include "warnless.h"
  25. #include "memdebug.h"
  26. #define TEST_HANG_TIMEOUT 60 * 1000
  27. #define NUM_HANDLES 4
  28. int test(char *URL)
  29. {
  30. int res = 0;
  31. CURL *curl[NUM_HANDLES] = {0};
  32. int running;
  33. CURLM *m = NULL;
  34. int i;
  35. char target_url[256];
  36. char dnsentry[256];
  37. struct curl_slist *slist = NULL, *slist2;
  38. char *port = libtest_arg3;
  39. char *address = libtest_arg2;
  40. (void)URL;
  41. /* Create fake DNS entries for serverX.example.com for all handles */
  42. for(i=0; i < NUM_HANDLES; i++) {
  43. sprintf(dnsentry, "server%d.example.com:%s:%s", i + 1, port, address);
  44. printf("%s\n", dnsentry);
  45. slist2 = curl_slist_append(slist, dnsentry);
  46. if(!slist2) {
  47. fprintf(stderr, "curl_slist_append() failed\n");
  48. goto test_cleanup;
  49. }
  50. slist = slist2;
  51. }
  52. start_test_timing();
  53. global_init(CURL_GLOBAL_ALL);
  54. multi_init(m);
  55. multi_setopt(m, CURLMOPT_MAXCONNECTS, 3L);
  56. /* get NUM_HANDLES easy handles */
  57. for(i=0; i < NUM_HANDLES; i++) {
  58. /* get an easy handle */
  59. easy_init(curl[i]);
  60. /* specify target */
  61. sprintf(target_url, "http://server%d.example.com:%s/path/1506%04i",
  62. i + 1, port, i + 1);
  63. target_url[sizeof(target_url) - 1] = '\0';
  64. easy_setopt(curl[i], CURLOPT_URL, target_url);
  65. /* go verbose */
  66. easy_setopt(curl[i], CURLOPT_VERBOSE, 1L);
  67. /* include headers */
  68. easy_setopt(curl[i], CURLOPT_HEADER, 1L);
  69. easy_setopt(curl[i], CURLOPT_RESOLVE, slist);
  70. }
  71. fprintf(stderr, "Start at URL 0\n");
  72. for(i=0; i < NUM_HANDLES; i++) {
  73. /* add handle to multi */
  74. multi_add_handle(m, curl[i]);
  75. for(;;) {
  76. struct timeval interval;
  77. fd_set rd, wr, exc;
  78. int maxfd = -99;
  79. interval.tv_sec = 1;
  80. interval.tv_usec = 0;
  81. multi_perform(m, &running);
  82. abort_on_test_timeout();
  83. if(!running)
  84. break; /* done */
  85. FD_ZERO(&rd);
  86. FD_ZERO(&wr);
  87. FD_ZERO(&exc);
  88. multi_fdset(m, &rd, &wr, &exc, &maxfd);
  89. /* At this point, maxfd is guaranteed to be greater or equal than -1. */
  90. select_test(maxfd+1, &rd, &wr, &exc, &interval);
  91. abort_on_test_timeout();
  92. }
  93. wait_ms(1); /* to ensure different end times */
  94. }
  95. test_cleanup:
  96. /* proper cleanup sequence - type PB */
  97. for(i=0; i < NUM_HANDLES; i++) {
  98. curl_multi_remove_handle(m, curl[i]);
  99. curl_easy_cleanup(curl[i]);
  100. }
  101. curl_slist_free_all(slist);
  102. curl_multi_cleanup(m);
  103. curl_global_cleanup();
  104. return res;
  105. }