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