summaryrefslogtreecommitdiffstats
path: root/utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py
diff options
context:
space:
mode:
authorSerenaFeng <feng.xiaowei@zte.com.cn>2016-05-11 11:48:06 +0800
committerSerena Feng <feng.xiaowei@zte.com.cn>2016-05-11 09:28:03 +0000
commit5993262403014cfd053783cca1ac646089101cc0 (patch)
tree1d83460b35c8b431a364eb464b5cf4dd953906bb /utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py
parentaccf6fb545a8c406cc5cb3f6c6f502d7419fb7b9 (diff)
integration of tornado and swagger-ui
this code will be applied to testApi later, as regards how to use it, please refer utils/test/result_collection_api/tornado_swagger_ui/README.md JIRA: FUNCTEST-247 Change-Id: Ie40e125846add7ceda15f05a38232dc8813b8f29 Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py')
-rw-r--r--utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py b/utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py
new file mode 100644
index 000000000..bd70c179f
--- /dev/null
+++ b/utils/test/result_collection_api/tornado_swagger_ui/tornado_swagger/settings.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+import os.path
+
+__author__ = 'serena'
+
+SWAGGER_VERSION = '1.2'
+
+URL_SWAGGER_API_DOCS = 'swagger-api-docs'
+URL_SWAGGER_API_LIST = 'swagger-api-list'
+URL_SWAGGER_API_SPEC = 'swagger-api-spec'
+
+STATIC_PATH = os.path.join(os.path.dirname(os.path.normpath(__file__)), 'static')
+
+default_settings = {
+ 'base_url': '/',
+ 'static_path': STATIC_PATH,
+ 'swagger_prefix': '/swagger',
+ 'api_version': 'v1.0',
+ 'api_key': '',
+ 'enabled_methods': ['get', 'post', 'put', 'patch', 'delete'],
+ 'exclude_namespaces': [],
+}
+
+models = []