Merge "Setup yardstick_virtual environments for Network Service Testing"
[yardstick.git] / api / resources / samples_action.py
1 ##############################################################################
2 # Copyright (c) 2016 Huawei Technologies Co.,Ltd and others.
3 #
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 __future__ import absolute_import
10 import uuid
11 import os
12 import logging
13
14 from api import conf
15 from api.utils import common as common_utils
16
17 logger = logging.getLogger(__name__)
18
19
20 def runTestCase(args):
21     try:
22         opts = args.get('opts', {})
23         testcase_name = args['testcase']
24     except KeyError:
25         return common_utils.error_handler('Lack of testcase argument')
26
27     testcase = os.path.join(conf.SAMPLE_PATH, testcase_name + '.yaml')
28
29     task_id = str(uuid.uuid4())
30
31     command_list = ['task', 'start']
32     command_list = common_utils.get_command_list(command_list, opts, testcase)
33     logger.debug('The command_list is: %s', command_list)
34
35     logger.debug('Start to execute command list')
36     task_dict = {
37         'task_id': task_id,
38         'details': testcase_name
39     }
40     common_utils.exec_command_task(command_list, task_dict)
41
42     return common_utils.result_handler('success', task_id)