诸暨麻将添加redis
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

133 lines
3.3 KiB

  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];
  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;
  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. slist = curl_slist_append(slist, dnsentry);
  46. }
  47. for(i=0; i < NUM_HANDLES; i++)
  48. curl[i] = NULL;
  49. start_test_timing();
  50. global_init(CURL_GLOBAL_ALL);
  51. multi_init(m);
  52. multi_setopt(m, CURLMOPT_MAXCONNECTS, 3L);
  53. /* get NUM_HANDLES easy handles */
  54. for(i=0; i < NUM_HANDLES; i++) {
  55. /* get an easy handle */
  56. easy_init(curl[i]);
  57. /* specify target */
  58. sprintf(target_url, "http://server%d.example.com:%s/path/1506%04i",
  59. i + 1, port, i + 1);
  60. target_url[sizeof(target_url) - 1] = '\0';
  61. easy_setopt(curl[i], CURLOPT_URL, target_url);
  62. /* go verbose */
  63. easy_setopt(curl[i], CURLOPT_VERBOSE, 1L);
  64. /* include headers */
  65. easy_setopt(curl[i], CURLOPT_HEADER, 1L);
  66. easy_setopt(curl[i], CURLOPT_RESOLVE, slist);
  67. }
  68. fprintf(stderr, "Start at URL 0\n");
  69. for(i=0; i < NUM_HANDLES; i++) {
  70. /* add handle to multi */
  71. multi_add_handle(m, curl[i]);
  72. for(;;) {
  73. struct timeval interval;
  74. fd_set rd, wr, exc;
  75. int maxfd = -99;
  76. interval.tv_sec = 1;
  77. interval.tv_usec = 0;
  78. multi_perform(m, &running);
  79. abort_on_test_timeout();
  80. if(!running)
  81. break; /* done */
  82. FD_ZERO(&rd);
  83. FD_ZERO(&wr);
  84. FD_ZERO(&exc);
  85. multi_fdset(m, &rd, &wr, &exc, &maxfd);
  86. /* At this point, maxfd is guaranteed to be greater or equal than -1. */
  87. select_test(maxfd+1, &rd, &wr, &exc, &interval);
  88. abort_on_test_timeout();
  89. }
  90. }
  91. test_cleanup:
  92. /* proper cleanup sequence - type PB */
  93. for(i=0; i < NUM_HANDLES; i++) {
  94. curl_multi_remove_handle(m, curl[i]);
  95. curl_easy_cleanup(curl[i]);
  96. }
  97. curl_slist_free_all(slist);
  98. curl_multi_cleanup(m);
  99. curl_global_cleanup();
  100. return res;
  101. }