blob: b0790f6ef7dc912b6dcb1a8551ad8ad62d125ef0 [file] [log] [blame]
Benny Prijono611083d2009-11-04 13:17:31 +00001<?xml version="1.0" encoding="ISO-8859-1" ?>
2<!DOCTYPE scenario SYSTEM "sipp.dtd">
3
4
5<scenario name="Multiple Require header fields">
6 <!-- UAC with bad ACK causes assertion with pjsip 1.4 -->
7 <send retrans="500">
8 <![CDATA[
9
10 INVITE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
11 Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
12 From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
13 To: sut <sip:[service]@[remote_ip]:[remote_port]>
14 Call-ID: [call_id]
15 CSeq: 1 INVITE
16 Contact: sip:sipp@[local_ip]:[local_port]
17 Max-Forwards: 70
18 Require: timer
19 Require: toto
20 Subject: Performance Test
21 Content-Type: application/sdp
22 Content-Length: [len]
23
24 v=0
25 o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
26 s=-
27 c=IN IP[media_ip_type] [media_ip]
28 t=0 0
29 m=audio [media_port] RTP/AVP 0
30 a=rtpmap:0 PCMU/8000
31
32 ]]>
33 </send>
34
35 <recv response="100"
36 optional="true">
37 </recv>
38
39 <recv response="180" optional="true">
40 </recv>
41
42 <recv response="200" rtd="true">
43 </recv>
44
45 <send>
46 <![CDATA[
47
48 ACK sip:[service]@[remote_ip]:[remote_port] SIP/2.0
49 Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=[branch]
50 From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
51 To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
52 Call-ID: [call_id]
53 CSeq: 1 ACK
54 Contact: sip:sipp@[local_ip]:[local_port]
55 Max-Forwards: 70
56 Subject: Performance Test
57 Content-Length: 0
58
59 ]]>
60 </send>
61
62 <pause/>
63
64 <send retrans="500">
65 <![CDATA[
66
67 BYE sip:[service]@[remote_ip]:[remote_port] SIP/2.0
68 Via: SIP/2.0/[transport] [local_ip]:[local_port];branch=z9hG4bK-1
69 From: sipp <sip:sipp@[local_ip]:[local_port]>;tag=[call_number]
70 To: sut <sip:[service]@[remote_ip]:[remote_port]>[peer_tag_param]
71 Call-ID: [call_id]
72 CSeq: 2 BYE
73 Contact: sip:sipp@[local_ip]:[local_port]
74 Max-Forwards: 70
75 Subject: Performance Test
76 Content-Length: 0
77
78 ]]>
79 </send>
80
81 <recv response="200" crlf="true">
82 </recv>
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