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