test65 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <testcase>
  2. <info>
  3. <keywords>
  4. HTTP
  5. HTTP GET
  6. HTTP Digest auth
  7. </keywords>
  8. </info>
  9. # Server-side
  10. <reply>
  11. <data>
  12. HTTP/1.1 401 Authorization Required
  13. Server: Apache/1.3.27 (Darwin) PHP/4.1.2
  14. WWW-Authenticate: Digest realm="testrealm", nonce="2053604145"
  15. Content-Type: text/html; charset=iso-8859-1
  16. Content-Length: 26
  17. This is not the real page
  18. </data>
  19. # This is supposed to be returned when the server gets a
  20. # Authorization: Digest line passed-in from the client
  21. <data1000>
  22. HTTP/1.1 401 Still a bad password you moron
  23. Server: Apache/1.3.27 (Darwin) PHP/4.1.2
  24. Content-Type: text/html; charset=iso-8859-1
  25. Content-Length: 34
  26. This is not the real page either
  27. </data1000>
  28. <datacheck>
  29. HTTP/1.1 401 Authorization Required
  30. Server: Apache/1.3.27 (Darwin) PHP/4.1.2
  31. WWW-Authenticate: Digest realm="testrealm", nonce="2053604145"
  32. Content-Type: text/html; charset=iso-8859-1
  33. Content-Length: 26
  34. HTTP/1.1 401 Still a bad password you moron
  35. Server: Apache/1.3.27 (Darwin) PHP/4.1.2
  36. Content-Type: text/html; charset=iso-8859-1
  37. Content-Length: 34
  38. This is not the real page either
  39. </datacheck>
  40. </reply>
  41. # Client-side
  42. <client>
  43. <server>
  44. http
  45. </server>
  46. <features>
  47. !SSPI
  48. crypto
  49. </features>
  50. <name>
  51. HTTP with Digest authorization with bad password
  52. </name>
  53. <command>
  54. http://%HOSTIP:%HTTPPORT/65 -u testuser:test2pass --digest
  55. </command>
  56. </client>
  57. # Verify data after the test has been "shot"
  58. <verify>
  59. <strip>
  60. ^User-Agent:.*
  61. </strip>
  62. <protocol>
  63. GET /65 HTTP/1.1
  64. Host: %HOSTIP:%HTTPPORT
  65. Accept: */*
  66. GET /65 HTTP/1.1
  67. Authorization: Digest username="testuser", realm="testrealm", nonce="2053604145", uri="/65", response="66d68d3251f1839576ba7c766cf9205b"
  68. User-Agent: curl/7.10.5 (i686-pc-linux-gnu) libcurl/7.10.5 OpenSSL/0.9.7a ipv6 zlib/1.1.3
  69. Host: %HOSTIP:%HTTPPORT
  70. Accept: */*
  71. </protocol>
  72. </verify>
  73. </testcase>