uac-ticket-1148.xml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <scenario name="Ticket #1148 (assertion when offering SDP media with port zero but answered with port non-zero)">
  4. <send retrans="500">
  5. <![CDATA[
  6. INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  7. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  8. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  9. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  10. Call-ID: [call_id]
  11. CSeq: 3 INVITE
  12. Contact: sip:sipp@[local_ip]:[local_port]
  13. Max-Forwards: 70
  14. Subject: Performance Test
  15. Content-Type: application/sdp
  16. Content-Length: [len]
  17. v=0
  18. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  19. s=-
  20. c=IN IP[media_ip_type] [media_ip]
  21. t=0 0
  22. m=audio 4000 RTP/AVP 0
  23. m=video 5000 RTP/AVP 100
  24. a=rtpmap:100 H261/90000
  25. ]]>
  26. </send>
  27. <recv response="100" optional="true">
  28. </recv>
  29. <recv response="180" optional="true">
  30. </recv>
  31. <recv response="200" rtd="true">
  32. </recv>
  33. <send>
  34. <![CDATA[
  35. ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  36. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  37. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  38. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  39. Call-ID: [call_id]
  40. CSeq: 3 ACK
  41. Contact: sip:sipp@[local_ip]:[local_port]
  42. Max-Forwards: 70
  43. Subject: Performance Test
  44. Content-Length: 0
  45. ]]>
  46. </send>
  47. <!-- Waiting re-INVITE from pjsua -->
  48. <recv request="INVITE" crlf="true">
  49. </recv>
  50. <send retrans="500">
  51. <![CDATA[
  52. SIP/2.0 200 OK
  53. [last_Via:]
  54. [last_From:]
  55. [last_To:];tag=[call_number]
  56. [last_Call-ID:]
  57. [last_CSeq:]
  58. Contact: sip:sipp@[local_ip]:[local_port]
  59. Content-Type: application/sdp
  60. v=0
  61. o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
  62. s=-
  63. c=IN IP[media_ip_type] [media_ip]
  64. t=0 0
  65. m=audio 4000 RTP/AVP 0
  66. m=video 5000 RTP/AVP 100
  67. a=rtpmap:100 H261/90000
  68. ]]>
  69. </send>
  70. <!-- Expecting assertion here -->
  71. <recv request="ACK" crlf="true">
  72. </recv>
  73. <!-- definition of the response time repartition table (unit is ms) -->
  74. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  75. <!-- definition of the call length repartition table (unit is ms) -->
  76. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  77. </scenario>