mrcp_uac_unknown 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE scenario SYSTEM "sipp.dtd">
  3. <scenario name="MRCP Unknown Resource UAC">
  4. <!-- In client mode (sipp placing calls), the Call-ID MUST be -->
  5. <!-- generated by sipp. To do so, use [call_id] token. -->
  6. <send retrans="500">
  7. <![CDATA[
  8. INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  9. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  10. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  11. To: sut <sip:[service]@[remote_ip]:[remote_port]>
  12. Call-ID: [call_id]
  13. CSeq: 1 INVITE
  14. Contact: sip:sipp@[local_ip]:[local_port]
  15. Max-Forwards: 70
  16. Subject: Performance Test
  17. Content-Type: application/sdp
  18. Content-Length: [len]
  19. v=0
  20. o=user1 53655765 2353687637 IN IP4 [local_ip]
  21. s=-
  22. c=IN IP4 [media_ip]
  23. t=0 0
  24. m=application 9 TCP/MRCPv2 1
  25. a=setup:active
  26. a=connection:new
  27. a=resource:unknown
  28. a=cmid:1
  29. m=audio [media_port] RTP/AVP 0 8
  30. a=mid:1
  31. ]]>
  32. </send>
  33. <recv response="100"
  34. optional="true">
  35. </recv>
  36. <recv response="180" optional="true">
  37. </recv>
  38. <!-- By adding rrs="true" (Record Route Sets), the route sets -->
  39. <!-- are saved and used for following messages sent. Useful to test -->
  40. <!-- against stateful SIP proxies/B2BUAs. -->
  41. <recv response="200" rtd="true">
  42. </recv>
  43. <!-- Packet lost can be simulated in any send/recv message by -->
  44. <!-- by adding the 'lost = "10"'. Value can be [1-100] percent. -->
  45. <send>
  46. <![CDATA[
  47. ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  48. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  49. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  50. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  51. Call-ID: [call_id]
  52. CSeq: 1 ACK
  53. Contact: sip:sipp@[local_ip]:[local_port]
  54. Max-Forwards: 70
  55. Subject: Performance Test
  56. Content-Length: 0
  57. ]]>
  58. </send>
  59. <!-- This delay can be customized by the -d command-line option -->
  60. <!-- or by adding a 'milliseconds = "value"' option here. -->
  61. <pause/>
  62. <!-- The 'crlf' option inserts a blank line in the statistics report. -->
  63. <send retrans="500">
  64. <![CDATA[
  65. BYE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
  66. Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
  67. From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
  68. To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
  69. Call-ID: [call_id]
  70. CSeq: 2 BYE
  71. Contact: sip:sipp@[local_ip]:[local_port]
  72. Max-Forwards: 70
  73. Subject: Performance Test
  74. Content-Length: 0
  75. ]]>
  76. </send>
  77. <recv response="200" crlf="true">
  78. </recv>
  79. <!-- definition of the response time repartition table (unit is ms) -->
  80. <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
  81. <!-- definition of the call length repartition table (unit is ms) -->
  82. <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
  83. </scenario>