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