Addes OOM handling for curl_easy_setopt() calls in test
[platform/upstream/curl.git] / tests / libtest / lib544.c
1 /*****************************************************************************
2  *                                  _   _ ____  _
3  *  Project                     ___| | | |  _ \| |
4  *                             / __| | | | |_) | |
5  *                            | (__| |_| |  _ <| |___
6  *                             \___|\___/|_| \_\_____|
7  *
8  * $Id$
9  */
10
11 #include "test.h"
12
13 #include "memdebug.h"
14
15 static char teststring[] =
16 #ifdef CURL_DOES_CONVERSIONS
17   /* ASCII representation with escape sequences for non-ASCII platforms */
18   "\x54\x68\x69\x73\x00\x20\x69\x73\x20\x74\x65\x73\x74\x20\x62\x69\x6e\x61"
19   "\x72\x79\x20\x64\x61\x74\x61\x20\x77\x69\x74\x68\x20\x61\x6e\x20\x65\x6d"
20   "\x62\x65\x64\x64\x65\x64\x20\x4e\x55\x4c\x20\x62\x79\x74\x65\x0a";
21 #else
22   "This\0 is test binary data with an embedded NUL byte\n";
23 #endif
24
25
26 int test(char *URL)
27 {
28   CURL *curl;
29   CURLcode res=CURLE_OK;
30
31   if (curl_global_init(CURL_GLOBAL_ALL) != CURLE_OK) {
32     fprintf(stderr, "curl_global_init() failed\n");
33     return TEST_ERR_MAJOR_BAD;
34   }
35
36   if ((curl = curl_easy_init()) == NULL) {
37     fprintf(stderr, "curl_easy_init() failed\n");
38     curl_global_cleanup();
39     return TEST_ERR_MAJOR_BAD;
40   }
41
42   /* First set the URL that is about to receive our POST. */
43   test_setopt(curl, CURLOPT_URL, URL);
44
45 #ifdef LIB545
46   test_setopt(curl, CURLOPT_POSTFIELDSIZE, (long) sizeof teststring - 1);
47 #endif
48
49   test_setopt(curl, CURLOPT_COPYPOSTFIELDS, teststring);
50
51   test_setopt(curl, CURLOPT_VERBOSE, 1L); /* show verbose for debug */
52   test_setopt(curl, CURLOPT_HEADER, 1L); /* include header */
53
54   /* Update the original data to detect non-copy. */
55   strcpy(teststring, "FAIL");
56
57   /* Now, this is a POST request with binary 0 embedded in POST data. */
58   res = curl_easy_perform(curl);
59
60 test_cleanup:
61
62   /* always cleanup */
63   curl_easy_cleanup(curl);
64   curl_global_cleanup();
65
66   return (int)res;
67 }