d19a7b5f0cb73b91e0b09fd15cac6a75db6b7b5e
[platform/upstream/curl.git] / tests / libtest / lib1510.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_URLS 4
31
32 int test(char *URL)
33 {
34   int res = 0;
35   CURL *curl = NULL;
36   int i;
37   char target_url[256];
38   char dnsentry[256];
39   struct curl_slist *slist = NULL, *slist2;
40   char *port = libtest_arg3;
41   char *address = libtest_arg2;
42
43   (void)URL;
44
45   /* Create fake DNS entries for serverX.example.com for all handles */
46   for(i=0; i < NUM_URLS; i++) {
47     sprintf(dnsentry, "server%d.example.com:%s:%s", i + 1, port, address);
48     printf("%s\n", dnsentry);
49     slist2 = curl_slist_append(slist, dnsentry);
50     if(!slist2) {
51       fprintf(stderr, "curl_slist_append() failed\n");
52       goto test_cleanup;
53     }
54     slist = slist2;
55   }
56
57   start_test_timing();
58
59   global_init(CURL_GLOBAL_ALL);
60
61   /* get an easy handle */
62   easy_init(curl);
63
64   /* go verbose */
65   easy_setopt(curl, CURLOPT_VERBOSE, 1L);
66   /* include headers */
67   easy_setopt(curl, CURLOPT_HEADER, 1L);
68
69   easy_setopt(curl, CURLOPT_RESOLVE, slist);
70
71   easy_setopt(curl, CURLOPT_MAXCONNECTS, 3L);
72
73   /* get NUM_HANDLES easy handles */
74   for(i=0; i < NUM_URLS; i++) {
75     /* specify target */
76     sprintf(target_url, "http://server%d.example.com:%s/path/1510%04i",
77             i + 1, port, i + 1);
78     target_url[sizeof(target_url) - 1] = '\0';
79     easy_setopt(curl, CURLOPT_URL, target_url);
80
81     res = curl_easy_perform(curl);
82
83     abort_on_test_timeout();
84   }
85
86 test_cleanup:
87
88   /* proper cleanup sequence - type PB */
89
90   curl_easy_cleanup(curl);
91
92   curl_slist_free_all(slist);
93
94   curl_global_cleanup();
95
96   return res;
97 }