Salome HOME
Fix for the unit-tests that use not HighAPI pythion interface to create construction...
[modules/shaper.git] / src / ModelAPI / Test / TestFolder_Stability.py
1 ## Copyright (C) 2014-2017  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
18 ## email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 ##
20
21 #=========================================================================
22 # Test checks stability of the foldering mechanism due to incorrect input parameters
23 #=========================================================================
24 from ModelAPI import *
25 from GeomDataAPI import *
26
27 __updated__ = "2017-11-23"
28
29 aSession = ModelAPI_Session.get()
30
31
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()
40     return aPoint
41
42
43 #=========================================================================
44 # Initialization of the model
45 #=========================================================================
46 aSession.startOperation()
47 aPart = aSession.moduleDocument().addFeature("Part")
48 aSession.finishOperation()
49
50 # add point and a folder before it
51 aPartDoc = aSession.activeDocument()
52 aPoint1 = newPoint(aPartDoc, 0., 0., 0.)
53
54 aSession.startOperation()
55 aFolder1 = aPartDoc.addFolder(aPoint1)
56 aSession.finishOperation()
57
58 NB_FEATURES_FULL = 2
59 NB_FEATURES_OUT  = 2
60
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"))
63
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))
70
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)
76
77 aSession.startOperation()
78 aFolder2 = aPartDoc.addFolder(aPoint1)
79 aSession.finishOperation()
80
81 NB_FEATURES_FULL += 1
82 NB_FEATURES_OUT  += 1
83
84 aSession.startOperation()
85 aFolder = aPartDoc.findFolderAbove(toFolder)
86 assert(aFolder is not None)
87 isAdded = aPartDoc.moveToFolder(toFolder, aFolder)
88 aSession.finishOperation()
89 assert(isAdded)
90
91 NB_FEATURES_OUT -= 1
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))