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