~ubuntu-branches/ubuntu/trusty/sflphone/trusty

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/tests/pjsua/scripts-sipp/uac-inv-two-media-but-one-disabled-no-rtpmap.xml

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (4.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20140128182336-jrsv0k9u6cawc068
Tags: 1.3.0-1
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
 
2
<!DOCTYPE scenario SYSTEM "sipp.dtd">
 
3
 
 
4
 
 
5
<scenario name="Two media with one media disabled and no rtpmap for dynamic PT">
 
6
  <!-- This causes assertion (on r3191 or older) if later pjsua initiates re-INVITE -->
 
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]>[peer_tag_param]
 
14
      Call-ID: [call_id]
 
15
      CSeq: 3 INVITE
 
16
      Contact: sip:sipp@[local_ip]:[local_port]
 
17
      Max-Forwards: 70
 
18
      Subject: Performance Test
 
19
      Content-Type: application/sdp
 
20
      Content-Length: [len]
 
21
 
 
22
      v=0
 
23
      o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
 
24
      s=-
 
25
      c=IN IP[media_ip_type] [media_ip]
 
26
      t=0 0
 
27
      m=audio 4000 RTP/AVP 0
 
28
      m=video 0 RTP/AVP 100
 
29
 
 
30
    ]]>
 
31
  </send>
 
32
 
 
33
  <recv response="100" optional="true">
 
34
  </recv>
 
35
  <recv response="180" optional="true">
 
36
  </recv>
 
37
  <recv response="200" rtd="true">
 
38
  </recv>
 
39
 
 
40
  <send>
 
41
    <![CDATA[
 
42
 
 
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: 3 ACK
 
49
      Contact: sip:sipp@[local_ip]:[local_port]
 
50
      Max-Forwards: 70
 
51
      Subject: Performance Test
 
52
      Content-Length: 0
 
53
 
 
54
    ]]>
 
55
  </send>
 
56
 
 
57
  <!-- Waiting re-INVITE from pjsua  -->
 
58
 
 
59
  <recv request="INVITE" crlf="true">
 
60
  </recv>
 
61
 
 
62
  <send retrans="500">
 
63
    <![CDATA[
 
64
 
 
65
      SIP/2.0 200 OK
 
66
      [last_Via:]
 
67
      [last_From:]
 
68
      [last_To:];tag=[call_number]
 
69
      [last_Call-ID:]
 
70
      [last_CSeq:]
 
71
      Contact: sip:sipp@[local_ip]:[local_port]
 
72
      Content-Type: application/sdp
 
73
 
 
74
      v=0
 
75
      o=user1 53655765 2353687637 IN IP[local_ip_type] [local_ip]
 
76
      s=-
 
77
      c=IN IP[media_ip_type] [media_ip]
 
78
      t=0 0
 
79
      m=audio 4000 RTP/AVP 0
 
80
      m=video 0 RTP/AVP 100
 
81
 
 
82
    ]]>
 
83
  </send>
 
84
 
 
85
  <!-- Expecting assertion here -->
 
86
 
 
87
  <recv request="ACK" crlf="true">
 
88
  </recv>
 
89
 
 
90
  <!-- definition of the response time repartition table (unit is ms)   -->
 
91
  <ResponseTimeRepartition value="10, 20, 30, 40, 50, 100, 150, 200"/>
 
92
 
 
93
  <!-- definition of the call length repartition table (unit is ms)     -->
 
94
  <CallLengthRepartition value="10, 50, 100, 500, 1000, 5000, 10000"/>
 
95
 
 
96
</scenario>
 
97