test11 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <testcase>
  2. <info>
  3. <keywords>
  4. HTTP
  5. HTTP GET
  6. followlocation
  7. </keywords>
  8. </info>
  9. # Server-side
  10. <reply>
  11. <data>
  12. HTTP/1.1 301 This is a weirdo text message swsclose
  13. Date: Thu, 09 Nov 2010 14:49:00 GMT
  14. Server: test-server/fake
  15. Location: data/110002.txt?coolsite=yes
  16. Connection: close
  17. This server reply is for testing a simple Location: following
  18. </data>
  19. <data2>
  20. HTTP/1.1 200 Followed here fine swsclose
  21. Date: Thu, 09 Nov 2010 14:49:00 GMT
  22. Server: test-server/fake
  23. Content-Length: 52
  24. If this is received, the location following worked
  25. </data2>
  26. <datacheck>
  27. HTTP/1.1 301 This is a weirdo text message swsclose
  28. Date: Thu, 09 Nov 2010 14:49:00 GMT
  29. Server: test-server/fake
  30. Location: data/110002.txt?coolsite=yes
  31. Connection: close
  32. HTTP/1.1 200 Followed here fine swsclose
  33. Date: Thu, 09 Nov 2010 14:49:00 GMT
  34. Server: test-server/fake
  35. Content-Length: 52
  36. If this is received, the location following worked
  37. </datacheck>
  38. </reply>
  39. # Client-side
  40. <client>
  41. <server>
  42. http
  43. </server>
  44. <name>
  45. simple HTTP Location: following
  46. </name>
  47. <command>
  48. http://%HOSTIP:%HTTPPORT/want/11 -L
  49. </command>
  50. </client>
  51. # Verify data after the test has been "shot"
  52. <verify>
  53. <strip>
  54. ^User-Agent:.*
  55. </strip>
  56. <protocol>
  57. GET /want/11 HTTP/1.1
  58. Host: %HOSTIP:%HTTPPORT
  59. Accept: */*
  60. GET /want/data/110002.txt?coolsite=yes HTTP/1.1
  61. Host: %HOSTIP:%HTTPPORT
  62. Accept: */*
  63. </protocol>
  64. </verify>
  65. </testcase>