Salome HOME
26a4319c80d4b165d2f8e42bfd151c92594bcf0d
[modules/shaper.git] / test.hdfs / test_hdf.py
1 # Copyright (C) 2014-2021  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 import salome, salome_utils, os, sys
21 import SalomePyQt
22
23 import unittest
24 import subprocess
25
26 import ModelHighAPI, ModelAPI, PartSetAPI
27 from GeomAPI import GeomAPI_Shape
28 from salome.shaper import model
29
30 class TestHDF(unittest.TestCase):
31   testfile = ""
32   reffile = ""
33
34   def setUp(self):
35     salome.standalone()
36     salome.salome_init(self.testfile, embedded=1, forced=True)
37     myStudyName = salome.myStudy._get_Name()
38     self.session = salome.naming_service.Resolve('/Kernel/Session')
39     self.session.emitMessage("connect_to_study")
40
41     self.sg = SalomePyQt.SalomePyQt()
42     self.sg.activateModule("Shaper")
43     self.session = ModelAPI.ModelAPI_Session.get()
44     self.partSet = self.session.moduleDocument()
45
46   def tearDown(self):
47     salome.sg.UpdateView()
48     self.sg.processEvents()
49     salome.sg.FitAll()
50
51   def test_hdf_file(self):
52     self.assertTrue(self.partSet.size("Parts") > 0)
53     aPartsList = dict()
54     for aPartIndex in range(self.partSet.size("Parts")):
55       self.session.startOperation()
56       aPart = ModelAPI.modelAPI_ResultPart(ModelAPI.objectToResult(self.partSet.object("Parts", aPartIndex)))
57       aPart.activate()
58       self.session.finishOperation()
59
60       aPartFeature = PartSetAPI.PartSetAPI_Part(self.partSet.currentFeature(True))
61       aPartsList["Part_{}".format(aPartIndex+1)] = aPartFeature
62
63       self.session.startOperation()
64       self.session.setActiveDocument(self.partSet)
65       self.session.finishOperation()
66
67     # check reference data
68     exec(open(self.reffile, "rb").read(), globals(), aPartsList)
69
70
71 if __name__ == "__main__":
72   if len(sys.argv) > 1:
73     TestHDF.testfile = sys.argv[1]
74   if len(sys.argv) > 2:
75     TestHDF.reffile = sys.argv[2]
76   if len(sys.argv) > 3:
77     errFile = open(sys.argv[3], 'w')
78
79   aTest = unittest.TestLoader().loadTestsFromTestCase(TestHDF)
80   unittest.TextTestRunner(stream=errFile).run(aTest)
81   errFile.close()
82   #import qtsalome
83   #qtsalome.qApp.closeAllWindows()
84   import signal
85   os.kill(os.getpid(),signal.SIGKILL)