aboutsummaryrefslogtreecommitdiffstats
path: root/api/views.py
blob: ee13b47a9f42b98c021e46cbc8f10cd9a7361647 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
##############################################################################
# Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
#
# 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 logging
import os

from flasgger.utils import swag_from

from api.base import ApiResource
from api.swagger import models

logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)


TestCaseActionModel = models.TestCaseActionModel
TestCaseActionArgsModel = models.TestCaseActionArgsModel
TestCaseActionArgsOptsModel = models.TestCaseActionArgsOptsModel
TestCaseActionArgsOptsTaskArgModel = models.TestCaseActionArgsOptsTaskArgModel


class ReleaseAction(ApiResource):
    @swag_from(os.getcwd() + '/swagger/docs/testcases.yaml')
    def post(self):
        return self._dispatch_post()


class SamplesAction(ApiResource):
    def post(self):
        return self._dispatch_post()


ResultModel = models.ResultModel


class Results(ApiResource):
    @swag_from(os.getcwd() + '/swagger/docs/results.yaml')
    def get(self):
        return self._dispatch_get()


class EnvAction(ApiResource):
    def post(self):
        return self._dispatch_post()