Add robot test files for VTN Coordinator features
[integration.git] / test / tools / Robot_Tool / variables / Variables.py
index d1445d1435510951080c10f4377ee227667fdff7..47f108fce5a7e0111e7e8ff7624e8814984f272f 100644 (file)
@@ -3,15 +3,15 @@ Library for the robot based system test tool of the OpenDaylight project.
 Authors: Baohua Yang@IBM, Denghui Huang@IBM
 Updated: 2013-11-14
 """
-import collections
 
 # Global variables
-CONTROLLER_IP = '127.0.0.1'
+CONTROLLER = '127.0.0.1'
 PORT = '8080'
-PREFIX = 'http://' + CONTROLLER_IP + ':' + PORT
+PREFIX = 'http://' + CONTROLLER + ':' + PORT
 CONTAINER = 'default'
 USER = 'admin'
 PWD = 'admin'
-AUTH = [u'admin',u'admin']
-ODL_CONTROLLER_SESSION=None
-TOPO_TREE_LEVEL=2
+AUTH = [u'admin', u'admin']
+HEADERS = {'Content-Type': 'application/json'}
+ODL_CONTROLLER_SESSION = None
+TOPO_TREE_LEVEL = 2