• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<testcase>
2# Derived from test227
3<info>
4<keywords>
5FTP
6post-quote
7pre-quote
8--libcurl
9</keywords>
10</info>
11# Server-side
12<reply>
13<data>
14data
15    to
16      see
17that FTP
18works
19  so does it?
20</data>
21<servercmd>
22REPLY EPSV 500 no such command
23REPLY FAIL 500 this might not be a failure!
24</servercmd>
25</reply>
26
27# Client-side
28<client>
29<server>
30ftp
31</server>
32<name>
33--libcurl for FTP with quote ops
34</name>
35<setenv>
36SSL_CERT_FILE=
37</setenv>
38<command>
39ftp://%HOSTIP:%FTPPORT/%TESTNUMBER -Q "NOOP 1" -Q "+NOOP 2" -Q "-NOOP 3" -Q "*FAIL" -Q "+*FAIL HARD" --libcurl %LOGDIR/test%TESTNUMBER.c
40</command>
41</client>
42
43# Verify data after the test has been "shot"
44<verify>
45<protocol>
46USER anonymous
47PASS ftp@example.com
48PWD
49NOOP 1
50FAIL
51EPSV
52PASV
53TYPE I
54NOOP 2
55FAIL HARD
56SIZE %TESTNUMBER
57RETR %TESTNUMBER
58NOOP 3
59QUIT
60</protocol>
61<file name="%LOGDIR/test%TESTNUMBER.c" mode="text">
62/********* Sample code generated by the curl command line tool **********
63 * All curl_easy_setopt() options are documented at:
64 * https://curl.se/libcurl/c/curl_easy_setopt.html
65 ************************************************************************/
66#include <curl/curl.h>
67
68int main(int argc, char *argv[])
69{
70  CURLcode ret;
71  CURL *hnd;
72  struct curl_slist *slist1;
73  struct curl_slist *slist2;
74  struct curl_slist *slist3;
75
76  slist1 = NULL;
77  slist1 = curl_slist_append(slist1, "NOOP 1");
78  slist1 = curl_slist_append(slist1, "*FAIL");
79  slist2 = NULL;
80  slist2 = curl_slist_append(slist2, "NOOP 3");
81  slist3 = NULL;
82  slist3 = curl_slist_append(slist3, "NOOP 2");
83  slist3 = curl_slist_append(slist3, "*FAIL HARD");
84
85  hnd = curl_easy_init();
86  curl_easy_setopt(hnd, CURLOPT_BUFFERSIZE, 102400L);
87  curl_easy_setopt(hnd, CURLOPT_URL, "ftp://%HOSTIP:%FTPPORT/%TESTNUMBER");
88  curl_easy_setopt(hnd, CURLOPT_QUOTE, slist1);
89  curl_easy_setopt(hnd, CURLOPT_POSTQUOTE, slist2);
90  curl_easy_setopt(hnd, CURLOPT_PREQUOTE, slist3);
91  curl_easy_setopt(hnd, CURLOPT_VERBOSE, 1L);
92  curl_easy_setopt(hnd, CURLOPT_FTP_SKIP_PASV_IP, 1L);
93  curl_easy_setopt(hnd, CURLOPT_TCP_KEEPALIVE, 1L);
94
95  /* Here is a list of options the curl code used that cannot get generated
96     as source easily. You may choose to either not use them or implement
97     them yourself.
98
99  CURLOPT_WRITEDATA was set to an object pointer
100  CURLOPT_WRITEFUNCTION was set to a function pointer
101  CURLOPT_READDATA was set to an object pointer
102  CURLOPT_READFUNCTION was set to a function pointer
103  CURLOPT_SEEKDATA was set to an object pointer
104  CURLOPT_SEEKFUNCTION was set to a function pointer
105  CURLOPT_ERRORBUFFER was set to an object pointer
106  CURLOPT_STDERR was set to an object pointer
107  CURLOPT_DEBUGFUNCTION was set to a function pointer
108  CURLOPT_DEBUGDATA was set to an object pointer
109  CURLOPT_HEADERFUNCTION was set to a function pointer
110  CURLOPT_HEADERDATA was set to an object pointer
111
112  */
113
114  ret = curl_easy_perform(hnd);
115
116  curl_easy_cleanup(hnd);
117  hnd = NULL;
118  curl_slist_free_all(slist1);
119  slist1 = NULL;
120  curl_slist_free_all(slist2);
121  slist2 = NULL;
122  curl_slist_free_all(slist3);
123  slist3 = NULL;
124
125  return (int)ret;
126}
127/**** End of sample code ****/
128</file>
129<stripfile>
130# CURLOPT_USERAGENT and CURLOPT_MAXREDIRS requires HTTP protocol
131# CURLOPT_INTERLEAVEDATA requires RTSP (HTTP) protocol
132# support, IOW depends on configuration - just ignore these.
133$_ = '' if /CURLOPT_USERAGENT/
134$_ = '' if /CURLOPT_MAXREDIRS/
135# CURLOPT_SSL_VERIFYPEER, SSH_KNOWNHOSTS and HTTP_VERSION vary with
136# configurations - just ignore them
137$_ = '' if /CURLOPT_SSL_VERIFYPEER/
138$_ = '' if /CURLOPT_SSH_KNOWNHOSTS/
139$_ = '' if /CURLOPT_HTTP_VERSION/
140$_ = '' if /CURLOPT_HTTP09_ALLOWED/
141$_ = '' if /CURLOPT_INTERLEAVEDATA/
142</stripfile>
143</verify>
144</testcase>
145