test1225 629 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <testcase>
  2. <info>
  3. <keywords>
  4. FTP
  5. PASV
  6. RETR
  7. </keywords>
  8. </info>
  9. # Server-side
  10. <reply>
  11. <data>
  12. data
  13. to
  14. see
  15. that FTP
  16. works
  17. so does it?
  18. </data>
  19. </reply>
  20. # Client-side
  21. <client>
  22. <server>
  23. ftp
  24. </server>
  25. <name>
  26. FTP fetch two files using absolute paths
  27. </name>
  28. <command>
  29. ftp://%HOSTIP:%FTPPORT//foo/1225 ftp://%HOSTIP:%FTPPORT//foo/bar/1225
  30. </command>
  31. </client>
  32. # Verify data after the test has been "shot"
  33. <verify>
  34. <protocol>
  35. USER anonymous
  36. PASS ftp@example.com
  37. PWD
  38. CWD /
  39. CWD foo
  40. EPSV
  41. TYPE I
  42. SIZE 1225
  43. RETR 1225
  44. CWD /
  45. CWD /
  46. CWD foo
  47. CWD bar
  48. EPSV
  49. SIZE 1225
  50. RETR 1225
  51. QUIT
  52. </protocol>
  53. </verify>
  54. </testcase>