From 181a92a905289d855c37898dbd85291069b3d027 Mon Sep 17 00:00:00 2001 From: SerenaFeng Date: Wed, 10 May 2017 14:03:38 +0800 Subject: leverage tornado framework to simply impl of TestAPI 1) make better use of initialize() method 2) better naming global arguments Change-Id: I89dc72a358bcb2a5688a1ffeb3ed5d735d875a4a Signed-off-by: SerenaFeng --- testapi/opnfv_testapi/tornado_swagger/settings.py | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'testapi/opnfv_testapi/tornado_swagger/settings.py') diff --git a/testapi/opnfv_testapi/tornado_swagger/settings.py b/testapi/opnfv_testapi/tornado_swagger/settings.py index 7530297..03e9bbd 100644 --- a/testapi/opnfv_testapi/tornado_swagger/settings.py +++ b/testapi/opnfv_testapi/tornado_swagger/settings.py @@ -8,25 +8,21 @@ ############################################################################## import os.path -SWAGGER_VERSION = '1.2' -SWAGGER_API_DOCS = 'swagger-api-docs' -SWAGGER_RESOURCE_LISTING = 'swagger-resource-listing' -SWAGGER_API_DECLARATION = 'swagger-api-declaration' +API_DOCS_NAME = 'swagger-api-docs' +RESOURCE_LISTING_NAME = 'swagger-resource-listing' +API_DECLARATION_NAME = 'swagger-api-declaration' STATIC_PATH = os.path.join(os.path.dirname(os.path.normpath(__file__)), 'static') -default_settings = { +docs_settings = { 'base_url': '', 'static_path': STATIC_PATH, 'swagger_prefix': '/swagger', 'api_version': 'v1.0', + 'swagger_version': '1.2', 'api_key': '', 'enabled_methods': ['get', 'post', 'put', 'patch', 'delete'], 'exclude_namespaces': [], } models = [] - - -def basePath(): - return default_settings.get('base_url') -- cgit 1.2.3-korg