Step 1: Move vm scripts to the right place
[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
7 # Global variables
8 CONTROLLER = '127.0.0.1'
9 PORT = '8080'
10 PREFIX = 'http://' + CONTROLLER + ':' + PORT
11 CONTAINER = 'default'
12 USER = 'admin'
13 PWD = 'admin'
14 AUTH = [u'admin', u'admin']
15 HEADERS = {'Content-Type': 'application/json'}
16 ODL_CONTROLLER_SESSION = None
17 TOPO_TREE_LEVEL = 2