2
0

test1223 887 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <testcase>
  2. <info>
  3. <keywords>
  4. HTTP
  5. HTTP GET
  6. </keywords>
  7. </info>
  8. #
  9. # disable data check since it gets sent to stdout and is verified there
  10. <reply>
  11. <data nocheck="yes">
  12. HTTP/1.1 200 OK
  13. Date: Tue, 09 Nov 2010 14:49:00 GMT
  14. Content-Length: 4
  15. Connection: close
  16. Content-Type: text/html
  17. hej
  18. </data>
  19. </reply>
  20. #
  21. # Client-side
  22. <client>
  23. <server>
  24. http
  25. </server>
  26. <name>
  27. HTTP GET -w remote_ip and -w remote_port
  28. </name>
  29. <command>
  30. http://%HOSTIP:%HTTPPORT/%TESTNUMBER -w 'IP %{remote_ip} and PORT %{remote_port}\n'
  31. </command>
  32. </client>
  33. #
  34. # Verify data after the test has been "shot"
  35. <verify>
  36. <protocol>
  37. GET /%TESTNUMBER HTTP/1.1
  38. Host: %HOSTIP:%HTTPPORT
  39. User-Agent: curl/%VERSION
  40. Accept: */*
  41. </protocol>
  42. <stdout>
  43. HTTP/1.1 200 OK
  44. Date: Tue, 09 Nov 2010 14:49:00 GMT
  45. Content-Length: 4
  46. Connection: close
  47. Content-Type: text/html
  48. hej
  49. IP %HOSTIP and PORT %HTTPPORT
  50. </stdout>
  51. </verify>
  52. </testcase>