D-Modem/pjproject-2.11.1/tests/pjsua/scripts-recvfrom/235_reg_good_tel_uri_enocredential.py

16 lines
441 B
Python
Raw Normal View History

2021-10-30 02:41:03 +08:00
# $Id$
import inc_sip as sip
import inc_sdp as sdp
pjsua = "--null-audio --id=tel:+12345 --registrar sip:127.0.0.1:$PORT"
req1 = sip.RecvfromTransaction("", 401,
include=["REGISTER sip"],
exclude=["Authorization"],
resp_hdr=["WWW-Authenticate: Digest realm=\"python\", nonce=\"1234\""],
expect="PJSIP_ENOCREDENTIAL"
)
recvfrom_cfg = sip.RecvfromCfg("Failed registration with tel: URI test",
pjsua, [req1])