Salome HOME
9eed4741d9d2da1c4347104cf30418bfdaf25808
[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 """Test de la création de surfaces médianes"""
20
21 __revision__ = "V01.03"
22
23 import os
24
25 from ModelAPI import *
26
27 aSession = ModelAPI_Session.get()
28
29 def getFilePath(fileName):
30     """Le fichier décrivant l'objet"""
31     path = os.path.join(os.getenv("SHAPER_ROOT_DIR"), "bin", "salome", "macros", "midSurface")
32     return os.path.join(path, fileName)
33
34 theFile = getFilePath("midSurface.stp")
35 theFile = getFilePath("Objet_1.stp")
36
37 aSession.startOperation("Create part for mid surface")
38 aPartFeature = aSession.moduleDocument().addFeature("Part")
39 aSession.finishOperation()
40 aPart = aSession.activeDocument()
41
42 aSession.startOperation("Import file")
43 aFeatureKind = "midSurface"
44 anImportFeature = aPart.addFeature(aFeatureKind)
45 aFieldName = "file_path"
46 aFile = anImportFeature.string(aFieldName)
47 aFile.setValue(theFile)
48 aSession.finishOperation()
49
50 #print ("Nombre de dossiers : {}".format(aPart.size("Folders")))
51
52 assert(aPart.size("Folders") == 1), "Wrong number of folders: {}".format(aPart.size("Folders"))