1 ## Copyright (C) 2014-2017 CEA/DEN, EDF R&D
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.
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.
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
17 ## See http:##www.salome-platform.org/ or
18 ## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
21 #=========================================================================
22 # Test checks stability of the foldering mechanism due to incorrect input parameters
23 #=========================================================================
24 from ModelAPI import *
25 from GeomDataAPI import *
27 __updated__ = "2017-11-23"
29 aSession = ModelAPI_Session.get()
32 def newPoint(theDocument, theX, theY, theZ):
33 aSession.startOperation()
34 aPoint = theDocument.addFeature("Point")
35 aPointData = aPoint.data()
36 assert(aPointData is not None)
37 geomDataAPI_Point(aPointData.attribute("point3d")).setValue(theX, theY, theZ)
38 aPointData.string("creation_method").setValue("by_xyz")
39 aSession.finishOperation()
43 #=========================================================================
44 # Initialization of the model
45 #=========================================================================
46 aSession.startOperation()
47 aPart = aSession.moduleDocument().addFeature("Part")
48 aSession.finishOperation()
50 # add point and a folder before it
51 aPartDoc = aSession.activeDocument()
52 aPoint1 = newPoint(aPartDoc, 0., 0., 0.)
54 aSession.startOperation()
55 aFolder1 = aPartDoc.addFolder(aPoint1)
56 aSession.finishOperation()
61 assert(aPartDoc.size("Folders") == 1), "Wrong number of folders: {}".format(aPartDoc.size("Folders"))
62 assert(aPartDoc.size("Features") == NB_FEATURES_FULL), "Wrong number of features: {}".format(aPartDoc.size("Features"))
64 #=========================================================================
65 # Test 1. Check number of features out of folder
66 # and absense of the crash while getting size of incorrect group
67 #=========================================================================
68 assert(aPartDoc.size("Features", True) == NB_FEATURES_OUT), "Wrong number of features: {}, expected: {}".format(aPartDoc.size("Features", True), NB_FEATURES_OUT)
69 assert(aPartDoc.size("Construction", True) == 1), "Wrong size: {}".format(aPartDoc.size("Construction", True))
71 #=========================================================================
72 # Test 2. Add a feature to the folder and check number of features once again
73 #=========================================================================
74 toFolder = FeatureList()
75 toFolder.append(aPoint1)
77 aSession.startOperation()
78 aFolder2 = aPartDoc.addFolder(aPoint1)
79 aSession.finishOperation()
84 aSession.startOperation()
85 aFolder = aPartDoc.findFolderAbove(toFolder)
86 assert(aFolder is not None)
87 isAdded = aPartDoc.moveToFolder(toFolder, aFolder)
88 aSession.finishOperation()
92 assert(aPartDoc.size("Features", True) == NB_FEATURES_OUT), "Wrong number of features: {}, expected: {}".format(aPartDoc.size("Features", True), NB_FEATURES_OUT)
93 assert(aPartDoc.size("Construction", True) == 1), "Wrong size: {}".format(aPartDoc.size("Construction", True))