summaryrefslogtreecommitdiff
path: root/tests/pjsua/scripts-recvfrom/300_timer_good.py
diff options
context:
space:
mode:
authorNanang Izzuddin <nanang@teluu.com>2009-08-11 12:42:38 +0000
committerNanang Izzuddin <nanang@teluu.com>2009-08-11 12:42:38 +0000
commit6f204c13ce8519524eb4da79359ac9b2aea08252 (patch)
treefd03248a6aa6c121822cbca2507113cf5b86b0f0 /tests/pjsua/scripts-recvfrom/300_timer_good.py
parent04fbadef1554da3b61c412e030081d1f05c6a99a (diff)
Ticket #833:
- Initial version of Session Timers (RFC 4028). - Added new options in pjsua app to configure Session Timers settings. - Added python tests for Session Timers. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2858 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'tests/pjsua/scripts-recvfrom/300_timer_good.py')
-rw-r--r--tests/pjsua/scripts-recvfrom/300_timer_good.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/pjsua/scripts-recvfrom/300_timer_good.py b/tests/pjsua/scripts-recvfrom/300_timer_good.py
new file mode 100644
index 00000000..75dd1bd8
--- /dev/null
+++ b/tests/pjsua/scripts-recvfrom/300_timer_good.py
@@ -0,0 +1,17 @@
+# $Id$
+import inc_sip as sip
+import inc_sdp as sdp
+
+# INVITE session using session timer
+
+pjsua = "--null-audio sip:127.0.0.1:$PORT --use-timer --timer-min-se 100 --timer-se 2000"
+
+req = sip.RecvfromTransaction("INVITE with session timer", 200,
+ include=["Session-Expires:\s*2000", "Min-SE:\s*100"],
+ exclude=[],
+ resp_hdr=["Session-Expires: 1000;refresher=uac"]
+ )
+
+recvfrom_cfg = sip.RecvfromCfg("INVITE session using session timer",
+ pjsua, [req])
+