Mercurial > repos > yufei-luo > s_mart
comparison commons/core/utils/PipelineStepFTests.py @ 38:2c0c0a89fad7
Uploaded
author | m-zytnicki |
---|---|
date | Thu, 02 May 2013 09:56:47 -0400 |
parents | 769e306b7933 |
children |
comparison
equal
deleted
inserted
replaced
37:d22fadc825e3 | 38:2c0c0a89fad7 |
---|---|
1 #!/usr/bin/env python | |
2 | |
3 # Copyright INRA (Institut National de la Recherche Agronomique) | |
4 # http://www.inra.fr | |
5 # http://urgi.versailles.inra.fr | |
6 # | |
7 # This software is governed by the CeCILL license under French law and | |
8 # abiding by the rules of distribution of free software. You can use, | |
9 # modify and/ or redistribute the software under the terms of the CeCILL | |
10 # license as circulated by CEA, CNRS and INRIA at the following URL | |
11 # "http://www.cecill.info". | |
12 # | |
13 # As a counterpart to the access to the source code and rights to copy, | |
14 # modify and redistribute granted by the license, users are provided only | |
15 # with a limited warranty and the software's author, the holder of the | |
16 # economic rights, and the successive licensors have only limited | |
17 # liability. | |
18 # | |
19 # In this respect, the user's attention is drawn to the risks associated | |
20 # with loading, using, modifying and/or developing or reproducing the | |
21 # software by the user in light of its specific status of free software, | |
22 # that may mean that it is complicated to manipulate, and that also | |
23 # therefore means that it is reserved for developers and experienced | |
24 # professionals having in-depth computer knowledge. Users are therefore | |
25 # encouraged to load and test the software's suitability as regards their | |
26 # requirements in conditions enabling the security of their systems and/or | |
27 # data to be ensured and, more generally, to use and operate it in the | |
28 # same conditions as regards security. | |
29 # | |
30 # The fact that you are presently reading this means that you have had | |
31 # knowledge of the CeCILL license and that you accept its terms. | |
32 | |
33 import sys | |
34 import os | |
35 import shutil | |
36 from commons.core.utils.FileUtils import FileUtils | |
37 | |
38 class PipelineStepFTests(object): | |
39 | |
40 def __init__(self, pipelineName, packageDir, workingDir, projectName, config = "", clean = True): | |
41 self._pipelineName = pipelineName | |
42 self._packageDir = packageDir | |
43 self._workingDir = workingDir | |
44 self._projectName = projectName | |
45 self._clean = clean | |
46 self._configFileName = config | |
47 | |
48 def run(self): | |
49 self.launchStep() | |
50 self.assertStep() | |
51 | |
52 # def replaceInFile(self, fileName, oldPattern, newPattern, newFileName = ""): | |
53 # if newFileName == "": | |
54 # newFileName = "%s.new" % fileName | |
55 # f = open(newFileName, "w") | |
56 # for line in fileinput.input(fileName, inplace=1): | |
57 # newLine = line.replace(oldPattern, newPattern) | |
58 # f.write(newLine) | |
59 # f.close() | |
60 # fileinput.close() | |
61 | |
62 def _checkIfFileExist(self, fileName): | |
63 if not FileUtils.isRessourceExists(fileName): | |
64 print "%s do not exists\n" % fileName | |
65 return False | |
66 return True | |
67 | |
68 def _printMessageAndClean(self, msg): | |
69 print "%s in %s functional test\n" % (msg, self._pipelineName) | |
70 sys.stdout.flush() | |
71 os.chdir("../") | |
72 if self._clean: | |
73 shutil.rmtree(self._workingDir) | |
74 | |
75 def _areTwoFilesIdenticalByScript( self, expFileName, obsFileName, scriptName): | |
76 cmd = "%s -v 1 -r %s -t %s 2>/dev/null" % (scriptName, expFileName, obsFileName) | |
77 log = os.system(cmd) | |
78 print | |
79 sys.stdout.flush() | |
80 if log != 0: | |
81 return False | |
82 else: | |
83 return True |