Salome HOME
77c56a38d08f25057d6ee7337ad2c4620c5ffc06
[modules/shaper.git] / src / PythonAddons / Test / TestmidSurface_1.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 from salome.shaper import model
21 from ModelAPI import *
22
23 import os
24
25 aSession = ModelAPI_Session.get()
26
27 def getFilePath(fileName):
28     path = os.path.join(os.getenv("SHAPER_ROOT_DIR"), "bin", "salome", "macros", "midSurface")
29     return os.path.join(path, fileName)
30
31 theFile = getFilePath("midSurface.stp")
32
33 aSession.startOperation("Create part for mid surface")
34 aPartFeature = aSession.moduleDocument().addFeature("Part")
35 aSession.finishOperation()
36 aPart = aSession.activeDocument()
37
38 aSession.startOperation("Import file")
39 aFeatureKind = "midSurface"
40 anImportFeature = aPart.addFeature(aFeatureKind)
41 aFieldName = "file_path"
42 aFile = anImportFeature.string(aFieldName)
43 aFile.setValue(theFile)
44 aSession.finishOperation()
45
46 #for cle in ("Bodies", "Groups", "Construction", "Folders"):
47   #print (cle,":",aPart.size(cle))
48
49 assert(aPart.size("Bodies") == 8), "Right number of construction: {}".format(aPart.size("Bodies"))
50 assert(aPart.size("Construction") == 7), "Right number of construction: {}".format(aPart.size("Construction"))
51 assert(aPart.size("Groups") == 2), "Right number of construction: {}".format(aPart.size("Groups"))
52 assert(aPart.size("Folders") == 4), "Wrong number of folders: {}".format(aPart.size("Folders"))