blob: 50308a583e6742ba276cd27f67e48d99081471f6 [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001# $Id$
2#
3from inc_cfg import *
4
5# Basic registration
6test_param = TestParam(
7 "Presence with PUBLISH",
8 [
9 InstanceParam( "ua1",
10 "--null-audio"+
11 " --id=\"<sip:test1@pjsip.org>\""+
12 " --registrar=sip:sip.pjsip.org" +
13 " --username=test1" +
14 " --password=test1" +
15 " --realm=*" +
16 " --proxy=\"sip:sip.pjsip.org;lr\"" +
17 " --publish",
18 uri="<sip:test1@pjsip.org>",
19 have_reg=True,
20 have_publish=True),
21 InstanceParam( "ua2",
22 "--null-audio"+
23 " --id=\"<sip:test2@pjsip.org>\""+
24 " --registrar=sip:sip.pjsip.org" +
25 " --username=test2" +
26 " --password=test2" +
27 " --realm=*" +
28 " --proxy=\"sip:sip.pjsip.org;lr\"" +
29 " --publish",
30 uri="<sip:test2@pjsip.org>",
31 have_reg=True,
32 have_publish=True),
33 ]
34 )
35