100f3bca3187823a9355aa67a22de36b77a229b6
[integration/test.git] / test / tools / Robot_Tool / variables / Variables.py
1 """
2 Library for the robot based system test tool of the OpenDaylight project.
3 Authors: Baohua Yang@IBM, Denghui Huang@IBM
4 Updated: 2013-11-14
5 """
6 import collections
7
8 # Global variables
9 CONTROLLER = '127.0.0.1'
10 PORT = '8080'
11 PREFIX = 'http://' + CONTROLLER + ':' + PORT
12 CONTAINER = 'default'
13 USER = 'admin'
14 PWD = 'admin'
15 AUTH = [u'admin',u'admin']
16 HEADERS={'Content-Type':'application/json'}
17 ODL_CONTROLLER_SESSION=None
18 TOPO_TREE_LEVEL=2