diff options
Diffstat (limited to 'testcases/Controllers/ODL/CI/variables/Variables.py')
-rw-r--r-- | testcases/Controllers/ODL/CI/variables/Variables.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testcases/Controllers/ODL/CI/variables/Variables.py b/testcases/Controllers/ODL/CI/variables/Variables.py new file mode 100644 index 000000000..f406eec3f --- /dev/null +++ b/testcases/Controllers/ODL/CI/variables/Variables.py @@ -0,0 +1,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' + |