2
0

test533 741 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <testcase>
  2. <info>
  3. <keywords>
  4. FTP
  5. PASV
  6. RETR
  7. multi
  8. </keywords>
  9. </info>
  10. # Server-side
  11. <reply>
  12. <data>
  13. </data>
  14. <servercmd>
  15. REPLY RETR 550 the file doesn't exist
  16. REPLY SIZE 500 Can't check for file existence
  17. </servercmd>
  18. </reply>
  19. # Client-side
  20. <client>
  21. <server>
  22. ftp
  23. </server>
  24. <tool>
  25. lib%TESTNUMBER
  26. </tool>
  27. <name>
  28. FTP RETR a non-existing file twice using the multi interface
  29. </name>
  30. <command>
  31. ftp://%HOSTIP:%FTPPORT/path/%TESTNUMBER ftp://%HOSTIP:%FTPPORT/path/%TESTNUMBER
  32. </command>
  33. </client>
  34. # Verify data after the test has been "shot"
  35. <verify>
  36. <protocol>
  37. USER anonymous
  38. PASS ftp@example.com
  39. PWD
  40. CWD path
  41. EPSV
  42. TYPE I
  43. SIZE %TESTNUMBER
  44. RETR %TESTNUMBER
  45. EPSV
  46. SIZE %TESTNUMBER
  47. RETR %TESTNUMBER
  48. QUIT
  49. </protocol>
  50. </verify>
  51. </testcase>