1<testcase> 2<info> 3<keywords> 4FTP 5</keywords> 6</info> 7 8# Server-side 9<reply> 10<data> 11foo 12</data> 13<servercmd> 14REPLY CWD 550 I won't allow this on my server 15COUNT CWD 1 16</servercmd> 17</reply> 18 19# Client-side 20<client> 21<server> 22ftp 23</server> 24<name> 25FTP with --ftp-create-dirs (failing CWD) 26</name> 27<command> 28ftp://%HOSTIP:%FTPPORT/first/dir/here/%TESTNUMBER --ftp-create-dirs 29</command> 30</client> 31 32# Verify data after the test has been "shot" 33<verify> 34<strip> 35QUIT 36</strip> 37# Strip all valid kinds of PORT and EPRT that curl can send 38<strip> 39^PORT \d{1,3},\d{1,3},\d{1,3},\d{1,3},\d{1,3},\d{1,3} 40^EPRT \|1\|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\|\d{1,5}\| 41</strip> 42<protocol> 43USER anonymous 44PASS ftp@example.com 45PWD 46CWD first 47MKD first 48CWD first 49CWD dir 50CWD here 51EPSV 52TYPE I 53SIZE %TESTNUMBER 54RETR %TESTNUMBER 55QUIT 56</protocol> 57</verify> 58</testcase> 59