Salome HOME
0e903e5861f0eedd19d7096fa9ebb7cd80f07ced
[modules/shaper.git] / src / FeaturesPlugin / Test / TestRotation_ErrorMsg.py
1 ## Copyright (C) 2018-20xx  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 from salome.shaper import model
22
23 model.begin()
24 partSet = model.moduleDocument()
25 Part_1 = model.addPart(partSet)
26 Part_1_doc = Part_1.document()
27 Box_1 =model.addBox(Part_1_doc, 10, 10, 10)
28 model.end()
29
30 from ModelAPI import *
31 aSession = ModelAPI_Session.get()
32
33 aShapeToMove = Box_1.feature().lastResult()
34
35 # Verify Rotation errors on low-level
36 aSession.startOperation()
37 aRotation = featureToCompositeFeature(Part_1.feature()).addFeature("Rotation")
38 aRotation.string("CreationMethod").setValue("ByAxisAndAngle")
39 aRotation.execute()
40 aSession.finishOperation()
41 assert(aRotation.error() != "")
42
43 aSession.startOperation()
44 aRotation.selectionList("main_objects").append(aShapeToMove, aShapeToMove.shape())
45 aRotation.execute()
46 aSession.finishOperation()
47 assert(aRotation.error() != "")
48
49 aSession.startOperation()
50 aRotation.selectionList("main_objects").append(None, None)
51 aRotation.execute()
52 aSession.finishOperation()
53 assert(aRotation.error() != "")
54
55 aSession.startOperation()
56 aRotation.string("CreationMethod").setValue("ByThreePoints")
57 aRotation.execute()
58 aSession.finishOperation()
59 assert(aRotation.error() != "")
60
61 aSession.startOperation()
62 aRotation.selectionList("main_objects").removeLast()
63 aRotation.selectionList("main_objects").removeLast()
64 aRotation.execute()
65 aSession.finishOperation()
66 assert(aRotation.error() != "")
67
68 aSession.startOperation()
69 aRotation.selectionList("main_objects").append(aShapeToMove, aShapeToMove.shape())
70 aRotation.string("CreationMethod").setValue("ByAxisAndAngle")
71 aRotation.selection("axis_object").selectSubShape("FACE", "Box_1_1/Back")
72 aRotation.execute()
73 aSession.finishOperation()
74 assert(aRotation.error() != "")
75
76 aSession.startOperation()
77 aRotation.selection("axis_object").selectSubShape("COMPOUND", "Box_1_1/Back")
78 aRotation.execute()
79 aSession.finishOperation()
80 assert(aRotation.error() != "")