test381 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <testcase>
  2. <info>
  3. <keywords>
  4. FTP
  5. EPSV
  6. LIST
  7. netrc
  8. </keywords>
  9. </info>
  10. #
  11. # Server-side
  12. <reply>
  13. # When doing LIST, we get the default list output hard-coded in the test
  14. # FTP server
  15. <datacheck mode="text">
  16. total 20
  17. drwxr-xr-x 8 98 98 512 Oct 22 13:06 .
  18. drwxr-xr-x 8 98 98 512 Oct 22 13:06 ..
  19. drwxr-xr-x 2 98 98 512 May 2 1996 .NeXT
  20. -r--r--r-- 1 0 1 35 Jul 16 1996 README
  21. lrwxrwxrwx 1 0 1 7 Dec 9 1999 bin -> usr/bin
  22. dr-xr-xr-x 2 0 1 512 Oct 1 1997 dev
  23. drwxrwxrwx 2 98 98 512 May 29 16:04 download.html
  24. dr-xr-xr-x 2 0 1 512 Nov 30 1995 etc
  25. drwxrwxrwx 2 98 1 512 Oct 30 14:33 pub
  26. dr-xr-xr-x 5 0 1 512 Oct 1 1997 usr
  27. </datacheck>
  28. </reply>
  29. #
  30. # Client-side
  31. <client>
  32. <server>
  33. ftp
  34. </server>
  35. # When CURL_NETRC_REQUIRED is set, the password in the URL is ignored and
  36. # using the netrc is mandatory.
  37. #
  38. <name>
  39. netrc-optional lets URL creds override netrc
  40. </name>
  41. <command>
  42. --netrc-optional --netrc-file %LOGDIR/netrc%TESTNUMBER ftp://mary:drfrank@%HOSTIP:%FTPPORT/
  43. </command>
  44. <file name="%LOGDIR/netrc%TESTNUMBER" >
  45. # the following two lines were created while testing curl
  46. machine %HOSTIP login frankenstein password wrongone
  47. machine %HOSTIP login mary password yram
  48. </file>
  49. </client>
  50. #
  51. # Verify data after the test has been "shot"
  52. <verify>
  53. <protocol>
  54. USER mary
  55. PASS drfrank
  56. PWD
  57. EPSV
  58. TYPE A
  59. LIST
  60. QUIT
  61. </protocol>
  62. </verify>
  63. </testcase>