test107 523 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Client-side
  2. <client>
  3. <server>
  4. ftp
  5. </server>
  6. <name>
  7. FTP PASV upload file
  8. </name>
  9. <file name="log/test107.txt">
  10. data
  11. to
  12. see
  13. that FTP
  14. works
  15. so does it?
  16. </file>
  17. <command>
  18. ftp://%HOSTIP:%FTPPORT/107 -T log/test107.txt
  19. </command>
  20. </test>
  21. # Verify data after the test has been "shot"
  22. <verify>
  23. <upload>
  24. data
  25. to
  26. see
  27. that FTP
  28. works
  29. so does it?
  30. </upload>
  31. <protocol>
  32. USER anonymous
  33. PASS curl_by_daniel@haxx.se
  34. PWD
  35. EPSV
  36. TYPE I
  37. STOR 107
  38. QUIT
  39. </protocol>
  40. </verify>