Skip to content
Snippets Groups Projects
Commit 3e8e65dd authored by Philip ABBET's avatar Philip ABBET
Browse files

[executor] Add more checks to ensure the JSON configuration is valid

parent 3c0ca8ab
No related branches found
No related tags found
No related merge requests found
...@@ -183,6 +183,24 @@ class BaseExecutor(object): ...@@ -183,6 +183,24 @@ class BaseExecutor(object):
self.errors += self.algorithm.errors self.errors += self.algorithm.errors
return return
# Check that the mapping in coherent
if len(self.data['inputs']) != len(self.algorithm.input_map):
self.errors.append("The number of inputs of the algorithm doesn't correspond")
if len(self.data['outputs']) != len(self.algorithm.output_map):
self.errors.append("The number of outputs of the algorithm doesn't correspond")
for name in self.data['inputs'].keys():
if name not in self.algorithm.input_map.keys():
self.errors.append("The input '%s' doesn't exist in the algorithm" % name)
for name in self.data['outputs'].keys():
if name not in self.algorithm.output_map.keys():
self.errors.append("The output '%s' doesn't exist in the algorithm" % name)
if self.errors:
return
# Load the databases (if any is required) # Load the databases (if any is required)
for name, details in self.data['inputs'].items(): for name, details in self.data['inputs'].items():
if 'database' in details: if 'database' in details:
......
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