summaryrefslogtreecommitdiffstats
path: root/testcases/Controllers/ODL/CI/variables/Variables.py
blob: f406eec3f59d58f056c4cfc70cd31893f687aaf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
Library for the robot based system test tool of the OpenDaylight project.
"""
import collections

# Global variables
CONTROLLER = '10.2.91.18'
PORT = '8081'
PREFIX = 'http://' + CONTROLLER + ':' + PORT
USER = 'admin'
PWD = 'admin'
AUTH = [u'admin',u'admin']
HEADERS={'Content-Type': 'application/json'}
HEADERS_XML={'Content-Type': 'application/xml'}
ACCEPT_XML={'Accept': 'application/xml'}

#TOKEN
AUTH_TOKEN_API='/oauth2/token'
REVOKE_TOKEN_API='/oauth2/revoke'