Merge pull request #18 from Depaulicious/assert-remove

Convert assertions to if+raise
This commit is contained in:
Karl Kroening 2017-07-02 14:14:19 -06:00 committed by GitHub
commit 89f91535c6
3 changed files with 13 additions and 8 deletions

View File

@ -16,7 +16,8 @@ def input(filename, **kwargs):
kwargs['filename'] = filename
fmt = kwargs.pop('f', None)
if fmt:
assert 'format' not in kwargs, "Can't specify both `format` and `f` kwargs"
if 'format' in kwargs:
raise ValueError("Can't specify both `format` and `f` kwargs")
kwargs['format'] = fmt
return InputNode(input.__name__, **kwargs)
@ -46,7 +47,8 @@ def output(parent_node, filename, **kwargs):
kwargs['filename'] = filename
fmt = kwargs.pop('f', None)
if fmt:
assert 'format' not in kwargs, "Can't specify both `format` and `f` kwargs"
if 'format' in kwargs:
raise ValueError("Can't specify both `format` and `f` kwargs")
kwargs['format'] = fmt
return OutputNode([parent_node], output.__name__, **kwargs)

View File

@ -47,7 +47,7 @@ def _get_input_args(input_node):
args += _convert_kwargs_to_cmd_line_args(kwargs)
args += ['-i', filename]
else:
assert False, 'Unsupported input node: {}'.format(input_node)
raise ValueError('Unsupported input node: {}'.format(input_node))
return args
@ -56,7 +56,8 @@ def _topo_sort(start_node):
sorted_nodes = []
child_map = {}
def visit(node, child):
assert node not in marked_nodes, 'Graph is not a DAG'
if node in marked_nodes:
raise RuntimeError('Graph is not a DAG')
if child is not None:
if node not in child_map:
child_map[node] = []
@ -89,7 +90,7 @@ def _get_global_args(node):
if node._name == overwrite_output.__name__:
return ['-y']
else:
assert False, 'Unsupported global node: {}'.format(node)
raise ValueError('Unsupported global node: {}'.format(node))
def _get_output_args(node, stream_name_map):
@ -107,7 +108,7 @@ def _get_output_args(node, stream_name_map):
args += _convert_kwargs_to_cmd_line_args(kwargs)
args += [filename]
else:
assert False, 'Unsupported output node: {}'.format(node)
raise ValueError('Unsupported output node: {}'.format(node))
return args

View File

@ -9,7 +9,8 @@ class Node(object):
"""Node base"""
def __init__(self, parents, name, *args, **kwargs):
parent_hashes = [hash(parent) for parent in parents]
assert len(parent_hashes) == len(set(parent_hashes)), 'Same node cannot be included as parent multiple times'
if len(parent_hashes) != len(set(parent_hashes)):
raise ValueError('Same node cannot be included as parent multiple times')
self._parents = parents
self._hash = None
self._name = name
@ -65,7 +66,8 @@ class OutputNode(Node):
class GlobalNode(Node):
def __init__(self, parent, name, *args, **kwargs):
assert isinstance(parent, OutputNode), 'Global nodes can only be attached after output nodes'
if not isinstance(parent, OutputNode):
raise RuntimeError('Global nodes can only be attached after output nodes')
super(GlobalNode, self).__init__([parent], name, *args, **kwargs)