summaryrefslogtreecommitdiff
path: root/tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py')
-rw-r--r--tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py b/tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py
new file mode 100644
index 0000000..2fd8c7f
--- /dev/null
+++ b/tests/pjsua/scripts-recvfrom/400_inv_answered_with_less_media.py
@@ -0,0 +1,32 @@
+# $Id: 400_inv_answered_with_less_media.py 3716 2011-08-19 12:24:48Z nanang $
+import inc_sip as sip
+import inc_sdp as sdp
+
+# Offer with 2 media lines answered with only 1 media line
+
+pjsua = "--null-audio sip:127.0.0.1:$PORT --id=sip:1000@localhost --extra-audio --use-srtp=0"
+
+sdp = \
+"""
+v=0
+o=- 0 0 IN IP4 127.0.0.1
+s=pjmedia
+c=IN IP4 127.0.0.1
+t=0 0
+m=audio 4000 RTP/AVP 0 101
+a=rtpmap:0 PCMU/8000
+a=sendrecv
+a=rtpmap:101 telephone-event/8000
+a=fmtp:101 0-15
+"""
+
+req = sip.RecvfromTransaction("Receiving 2 media lines, answer with 1 media line", 200,
+ include=["m=audio \d+ RTP/AVP", "m=audio \d+ RTP/AVP"],
+ exclude=[],
+ resp_hdr=["Content-type: application/sdp"],
+ resp_body=sdp,
+ )
+
+recvfrom_cfg = sip.RecvfromCfg("Receiving answer with less media lines",
+ pjsua, [req])
+