Merge "Set a Custom URL for Bifrost Verification Jobs"
[releng.git] / utils / test / testapi / opnfv_testapi / router / url_mappings.py
1 ##############################################################################
2 # Copyright (c) 2015 Orange
3 # guyrodrigue.koffi@orange.com / koffirodrigue@gmail.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 from opnfv_testapi.resources.handlers import VersionHandler
10 from opnfv_testapi.resources.testcase_handlers import TestcaseCLHandler, \
11     TestcaseGURHandler
12 from opnfv_testapi.resources.pod_handlers import PodCLHandler, PodGURHandler
13 from opnfv_testapi.resources.project_handlers import ProjectCLHandler, \
14     ProjectGURHandler
15 from opnfv_testapi.resources.result_handlers import ResultsCLHandler, \
16     ResultsGURHandler
17
18
19 mappings = [
20     # GET /versions => GET API version
21     (r"/versions", VersionHandler),
22
23     # few examples:
24     # GET /api/v1/pods => Get all pods
25     # GET /api/v1/pods/1 => Get details on POD 1
26     (r"/api/v1/pods", PodCLHandler),
27     (r"/api/v1/pods/([^/]+)", PodGURHandler),
28
29     # few examples:
30     # GET /projects
31     # GET /projects/yardstick
32     (r"/api/v1/projects", ProjectCLHandler),
33     (r"/api/v1/projects/([^/]+)", ProjectGURHandler),
34
35     # few examples
36     # GET /projects/qtip/cases => Get cases for qtip
37     (r"/api/v1/projects/([^/]+)/cases", TestcaseCLHandler),
38     (r"/api/v1/projects/([^/]+)/cases/([^/]+)", TestcaseGURHandler),
39
40     # new path to avoid a long depth
41     # GET /results?project=functest&case=keystone.catalog&pod=1
42     #   => get results with optional filters
43     # POST /results =>
44     # Push results with mandatory request payload parameters
45     # (project, case, and pod)
46     (r"/api/v1/results", ResultsCLHandler),
47     (r"/api/v1/results/([^/]+)", ResultsGURHandler),
48 ]