Skip to content

Commit 8b7849e

Browse files
committedJun 18, 2017
Give input name in message when shortcut raises
1 parent 6baf649 commit 8b7849e

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed
 

‎py_validate/backend/base.py

+21-3
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,28 @@ def _check_value(arg, val, validator):
200200
if validator is None:
201201
return
202202

203+
def raise_exception_failure(inp_name, e):
204+
"""
205+
Raise an informative failure if the validator raises an Exception.
206+
207+
Parameters
208+
----------
209+
inp_name : str
210+
The name of the input on which the validation failed.
211+
e : Exception
212+
The error that was raised during execution of the validator.
213+
"""
214+
215+
exception_failure = "Failed validation for input '{inp_name}': "
216+
raise type(e)(exception_failure.format(inp_name=inp_name) + str(e))
217+
203218
if isinstance(validator, str):
204219
validator = get_shortcut(validator)
205-
validator(val)
220+
221+
try:
222+
validator(val)
223+
except Exception as e:
224+
raise_exception_failure(arg, e)
206225

207226
elif isinstance(validator, type):
208227
if not isinstance(val, validator):
@@ -218,8 +237,7 @@ def _check_value(arg, val, validator):
218237
try:
219238
is_valid = validator(val)
220239
except Exception as e:
221-
msg = "Failed validation for input '{inp_name}': " + str(e)
222-
raise type(e)(msg.format(inp_name=arg))
240+
raise_exception_failure(arg, e)
223241

224242
if is_valid is False:
225243
msg = ("Invalid value for variable "

0 commit comments

Comments
 (0)
Please sign in to comment.