5 pjsua = "--null-audio --id=sip:CLIENT --registrar sip:127.0.0.1:$PORT " + \
6 "--realm=python --user=username --password=password " + \
9 req1 = sip.RecvfromTransaction("Initial request", 401,
10 include=["REGISTER sip"],
11 exclude=["Authorization"],
12 resp_hdr=["WWW-Authenticate: Digest realm=\"python\", nonce=\"1\""]
15 req2 = sip.RecvfromTransaction("REGISTER first retry", 401,
16 include=["REGISTER sip", "Authorization", "nonce=\"1\""],
17 exclude=["Authorization:[\\s\\S]+Authorization:"],
18 resp_hdr=["WWW-Authenticate: Digest realm=\"python\", nonce=\"2\", stale=true"]
22 req3 = sip.RecvfromTransaction("REGISTER retry with new nonce", 200,
23 include=["REGISTER sip", "Authorization", "nonce=\"2\""],
24 exclude=["Authorization:[\\s\\S]+Authorization:"],
25 expect="registration success"
28 recvfrom_cfg = sip.RecvfromCfg("Authentication okay after retry with new nonce",
29 pjsua, [req1, req2, req3])