Salome HOME
updated copyright message
[modules/shaper.git] / src / ModelAPI / Test / TestUndoRedo.py
1 # Copyright (C) 2014-2023  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
20 from ModelAPI import *
21 from GeomDataAPI import *
22
23 aSession = ModelAPI_Session.get()
24 aDoc = aSession.moduleDocument()
25 assert(not aSession.canUndo())
26 assert(not aSession.canRedo())
27
28 aSession.startOperation()
29 aFeature = aDoc.addFeature("Point")
30 geomDataAPI_Point(aFeature.attribute("point3d")).setValue(1., -1., 0.)
31 aFeature.string("creation_method").setValue("by_xyz")
32 aFeatureName = aFeature.name()
33 # "2" is because Origin is the first point
34 assert(aFeatureName == "Point_2")
35
36 aFeature.execute()
37 aSession.finishOperation()
38
39 assert(aDoc.size("Construction") == 8)
40 assert(aSession.canUndo())
41 assert(not aSession.canRedo())
42
43 aSession.undo()
44 assert(aDoc.size("Construction") == 7)
45 assert(not aSession.canUndo())
46 assert(aSession.canRedo())
47
48 aSession.redo()
49 assert(aDoc.size("Construction") == 8)
50 assert(aSession.canUndo())
51 assert(not aSession.canRedo())
52
53 from salome.shaper import model
54 assert(model.checkPythonDump())