Commit 9d205730 authored by Benjamin Blanc's avatar Benjamin Blanc

testnode: use hateoas_slapos_master_url parameter

parent 5b5e6b87
...@@ -77,6 +77,7 @@ class ERP5TestNode(TestCase): ...@@ -77,6 +77,7 @@ class ERP5TestNode(TestCase):
config["log_directory"] = self.log_directory config["log_directory"] = self.log_directory
config["log_file"] = self.log_file config["log_file"] = self.log_file
config["test_suite_master_url"] = None config["test_suite_master_url"] = None
config["hateoas_slapos_master_url"] = None
config["test_node_title"] = "Foo-Test-Node" config["test_node_title"] = "Foo-Test-Node"
config["system_temp_folder"] = self.system_temp_folder config["system_temp_folder"] = self.system_temp_folder
config["computer_id"] = "COMP-TEST" config["computer_id"] = "COMP-TEST"
......
...@@ -65,7 +65,7 @@ class ScalabilityTestRunner(): ...@@ -65,7 +65,7 @@ class ScalabilityTestRunner():
cert_path, cert_path,
key_path, key_path,
self.log, self.log,
url='https://rest.slapos.org/Base_getHateoasMaster') self.testnode.config['hateoas_slapos_master_url'])
self.remaining_software_installation_dict = {} self.remaining_software_installation_dict = {}
# Protection to prevent installation of softwares after checking # Protection to prevent installation of softwares after checking
......
...@@ -28,7 +28,7 @@ class SlapOSMasterCommunicator(object): ...@@ -28,7 +28,7 @@ class SlapOSMasterCommunicator(object):
""" """
def __init__(self, certificate_path, key_path, log, def __init__(self, certificate_path, key_path, log,
url='https://rest.slapos.org/Base_getHateoasMaster'): url):
# Create connection # Create connection
api_scheme, api_netloc, api_path, api_query, api_fragment = urlparse.urlsplit(url) api_scheme, api_netloc, api_path, api_query, api_fragment = urlparse.urlsplit(url)
self.log = log self.log = log
......
...@@ -78,7 +78,7 @@ def main(*args): ...@@ -78,7 +78,7 @@ def main(*args):
'software_directory', 'software_directory',
'proxy_port', 'git_binary','zip_binary','node_quantity', 'proxy_port', 'git_binary','zip_binary','node_quantity',
'test_node_title', 'ipv4_address','ipv6_address','test_suite_master_url', 'test_node_title', 'ipv4_address','ipv6_address','test_suite_master_url',
'slapgrid_partition_binary','slapgrid_software_binary', 'hateoas_slapos_master_url', 'slapgrid_partition_binary','slapgrid_software_binary',
'slapproxy_binary', 'httpd_ip', 'httpd_port', 'httpd_software_access_port', 'slapproxy_binary', 'httpd_ip', 'httpd_port', 'httpd_software_access_port',
'computer_id', 'server_url'): 'computer_id', 'server_url'):
CONFIG[key] = config.get('testnode',key) CONFIG[key] = config.get('testnode',key)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment