Salome HOME
Simple fix for 40160 [CEA] No name in SHAPER
[modules/shaper.git] / test.hdfs / Test40160_NoName.py
1 # Copyright (C) 2020-2024  CEA, EDF
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 from ModelAPI import *
20 from GeomDataAPI import *
21 from GeomAlgoAPI import *
22 from GeomAPI import *
23 import sys
24 import os
25
26 if __name__ == "__main__":
27   session = ModelAPI.ModelAPI_Session.get()
28   aPartSet = session.moduleDocument()
29
30   for aPartIndex in range(aPartSet.size("Parts")):
31     session.startOperation()
32     aPart = ModelAPI.modelAPI_ResultPart(ModelAPI.objectToResult(aPartSet.object("Parts", aPartIndex)))
33     aPart.activate()
34     session.finishOperation()
35      
36     session.startOperation()
37     session.setActiveDocument(aPartSet)
38     session.finishOperation()
39     
40     Part_1_doc = aPart.partDoc()
41     for aFeat in Part_1_doc.allFeatures():
42       if aFeat.isInHistory():
43         if(aFeat.data().name() == "Extrusion_1"):
44           aSelectionList = aFeat.selectionList("base")
45           for index in range(0, aSelectionList.size()):
46             attrSelection = aSelectionList.value(index)
47             shape = attrSelection.value()
48             name = attrSelection.namingName()
49             assert(name)