2
0

test63 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <testcase>
  2. <info>
  3. <keywords>
  4. HTTP
  5. HTTP GET
  6. HTTP proxy
  7. HTTP proxy Basic auth
  8. </keywords>
  9. </info>
  10. # Server-side
  11. <reply>
  12. <data>
  13. HTTP/1.1 200 OK swsclose
  14. Date: Thu, 09 Nov 2010 14:49:00 GMT
  15. Content-Type: text/html
  16. Content-Length: 26
  17. the content would go here
  18. </data>
  19. </reply>
  20. # Client-side
  21. <client>
  22. <server>
  23. http
  24. </server>
  25. <name>
  26. HTTP with proxy authorization set in environment
  27. </name>
  28. <setenv>
  29. http_proxy=http://fake:user@%HOSTIP:%HTTPPORT/
  30. </setenv>
  31. <command>
  32. http://we.want.that.site.com/63
  33. </command>
  34. </client>
  35. # Verify data after the test has been "shot"
  36. <verify>
  37. <strip>
  38. ^User-Agent:.*
  39. </strip>
  40. <protocol>
  41. GET http://we.want.that.site.com/63 HTTP/1.1
  42. Proxy-Authorization: Basic ZmFrZTp1c2Vy
  43. Host: we.want.that.site.com
  44. Accept: */*
  45. Proxy-Connection: Keep-Alive
  46. </protocol>
  47. </verify>
  48. </testcase>