diff options
author | 2017-11-10 15:43:35 -0800 | |
---|---|---|
committer | 2017-11-10 15:45:32 -0800 | |
commit | f11f26d23dabde24b0bcd67ac81b094aa89eb6c9 (patch) | |
tree | 500546f6f553b049eb9ac146e7c8359d073fbf7a /utils/test/testapi/opnfv_testapi/router | |
parent | 122cf34bf3e656e1b7fa35e07dd8a71e42ed4d59 (diff) |
Remove 'utils/test' Directory and update INFO
utils/test has been migrated to the releng-testresults repo
Change-Id: If14a30e6abed1424d1e00b0fae048b7d869ec99b
Signed-off-by: Trevor Bramwell <tbramwell@linuxfoundation.org>
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/router')
-rw-r--r-- | utils/test/testapi/opnfv_testapi/router/__init__.py | 9 | ||||
-rw-r--r-- | utils/test/testapi/opnfv_testapi/router/url_mappings.py | 84 |
2 files changed, 0 insertions, 93 deletions
diff --git a/utils/test/testapi/opnfv_testapi/router/__init__.py b/utils/test/testapi/opnfv_testapi/router/__init__.py deleted file mode 100644 index 3fc79f1d5..000000000 --- a/utils/test/testapi/opnfv_testapi/router/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -############################################################################## -# Copyright (c) 2016 ZTE Corporation -# feng.xiaowei@zte.com.cn -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## -__author__ = 'serena' diff --git a/utils/test/testapi/opnfv_testapi/router/url_mappings.py b/utils/test/testapi/opnfv_testapi/router/url_mappings.py deleted file mode 100644 index 349d55771..000000000 --- a/utils/test/testapi/opnfv_testapi/router/url_mappings.py +++ /dev/null @@ -1,84 +0,0 @@ -############################################################################## -# Copyright (c) 2015 Orange -# guyrodrigue.koffi@orange.com / koffirodrigue@gmail.com -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## -import tornado.web - -from opnfv_testapi.common.config import CONF -from opnfv_testapi.handlers import base_handlers -from opnfv_testapi.handlers import pod_handlers -from opnfv_testapi.handlers import project_handlers -from opnfv_testapi.handlers import result_handlers -from opnfv_testapi.handlers import root_handlers -from opnfv_testapi.handlers import scenario_handlers -from opnfv_testapi.handlers import sign_handlers -from opnfv_testapi.handlers import testcase_handlers -from opnfv_testapi.handlers import user_handlers - -mappings = [ - # GET /versions => GET API version - (r"/versions", base_handlers.VersionHandler), - - # few examples: - # GET /api/v1/pods => Get all pods - # GET /api/v1/pods/1 => Get details on POD 1 - (r"/api/v1/pods", pod_handlers.PodCLHandler), - (r"/api/v1/pods/([^/]+)", pod_handlers.PodGURHandler), - - # few examples: - # GET /projects - # GET /projects/yardstick - (r"/api/v1/projects", project_handlers.ProjectCLHandler), - (r"/api/v1/projects/([^/]+)", project_handlers.ProjectGURHandler), - - # few examples - # GET /projects/qtip/cases => Get cases for qtip - (r"/api/v1/projects/([^/]+)/cases", testcase_handlers.TestcaseCLHandler), - (r"/api/v1/projects/([^/]+)/cases/([^/]+)", - testcase_handlers.TestcaseGURHandler), - - # new path to avoid a long depth - # GET /results?project=functest&case=keystone.catalog&pod=1 - # => get results with optional filters - # POST /results => - # Push results with mandatory request payload parameters - # (project, case, and pod) - (r"/api/v1/results", result_handlers.ResultsCLHandler), - (r'/api/v1/results/upload', result_handlers.ResultsUploadHandler), - (r"/api/v1/results/([^/]+)", result_handlers.ResultsGURHandler), - - # scenarios - (r"/api/v1/scenarios", scenario_handlers.ScenariosCLHandler), - (r"/api/v1/scenarios/([^/]+)", scenario_handlers.ScenarioGURHandler), - (r"/api/v1/scenarios/([^/]+)/scores", - scenario_handlers.ScenarioScoresHandler), - (r"/api/v1/scenarios/([^/]+)/trust_indicators", - scenario_handlers.ScenarioTIsHandler), - (r"/api/v1/scenarios/([^/]+)/customs", - scenario_handlers.ScenarioCustomsHandler), - (r"/api/v1/scenarios/([^/]+)/projects", - scenario_handlers.ScenarioProjectsHandler), - (r"/api/v1/scenarios/([^/]+)/owner", - scenario_handlers.ScenarioOwnerHandler), - (r"/api/v1/scenarios/([^/]+)/versions", - scenario_handlers.ScenarioVersionsHandler), - (r"/api/v1/scenarios/([^/]+)/installers", - scenario_handlers.ScenarioInstallersHandler), - - # static path - (r'/(.*\.(css|png|gif|js|html|json|map|woff2|woff|ttf))', - tornado.web.StaticFileHandler, - {'path': CONF.ui_static_path}), - - (r'/', root_handlers.RootHandler), - (r'/api/v1/auth/signin', sign_handlers.SigninHandler), - (r'/{}'.format(CONF.lfid_signin_return), - sign_handlers.SigninReturnHandler), - (r'/api/v1/auth/signout', sign_handlers.SignoutHandler), - (r'/api/v1/profile', user_handlers.UserHandler), - -] |