008a9cae1a1bdf18d940bafea10788b1a356269b
[platform/upstream/curl.git] / tests / libtest / lib1506.c
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
24 #include "testutil.h"
25 #include "warnless.h"
26 #include "memdebug.h"
27
28 #define TEST_HANG_TIMEOUT 60 * 1000
29
30 #define NUM_HANDLES 4
31
32 int test(char *URL)
33 {
34   int res = 0;
35   CURL *curl[NUM_HANDLES];
36   int running;
37   CURLM *m = NULL;
38   int i;
39   char target_url[256];
40   char dnsentry[256];
41   struct curl_slist *slist = NULL;
42   char *port = libtest_arg3;
43   char *address = libtest_arg2;
44
45   (void)URL;
46
47   /* Create fake DNS entries for serverX.example.com for all handles */
48   for(i=0; i < NUM_HANDLES; i++) {
49     sprintf(dnsentry, "server%d.example.com:%s:%s", i + 1, port, address);
50     printf("%s\n", dnsentry);
51     slist = curl_slist_append(slist, dnsentry);
52   }
53
54   for(i=0; i < NUM_HANDLES; i++)
55     curl[i] = NULL;
56
57   start_test_timing();
58
59   global_init(CURL_GLOBAL_ALL);
60
61   multi_init(m);
62
63   multi_setopt(m, CURLMOPT_MAXCONNECTS, 3L);
64
65   /* get NUM_HANDLES easy handles */
66   for(i=0; i < NUM_HANDLES; i++) {
67     /* get an easy handle */
68     easy_init(curl[i]);
69     /* specify target */
70     sprintf(target_url, "http://server%d.example.com:%s/path/1506%04i",
71             i + 1, port, i + 1);
72     target_url[sizeof(target_url) - 1] = '\0';
73     easy_setopt(curl[i], CURLOPT_URL, target_url);
74     /* go verbose */
75     easy_setopt(curl[i], CURLOPT_VERBOSE, 1L);
76     /* include headers */
77     easy_setopt(curl[i], CURLOPT_HEADER, 1L);
78
79     easy_setopt(curl[i], CURLOPT_RESOLVE, slist);
80   }
81
82   fprintf(stderr, "Start at URL 0\n");
83
84   for(i=0; i < NUM_HANDLES; i++) {
85     /* add handle to multi */
86     multi_add_handle(m, curl[i]);
87
88     for(;;) {
89       struct timeval interval;
90       fd_set rd, wr, exc;
91       int maxfd = -99;
92
93       interval.tv_sec = 1;
94       interval.tv_usec = 0;
95
96       multi_perform(m, &running);
97
98       abort_on_test_timeout();
99
100       if(!running)
101         break; /* done */
102
103       FD_ZERO(&rd);
104       FD_ZERO(&wr);
105       FD_ZERO(&exc);
106
107       multi_fdset(m, &rd, &wr, &exc, &maxfd);
108
109       /* At this point, maxfd is guaranteed to be greater or equal than -1. */
110
111       select_test(maxfd+1, &rd, &wr, &exc, &interval);
112
113       abort_on_test_timeout();
114     }
115   }
116
117 test_cleanup:
118
119   /* proper cleanup sequence - type PB */
120
121   for(i=0; i < NUM_HANDLES; i++) {
122     curl_multi_remove_handle(m, curl[i]);
123     curl_easy_cleanup(curl[i]);
124   }
125
126   curl_slist_free_all(slist);
127
128   curl_multi_cleanup(m);
129   curl_global_cleanup();
130
131   return res;
132 }