]> SALOME platform Git repositories - modules/shaper.git/blob - test.hdfs/testme.py
Salome HOME
395c6c0629e9f95251af4103a17005cdcfe16fcd
[modules/shaper.git] / test.hdfs / testme.py
1 # Copyright (C) 2020  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 #!/usr/bin/env python
21
22 if __name__ == '__main__':
23
24   import subprocess
25   from time import sleep
26   import sys, os
27
28   salomeKernelDir = sys.argv[1]
29   sourceDir = sys.argv[2]
30   testfile = sys.argv[3]
31
32   portlogfile = os.getcwd() + "/.salome_port"
33   testlogfile = os.getcwd() + "/test.log"
34   # remove port file if any
35   try:
36     os.remove(portlogfile)
37   except:
38     pass
39
40   isOk = True
41   error = ""
42
43   proc = subprocess.Popen([salomeKernelDir + "/bin/salome/runSalome.py", "--modules", "SHAPER,GEOM", "--gui", "--splash", "0", "--ns-port-log=" + portlogfile, sourceDir + "/test_hdf.py", "args:" + testfile + "," + portlogfile + "," + testlogfile + "," + salomeKernelDir + "," + sourceDir], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
44   try:
45     proc.communicate(timeout = 600)
46   except TimeoutExpired:
47     isOk = False
48     proc.kill()
49     out, err = proc.communicate()
50     error = "Killed by CPU limit."
51     print(err)
52
53   with open(testlogfile, 'r') as inputFile:
54     s = inputFile.read()
55     print(s)
56     isOk = isOk and s.find("FAIL") < 0
57   try:
58     os.remove(testlogfile)
59   except:
60     pass
61
62   assert isOk, "Test failed. {}".format(error)