X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?p=bottlenecks.git;a=blobdiff_plain;f=test-scheduler%2Fserver%2Fsrc%2Fconductor_processor%2Ftask.py;fp=testing-scheduler%2Fserver%2Fsrc%2Fconductor_processor%2Ftask.py;h=04616adec4293106652aa8abcc315320defea87c;hp=6f25aef8b5855a6c163fcb3dd0e29b2cca6f0d79;hb=e32043f58a2450b6a5986dc2a01f64f8b22c3992;hpb=a09bbea983aca3e437e254566da98196177748d9 diff --git a/testing-scheduler/server/src/conductor_processor/task.py b/test-scheduler/server/src/conductor_processor/task.py similarity index 97% rename from testing-scheduler/server/src/conductor_processor/task.py rename to test-scheduler/server/src/conductor_processor/task.py index 6f25aef8..04616ade 100644 --- a/testing-scheduler/server/src/conductor_processor/task.py +++ b/test-scheduler/server/src/conductor_processor/task.py @@ -1,28 +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) +############################################################################## +# 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)