diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-03-30 15:33:19 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-03-30 15:36:50 +0800 |
commit | b9e0948256af817e63f901ec5277d3ef9fe36fdd (patch) | |
tree | c528e079c1e2eb05fcb742d64a71090797123023 /utils/test/testapi/opnfv_testapi/common/raises.py | |
parent | 6f84a256bbe92cf3f9f746ca0972abd9942bad43 (diff) |
unify raise exception process
Change-Id: I109ef9550a57e218b6f5c9196812b33133d34134
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/common/raises.py')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/common/raises.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/utils/test/testapi/opnfv_testapi/common/raises.py b/utils/test/testapi/opnfv_testapi/common/raises.py new file mode 100644 index 000000000..ed3a84ee0 --- /dev/null +++ b/utils/test/testapi/opnfv_testapi/common/raises.py @@ -0,0 +1,31 @@ +import httplib + +from tornado import web + + +class Raiser(object): + code = httplib.OK + + def __init__(self, reason): + raise web.HTTPError(self.code, reason) + + +class BadRequest(Raiser): + code = httplib.BAD_REQUEST + + +class Forbidden(Raiser): + code = httplib.FORBIDDEN + + +class NotFound(Raiser): + code = httplib.NOT_FOUND + + +class Unauthorized(Raiser): + code = httplib.UNAUTHORIZED + + +class CodeTBD(object): + def __init__(self, code, reason): + raise web.HTTPError(code, reason) |