uac-inv-without-sdp.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <!-- This program is free software; you can redistribute it and/or -->
  4. <!-- modify it under the terms of the GNU General Public License as -->
  5. <!-- published by the Free Software Foundation; either version 2 of the -->
  6. <!-- License, or (at your option) any later version. -->
  7. <!-- -->
  8. <!-- This program is distributed in the hope that it will be useful, -->
  9. <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of -->
  10. <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -->
  11. <!-- GNU General Public License for more details. -->
  12. <!-- -->
  13. <!-- You should have received a copy of the GNU General Public License -->
  14. <!-- along with this program; if not, write to the -->
  15. <!-- Free Software Foundation, Inc., -->
  16. <!-- 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -->
  17. <!-- -->
  18. <!-- -->
  19. <scenario name="UAC sending initial INVITE without SDP (#1526)">
  20. <send retrans="500">
  21. <![CDATA[
  22. INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  23. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  24. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  25. To: sut <sip:[service]@[remote_ip]:[remote_port]>
  26. Call-ID: [call_id]
  27. CSeq: 1 INVITE
  28. Contact: sip:sipp@[local_ip]:[local_port]
  29. Max-Forwards: 70
  30. Subject: Performance Test
  31. Content-Type: application/sdp
  32. Content-Length: [len]
  33. ]]>
  34. </send>
  35. <recv response="100" optional="true">
  36. </recv>
  37. <recv response="180" optional="true">
  38. </recv>
  39. <recv response="200" rtd="true">
  40. </recv>
  41. <send>
  42. <![CDATA[
  43. ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  44. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  45. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  46. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  47. Call-ID: [call_id]
  48. CSeq: 1 ACK
  49. Contact: sip:sipp@[local_ip]:[local_port]
  50. Max-Forwards: 70
  51. Subject: Performance Test
  52. Content-Type: application/sdp
  53. Content-Length: [len]
  54. v=0
  55. o=BroadWorks 1378618 0 IN IP4 192.168.2.25
  56. s=-
  57. c=IN IP4 192.168.2.25
  58. t=0 0
  59. m=audio 4020 RTP/AVP 0 101
  60. c=IN IP4 192.168.2.25
  61. a=rtpmap:101 telephone-event/8000
  62. a=fmtp:101 0-15
  63. m=video 4022 RTP/AVP 97
  64. c=IN IP4 192.168.2.25
  65. b=TIAS:512000
  66. a=rtpmap:97 H264/90000
  67. a=fmtp:97 profile-level-id=42900b
  68. a=orient:portrait
  69. a=rtcp-fb:* nack pli
  70. ]]>
  71. </send>
  72. <!-- Assertion occured here before r4175 (see ticket #1526) -->
  73. <recv request="BYE" crlf="true">
  74. </recv>
  75. <send>
  76. <![CDATA[
  77. SIP/2.0 200 OK
  78. [last_Via:]
  79. [last_From:]
  80. [last_To:]
  81. [last_Call-ID:]
  82. [last_CSeq:]
  83. [last_Contact:]
  84. Content-Length: 0
  85. ]]>
  86. </send>
  87. <!-- definition of the response time repartition table (unit is ms) -->
  88. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  89. <!-- definition of the call length repartition table (unit is ms) -->
  90. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  91. </scenario>