Salome HOME
corrections
[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 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 print ("theFile = {}".format(theFile))
33
34 print ("Create part for mid surface")
35 aSession.startOperation("Create part for mid surface")
36 aPartFeature = aSession.moduleDocument().addFeature("Part")
37 aSession.finishOperation()
38 aPart = aSession.activeDocument()
39
40 print ("Import file")
41 aSession.startOperation("Import file")
42 aFeatureKind = "midSurface"
43 anImportFeature = aPart.addFeature(aFeatureKind)
44 aFieldName = "file_path"
45 aFile = anImportFeature.string(aFieldName)
46 aFile.setValue(theFile)
47 aSession.finishOperation()
48
49 print ("\nNombre de dossiers : {}".format(aPart.size("Folders")))
50
51 assert(aPart.size("Folders") == 1), "Wrong number of folders: {}".format(aPart.size("Folders"))