From 47b9e06a3f5018baae6091e88fb8388d2c4b6827 Mon Sep 17 00:00:00 2001 From: LeoQi Date: Fri, 20 Jul 2018 02:36:15 +0800 Subject: function of generating workflow config file in server part of testing-scheduler JIRA BOTTLENECK-233 A module to help generating the config files which are sent to conductor server. Based on these config files, conductor can start a workflow. Change-Id: Ibdd71be6454fe2bd2b8718da0c300827897959e0 Signed-off-by: Zheng Qibin --- .../server/src/conductor_processor/task.py | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 testing-scheduler/server/src/conductor_processor/task.py (limited to 'testing-scheduler/server/src/conductor_processor/task.py') diff --git a/testing-scheduler/server/src/conductor_processor/task.py b/testing-scheduler/server/src/conductor_processor/task.py new file mode 100644 index 00000000..6f25aef8 --- /dev/null +++ b/testing-scheduler/server/src/conductor_processor/task.py @@ -0,0 +1,28 @@ +############################################################################## +# Copyright (c) 2018 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 json +import os + + +class TaskFile(object): + def __init__(self, taskName='task_0'): + self._defaultConfFile = self._getFilePath("defaultTaskFile.json") + with open(self._defaultConfFile) as defaultConf: + self._jsonObj = json.load(defaultConf) + self._jsonObj['name'] = taskName + + def generateFromStep(self, stepObject): + self._jsonObj['name'] = stepObject.getName() + print "taskFile:", self._jsonObj['name'] + return self._jsonObj + + def _getFilePath(self, fileName): + dirPath = os.path.dirname(os.path.realpath(__file__)) + return os.path.join(dirPath, fileName) -- cgit 1.2.3-korg