1 # Copyright (C) 2014-2019 CEA/DEN, EDF R&D
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.
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.
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
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 import salome, os, sys
26 import ModelHighAPI, ModelAPI, PartSetAPI
27 from GeomAPI import GeomAPI_Shape
28 from salome.shaper import model
30 class TestHDF(unittest.TestCase):
37 # leave file name only (trim path and extension)
38 fileName = os.path.basename(self.testfile)
39 self.reffile = self.reffile + "/" + os.path.splitext(fileName)[0] + ".py"
41 salome.salome_init(self.testfile, embedded=1)
42 myStudyName = salome.myStudy._get_Name()
43 self.session = salome.naming_service.Resolve('/Kernel/Session')
44 self.session.emitMessage("connect_to_study")
46 self.sg = SalomePyQt.SalomePyQt()
47 self.sg.activateModule("Shaper")
48 self.session = ModelAPI.ModelAPI_Session.get()
49 self.partSet = self.session.moduleDocument()
52 salome.sg.UpdateView()
53 self.sg.processEvents()
56 def test_hdf_file(self):
57 self.assertTrue(self.partSet.size("Parts") > 0)
59 for aPartIndex in range(self.partSet.size("Parts")):
60 self.session.startOperation()
61 aPart = ModelAPI.modelAPI_ResultPart(ModelAPI.objectToResult(self.partSet.object("Parts", aPartIndex)))
63 self.session.finishOperation()
65 aPartFeature = PartSetAPI.PartSetAPI_Part(self.partSet.currentFeature(True))
66 # check reference data
67 exec(open(self.reffile, "rb").read())
70 if __name__ == "__main__":
72 TestHDF.testfile = sys.argv[1]
74 salomePortFile = sys.argv[2]
76 errFile = open(sys.argv[3], 'w')
78 salomeKernelDir = sys.argv[4]
80 TestHDF.reffile = sys.argv[5]
82 aTest = unittest.TestLoader().loadTestsFromTestCase(TestHDF)
83 unittest.TextTestRunner(stream=errFile).run(aTest)
87 proc = subprocess.Popen(salomeKernelDir + "/bin/salome/killSalome.py")
90 os.remove(salomePortFile)
92 print("Cannot remove file", file=f)