Salome HOME
Updated copyright comment
[modules/shaper.git] / src / FeaturesPlugin / Test / TestMultiRotation_ErrorMsg.py
1 # Copyright (C) 2018-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
20
21 from ModelAPI import *
22 aSession = ModelAPI_Session.get()
23 aDocument = aSession.moduleDocument()
24
25 # Create a part
26 aSession.startOperation()
27 aPartFeature = aDocument.addFeature("Part")
28 aSession.finishOperation()
29 aPartResult = modelAPI_ResultPart(aPartFeature.firstResult())
30 aPart = aPartResult.partDoc()
31
32 # Create auxiliary box
33 aSession.startOperation()
34 aBox = aPart.addFeature("Box")
35 aBox.string("CreationMethod").setValue("BoxByDimensions")
36 aBox.real("dx").setValue(50)
37 aBox.real("dy").setValue(50)
38 aBox.real("dz").setValue(50)
39 aSession.finishOperation()
40
41 # Create auxiliary compound
42 aSession.startOperation()
43 aCompound = aPart.addFeature("Compound")
44 aCompound.selectionList("base_objects").append("Box_1_1", "SOLID")
45 aSession.finishOperation()
46
47
48 aSession.startOperation()
49 anAngularCopy1 = aPart.addFeature("AngularCopy")
50 anAngularCopy1.execute()
51 assert(anAngularCopy1.error() != "")
52 aSession.finishOperation()
53
54 aSession.startOperation()
55 anAngularCopy1.selectionList("main_objects").append("Compound_1_1", "COMPOUND")
56 anAngularCopy1.execute()
57 assert(anAngularCopy1.error() != "")
58 aSession.finishOperation()
59
60 aSession.startOperation()
61 anAngularCopy1.selection("axis_angular").selectSubShape("COMPOUND", "Compound_1_1")
62 anAngularCopy1.execute()
63 assert(anAngularCopy1.error() != "")
64 aSession.finishOperation()
65
66 aSession.startOperation()
67 anAngularCopy1.selection("axis_angular").selectSubShape("EDGE", "PartSet/OX")
68 anAngularCopy1.integer("nb_angular").setValue(0)
69 anAngularCopy1.execute()
70 assert(anAngularCopy1.error() != "")
71 aSession.finishOperation()