~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.1.0/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py

  • Committer: Package Import Robot
  • Author(s): Francois Marier, Francois Marier, Mark Purcell
  • Date: 2014-10-18 15:08:50 UTC
  • mfrom: (1.1.12)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20141018150850-2exfk34ckb15pcwi
Tags: 1.4.1-0.1
[ Francois Marier ]
* Non-maintainer upload
* New upstream release (closes: #759576, #741130)
  - debian/rules +PJPROJECT_VERSION := 2.2.1
  - add upstream patch to fix broken TLS support
  - add patch to fix pjproject regression

[ Mark Purcell ]
* Build-Depends:
  - sflphone-daemon + libavformat-dev, libavcodec-dev, libswscale-dev,
  libavdevice-dev, libavutil-dev
  - sflphone-gnome + libclutter-gtk-1.0-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: 301_timer_good_retry_after_422.py 3287 2010-08-18 14:30:17Z nanang $
2
 
import inc_sip as sip
3
 
import inc_sdp as sdp
4
 
 
5
 
# Session timers retry after 422
6
 
 
7
 
 
8
 
pjsua = "--null-audio sip:127.0.0.1:$PORT --timer-min-se 100 --timer-se 1000"
9
 
 
10
 
# First INVITE with timer rejected with 422
11
 
req1 = sip.RecvfromTransaction("INVITE with SE too small", 422,
12
 
                                include=["Session-Expires:\s*1000"], 
13
 
                                exclude=[],
14
 
                                resp_hdr=["Min-SE: 2000"]
15
 
                                )
16
 
 
17
 
# Wait for ACK
18
 
req2 = sip.RecvfromTransaction("Wait ACK", 0, include=["ACK sip"])
19
 
 
20
 
# New INVITE with SE >= Min-SE
21
 
req3 = sip.RecvfromTransaction("Retrying with acceptable SE", 200,
22
 
                                include=["Session-Expires:\s*2000", "Min-SE:\s*2000"], 
23
 
                                exclude=[],
24
 
                                resp_hdr=["Session-Expires: 2000;refresher=uac"]
25
 
                                )
26
 
 
27
 
 
28
 
recvfrom_cfg = sip.RecvfromCfg("Session timers retry after 422",
29
 
                               pjsua, [req1, req2, req3])
30