Add API to get the status of async task
[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 import uuid
10 import os
11 import logging
12
13 from api import conf
14 from api.utils import common as common_utils
15
16 logger = logging.getLogger(__name__)
17
18
19 def runTestCase(args):
20     try:
21         opts = args.get('opts', {})
22         testcase = args['testcase']
23     except KeyError:
24         return common_utils.error_handler('Lack of testcase argument')
25
26     testcase = os.path.join(conf.SAMPLE_PATH, testcase + '.yaml')
27
28     task_id = str(uuid.uuid4())
29
30     command_list = ['task', 'start']
31     command_list = common_utils.get_command_list(command_list, opts, testcase)
32     logger.debug('The command_list is: %s', command_list)
33
34     logger.debug('Start to execute command list')
35     common_utils.exec_command_task(command_list, task_id)
36
37     return common_utils.result_handler('success', task_id)