1/***************************************************************************
2 *                                  _   _ ____  _
3 *  Project                     ___| | | |  _ \| |
4 *                             / __| | | | |_) | |
5 *                            | (__| |_| |  _ <| |___
6 *                             \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
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 "memdebug.h"
25
26static int progress_callback(void *clientp, double dltotal,
27                             double dlnow, double ultotal, double ulnow)
28{
29  (void)clientp;
30  (void)ulnow;
31  (void)ultotal;
32
33  if((dltotal > 0.0) && (dlnow > dltotal)) {
34    /* this should not happen with test case 599 */
35    printf("%.0f > %.0f !!\n", dltotal, dlnow);
36    return -1;
37  }
38
39  return 0;
40}
41
42int test(char *URL)
43{
44  CURL *curl;
45  CURLcode res=CURLE_OK;
46
47  if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
48    fprintf(stderr, "curl_global_init() failed\n");
49    return TEST_ERR_MAJOR_BAD;
50  }
51
52  if ((curl = curl_easy_init()) == NULL) {
53    fprintf(stderr, "curl_easy_init() failed\n");
54    curl_global_cleanup();
55    return TEST_ERR_MAJOR_BAD;
56  }
57
58  /* First set the URL that is about to receive our POST. */
59  test_setopt(curl, CURLOPT_URL, URL);
60
61  /* we want to use our own progress function */
62  test_setopt(curl, CURLOPT_NOPROGRESS, 0L);
63  test_setopt(curl, CURLOPT_PROGRESSFUNCTION, progress_callback);
64
65  /* get verbose debug output please */
66  test_setopt(curl, CURLOPT_VERBOSE, 1L);
67
68  /* follow redirects */
69  test_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L);
70
71  /* include headers in the output */
72  test_setopt(curl, CURLOPT_HEADER, 1L);
73
74  /* Perform the request, res will get the return code */
75  res = curl_easy_perform(curl);
76
77test_cleanup:
78
79  /* always cleanup */
80  curl_easy_cleanup(curl);
81  curl_global_cleanup();
82
83  return res;
84}
85