blob: d78992c8ec504fe49a791b1a16ea4fc7df9cbd5d [file] [log] [blame]
Alexandre Lision67916dd2014-01-24 13:33:04 -05001# $Id$
2#
3from inc_cfg import *
4
5# This test:
6# to make call with ICE but without STUN.
7
8# Note:
9# - need --dis-codec to make INVITE packet less than typical MTU
10uas_args = "--null-audio --id=\"<sip:test1@pjsip.org>\" --registrar=sip:sip.pjsip.org --username=test1 --password=test1 --realm=pjsip.org --proxy=\"sip:sip.pjsip.org;lr\" --rtp-port 0 --use-ice --use-compact-form --max-calls 1 --dis-codec=i --dis-codec=s --dis-codec=g --log-file callee.log"
11
12uac_args = "--null-audio --id=\"<sip:test2@pjsip.org>\" --registrar=sip:sip.pjsip.org --username=test2 --password=test2 --realm=pjsip.org --proxy=\"sip:sip.pjsip.org;lr\" --rtp-port 0 --use-ice --use-compact-form --max-calls 1 --dis-codec=i --dis-codec=s --dis-codec=g --log-file caller.log"
13
14test_param = TestParam(
15 "ICE via public internet with no STUN",
16 [
17 InstanceParam( "callee", uas_args,
18 uri="<sip:test1@pjsip.org>",
19 have_reg=True, have_publish=False),
20 InstanceParam( "caller", uac_args,
21 uri="<sip:test2@pjsip.org>",
22 have_reg=True, have_publish=False),
23 ]
24 )
25