blob: a61aba77cf8d4ab3b5a95e384bb7efd875fee5b0 [file] [log] [blame]
Nanang Izzuddin0fd92672010-06-16 15:26:18 +00001<?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 and ACK without SDP (#1045)">
22 <!-- UAC with bad ACK causes assertion with pjsip 1.4 -->
23 <send retrans="500">
24 <![CDATA[
25
26 INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
27 Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
28 From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
29 To: sut <sip:[service]@[remote_ip]:[remote_port]>
30 Call-ID: [call_id]
31 CSeq: 1 INVITE
32 Contact: sip:sipp@[local_ip]:[local_port]
33 Max-Forwards: 70
34 Subject: Performance Test
35 Content-Type: application/sdp
36 Content-Length: [len]
37
38 ]]>
39 </send>
40
41 <recv response="100" optional="true">
42 </recv>
43
44 <recv response="180" optional="true">
45 </recv>
46
47 <recv response="200" rtd="true">
48 </recv>
49
50 <send>
51 <![CDATA[
52
53 ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
54 Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
55 From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
56 To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
57 Call-ID: [call_id]
58 CSeq: 1 ACK
59 Contact: sip:sipp@[local_ip]:[local_port]
60 Max-Forwards: 70
61 Subject: Performance Test
62 Content-Length: 0
63
64 ]]>
65 </send>
66
67 <recv request="BYE" crlf="true">
68 </recv>
69
70 <send>
71 <![CDATA[
72
73 SIP/2.0 200 OK
74 [last_Via:]
75 [last_From:]
76 [last_To:]
77 [last_Call-ID:]
78 [last_CSeq:]
79 [last_Contact:]
80 Content-Length: 0
81 ]]>
82 </send>
83
84 <!-- definition of the response time repartition table (unit is ms) -->
85 <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
86
87 <!-- definition of the call length repartition table (unit is ms) -->
88 <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
89
90</scenario>
91