-
-
Notifications
You must be signed in to change notification settings - Fork 386
/
Copy pathtest_exception_handler.py
50 lines (33 loc) · 1.29 KB
/
test_exception_handler.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import hug
import time
base_error_message = "500 Internal Server Error"
friendly_error_message = "Friendly error message"
class BaseError(Exception):
code = 500
message = base_error_message
def __init__(self):
...
def __str__(self):
return self.message
class FriendlyError(BaseError):
message = friendly_error_message
api = hug.API(__name__)
# @hug.exception(UserError, api=api)
def handler_friendly_error(request, response, exception):
# do something
response.status = hug.falcon.HTTP_200
data = dict(data=None, msg=exception.message, timestamp=time.time(), code=exception.code)
response.body = hug.output_format.json(data)
def test_handler_direct_exception():
@hug.object.urls("/test", requires=())
class MyClass(object):
@hug.object.get()
def test(self):
raise FriendlyError()
api.http.add_exception_handler(FriendlyError, handler_friendly_error)
assert hug.test.get(api, "/test").data.get("msg", "") == friendly_error_message
# fix issues: https://github.com/hugapi/hug/issues/911
api.http.add_exception_handler(BaseError, handler_friendly_error)
assert hug.test.get(api, "/test").data.get("msg", "") == friendly_error_message
if __name__ == "__main__":
test_handler_direct_exception()