summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/pjsua/scripts-recvfrom/100_simple.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/pjsua/scripts-recvfrom/100_simple.py b/tests/pjsua/scripts-recvfrom/100_simple.py
new file mode 100644
index 00000000..e92369d8
--- /dev/null
+++ b/tests/pjsua/scripts-recvfrom/100_simple.py
@@ -0,0 +1,16 @@
+# $Id$
+import inc_sip as sip
+import inc_sdp as sdp
+
+pjsua = "--null-audio --id=sip:CLIENT --registrar sip:127.0.0.1:$PORT " + \
+ "--auto-update-nat=0"
+
+req1 = sip.RecvfromTransaction("Registration", 200,
+ include=["REGISTER sip"],
+ exclude=["Authorization"],
+ resp_hdr=["Server: Snake Registrar", "Expires: 221", "Contact: sip:localhost"],
+ expect="registration success"
+ )
+
+recvfrom_cfg = sip.RecvfromCfg("Simple registration test",
+ pjsua, [req1])