summaryrefslogtreecommitdiff
path: root/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py')
-rw-r--r--tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py b/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py
new file mode 100644
index 0000000..3bd8a57
--- /dev/null
+++ b/tests/pjsua/scripts-recvfrom/301_timer_good_retry_after_422.py
@@ -0,0 +1,30 @@
+# $Id: 301_timer_good_retry_after_422.py 3287 2010-08-18 14:30:17Z nanang $
+import inc_sip as sip
+import inc_sdp as sdp
+
+# Session timers retry after 422
+
+
+pjsua = "--null-audio sip:127.0.0.1:$PORT --timer-min-se 100 --timer-se 1000"
+
+# First INVITE with timer rejected with 422
+req1 = sip.RecvfromTransaction("INVITE with SE too small", 422,
+ include=["Session-Expires:\s*1000"],
+ exclude=[],
+ resp_hdr=["Min-SE: 2000"]
+ )
+
+# Wait for ACK
+req2 = sip.RecvfromTransaction("Wait ACK", 0, include=["ACK sip"])
+
+# New INVITE with SE >= Min-SE
+req3 = sip.RecvfromTransaction("Retrying with acceptable SE", 200,
+ include=["Session-Expires:\s*2000", "Min-SE:\s*2000"],
+ exclude=[],
+ resp_hdr=["Session-Expires: 2000;refresher=uac"]
+ )
+
+
+recvfrom_cfg = sip.RecvfromCfg("Session timers retry after 422",
+ pjsua, [req1, req2, req3])
+