d1445d1435510951080c10f4377ee227667fdff7
[integration.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_IP = '127.0.0.1'
10 PORT = '8080'
11 PREFIX = 'http://' + CONTROLLER_IP + ':' + PORT
12 CONTAINER = 'default'
13 USER = 'admin'
14 PWD = 'admin'
15 AUTH = [u'admin',u'admin']
16 ODL_CONTROLLER_SESSION=None
17 TOPO_TREE_LEVEL=2