blob: 189988ea4137a1cbaef8f68c3240a91de45c54a6 (
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
50
51
52
53
54
55
56
|
import os
import logging
import yaml
from api import ApiResource
from yardstick.common.utils import result_handler
from yardstick.common import constants as consts
from yardstick.benchmark.core.testsuite import Testsuite
from yardstick.benchmark.core import Param
LOG = logging.getLogger(__name__)
LOG.setLevel(logging.DEBUG)
class V2Testsuites(ApiResource):
def get(self):
param = Param({})
testsuite_list = Testsuite().list_all(param)
data = {
'testsuites': testsuite_list
}
return result_handler(consts.API_SUCCESS, data)
def post(self):
return self._dispatch_post()
def create_suite(self, args):
try:
suite_name = args['name']
except KeyError:
return result_handler(consts.API_ERROR, 'name must be provided')
try:
testcases = args['testcases']
except KeyError:
return result_handler(consts.API_ERROR, 'testcases must be provided')
testcases = [{'file_name': '{}.yaml'.format(t)} for t in testcases]
suite = os.path.join(consts.TESTSUITE_DIR, '{}.yaml'.format(suite_name))
suite_content = {
'schema': 'yardstick:suite:0.1',
'name': suite_name,
'test_cases_dir': 'tests/opnfv/test_cases/',
'test_cases': testcases
}
LOG.info('write test suite')
with open(suite, 'w') as f:
yaml.dump(suite_content, f, default_flow_style=False)
return result_handler(consts.API_SUCCESS, {'suite': suite_name})
|