2
0

test407 707 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <testcase>
  2. <info>
  3. <keywords>
  4. FTPS
  5. PASV
  6. RETR
  7. </keywords>
  8. </info>
  9. # Server-side
  10. <reply>
  11. <data>
  12. data blobb
  13. </data>
  14. # data is sent to stdout
  15. </reply>
  16. # Client-side
  17. <client>
  18. <features>
  19. SSL
  20. </features>
  21. <server>
  22. ftps
  23. </server>
  24. <name>
  25. Get two FTPS files from the same remote dir: no second CWD
  26. </name>
  27. <command>
  28. -k --ftp-ssl-control ftps://%HOSTIP:%FTPSPORT/a/path/407 ftps://%HOSTIP:%FTPSPORT/a/path/407
  29. </command>
  30. <stdout>
  31. data blobb
  32. data blobb
  33. </stdout>
  34. </client>
  35. # Verify data after the test has been "shot"
  36. <verify>
  37. <protocol>
  38. USER anonymous
  39. PASS ftp@example.com
  40. PBSZ 0
  41. PROT C
  42. PWD
  43. CWD a
  44. CWD path
  45. EPSV
  46. TYPE I
  47. SIZE 407
  48. RETR 407
  49. EPSV
  50. SIZE 407
  51. RETR 407
  52. QUIT
  53. </protocol>
  54. </verify>
  55. </testcase>