summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-08-18 07:38:48 +0000
committerBenny Prijono <bennylp@teluu.com>2010-08-18 07:38:48 +0000
commitd2bcef0c70e349488fd9218f7383a1a252cfc516 (patch)
tree7157a76f27fe0cbd4eb3d42945f9e42569f2e849 /tests
parent69049b69c8ce3413404af85c52698a5fe87a3b8a (diff)
More automated test (re #1111): added simple recvfrom test
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3284 74dad513-b988-da41-8d7b-12977e46ad98
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])