summaryrefslogtreecommitdiffstats
path: root/ipalib/errors.py
diff options
context:
space:
mode:
authorJason Gerard DeRose <jderose@redhat.com>2008-08-29 23:53:04 +0000
committerJason Gerard DeRose <jderose@redhat.com>2008-08-29 23:53:04 +0000
commit2fa8d3be74ca45ee5989dd53b7fb818b21d23680 (patch)
tree3c882207bcf537ffe1adfdc74c0047ffd79b192f /ipalib/errors.py
parent44ff0b3d23c0473106a6c0da90cc8d80df98ee78 (diff)
downloadfreeipa-2fa8d3be74ca45ee5989dd53b7fb818b21d23680.tar.gz
freeipa-2fa8d3be74ca45ee5989dd53b7fb818b21d23680.tar.xz
freeipa-2fa8d3be74ca45ee5989dd53b7fb818b21d23680.zip
225: Added errors.check_type() and errors.check_isinstance() functions; added corresponding unit tests
Diffstat (limited to 'ipalib/errors.py')
-rw-r--r--ipalib/errors.py36
1 files changed, 28 insertions, 8 deletions
diff --git a/ipalib/errors.py b/ipalib/errors.py
index dea7cd730..1c109ed66 100644
--- a/ipalib/errors.py
+++ b/ipalib/errors.py
@@ -21,6 +21,7 @@
All custom errors raised by `ipalib` package.
"""
+TYPE_FORMAT = '%s: need a %r; got %r'
def raise_TypeError(name, type_, value):
"""
@@ -30,9 +31,9 @@ def raise_TypeError(name, type_, value):
``name`` - The name (identifier) of the argument in question.
- ``type`` - The type expected for the arguement.
+ ``type`` - The type expected for the argument.
- ``value`` - The value (of incorrect type) revieved for argument.
+ ``value`` - The value (of incorrect type) passed as argument.
There is no edict that all TypeError should be raised with raise_TypeError,
but when it fits, use it... it makes the unit tests faster to write and
@@ -48,21 +49,40 @@ def raise_TypeError(name, type_, value):
TypeError: message: need a <type 'str'>; got u'Hello.'
:param name: The name (identifier) of the argument in question.
- :param type_: The type expected for the arguement.
- :param value: The value (of incorrect type) revieved for argument.
+ :param type_: The type expected for the argument.
+ :param value: The value (of incorrect type) passed argument.
"""
- format = '%s: need a %r; got %r'
- assert type(name) is str, format % ('name', str, name)
- assert type(type_) is type, format % ('type_', type, type_)
+ assert type(name) is str, TYPE_FORMAT % ('name', str, name)
+ assert type(type_) is type, TYPE_FORMAT % ('type_', type, type_)
assert type(value) is not type_, 'value: %r is a %r' % (value, type_)
- e = TypeError(format % (name, type_, value))
+ e = TypeError(TYPE_FORMAT % (name, type_, value))
setattr(e, 'name', name)
setattr(e, 'type', type_)
setattr(e, 'value', value)
raise e
+def check_type(name, type_, value, allow_None=False):
+ assert type(name) is str, TYPE_FORMAT % ('name', str, name)
+ assert type(type_) is type, TYPE_FORMAT % ('type_', type, type_)
+ assert type(allow_None) is bool, TYPE_FORMAT % ('allow_None', bool, allow_None)
+ if value is None and allow_None:
+ return
+ if type(value) is not type_:
+ raise_TypeError(name, type_, value)
+
+
+def check_isinstance(name, type_, value, allow_None=False):
+ assert type(name) is str, TYPE_FORMAT % ('name', str, name)
+ assert type(type_) is type, TYPE_FORMAT % ('type_', type, type_)
+ assert type(allow_None) is bool, TYPE_FORMAT % ('allow_None', bool, allow_None)
+ if value is None and allow_None:
+ return
+ if not isinstance(value, type_):
+ raise_TypeError(name, type_, value)
+
+
class IPAError(Exception):
"""
Use this base class for your custom IPA errors unless there is a