summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/scripts-pres/200_publish.py
blob: f73ffa5d7b24d6481e77882922000241144d4d15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# $Id:$
#
from inc_cfg import *

# Basic registration
test_param = TestParam(
		"Presence with PUBLISH",
		[
			InstanceParam(	"ua1", 
					"--null-audio"+
						" --id=<sip:test1@pjsip.org>"+
						" --registrar=sip:sip.pjsip.org" +
						" --username=test1" +
						" --password=test1" +
						" --realm=*" +
						" --proxy=sip:sip.pjsip.org;lr" +
						" --publish",
					uri="<sip:test1@pjsip.org>",
					have_reg=True,
					have_publish=True),
			InstanceParam(	"ua2", 
					"--null-audio"+
						" --id=<sip:test2@pjsip.org>"+
						" --registrar=sip:sip.pjsip.org" +
						" --username=test2" +
						" --password=test2" +
						" --realm=*" +
						" --proxy=sip:sip.pjsip.org;lr" +
						" --publish",
					uri="<sip:test2@pjsip.org>",
					have_reg=True,
					have_publish=True),
		]
		)