Skip to content
Snippets Groups Projects
Commit 4a6d0f08 authored by gakin's avatar gakin
Browse files

integration_tests: add setOpenbisPortDataStoreServer to allow cases where the...

integration_tests: add setOpenbisPortDataStoreServer to allow cases where the DSS should connect to an AS on a port other than the default 8443

SVN: 37184
parent 8aaa348f
No related branches found
No related tags found
No related merge requests found
...@@ -465,6 +465,16 @@ class OpenbisController(_Controller): ...@@ -465,6 +465,16 @@ class OpenbisController(_Controller):
""" Disables authentication. """ """ Disables authentication. """
self.asProperties['authentication-service'] = 'dummy-authentication-service' self.asProperties['authentication-service'] = 'dummy-authentication-service'
def setOpenbisPortDataStoreServer(self, port):
as_url = self.dssProperties['server-url']
util.printAndFlush('as_url' + as_url)
parts = as_url.split(':')
s=""
for idx, part in enumerate(parts):
if(idx < len(parts) -1):
s = s + part + ":"
self.dssProperties['server-url'] = s + port
def setDataStoreServerCode(self, code): def setDataStoreServerCode(self, code):
""" Sets the code of the Data Store Server. """ """ Sets the code of the Data Store Server. """
self.dssProperties['data-store-server-code'] = code self.dssProperties['data-store-server-code'] = code
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment