diff options
author | Rex Lee <limingjiang@huawei.com> | 2017-07-12 01:35:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-07-12 01:35:03 +0000 |
commit | 7949507437f8b1b1d9100bd13cf2d90bae60279d (patch) | |
tree | f6030e60eeeebeae7670f2022c06f13296c6bb2a /api/resources/case_docs.py | |
parent | 7ee54db221fbb4173de011585a425f0750dd6ccf (diff) | |
parent | 0d18f9d3299480cb43e6b335180e5cbdb58505c3 (diff) |
Merge "Yardstick API architecture improvement"
Diffstat (limited to 'api/resources/case_docs.py')
-rw-r--r-- | api/resources/case_docs.py | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/api/resources/case_docs.py b/api/resources/case_docs.py deleted file mode 100644 index 289410d2d..000000000 --- a/api/resources/case_docs.py +++ /dev/null @@ -1,30 +0,0 @@ -import os -import logging - -from api.utils.common import result_handler -from yardstick.common import constants as consts - -LOG = logging.getLogger(__name__) -LOG.setLevel(logging.DEBUG) - - -def default(args): - return get_case_docs(args) - - -def get_case_docs(args): - try: - case_name = args['case_name'] - except KeyError: - return result_handler(consts.API_ERROR, 'case_name must be provided') - - docs_path = os.path.join(consts.DOCS_DIR, '{}.rst'.format(case_name)) - - if not os.path.exists(docs_path): - return result_handler(consts.API_ERROR, 'case not exists') - - LOG.info('Reading %s', case_name) - with open(docs_path) as f: - content = f.read() - - return result_handler(consts.API_SUCCESS, {'docs': content}) |