]> SALOME platform Git repositories - modules/shaper.git/blob - src/ConstructionPlugin/Test/TestPlane_ErrorMsg.py
Salome HOME
506b78b1a010331fe32f31cb7c03d7fe71c5d324
[modules/shaper.git] / src / ConstructionPlugin / Test / TestPlane_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
22 from ModelAPI import *
23 aSession = ModelAPI_Session.get()
24 aDocument = aSession.moduleDocument()
25
26 # Create a part
27 aSession.startOperation()
28 aPartFeature = aDocument.addFeature("Part")
29 aSession.finishOperation()
30 aPartResult = modelAPI_ResultPart(aPartFeature.firstResult())
31 aPart = aPartResult.partDoc()
32
33 # Create auxiliary box
34 aSession.startOperation()
35 aBox = aPart.addFeature("Box")
36 aBox.string("CreationMethod").setValue("BoxByDimensions")
37 aBox.real("dx").setValue(50)
38 aBox.real("dy").setValue(50)
39 aBox.real("dz").setValue(50)
40 aSession.finishOperation()
41
42 # Create auxiliary compound
43 aSession.startOperation()
44 aCompound = aPart.addFeature("Compound")
45 aCompoundList = aCompound.selectionList("base_objects")
46 aCompoundList.append("Box_1_1/Front", "FACE")
47 aCompoundList.append("[Box_1_1/Left][Box_1_1/Top]", "EDGE")
48 aSession.finishOperation()
49
50 # Create auxiliary box 2
51 aSession.startOperation()
52 aBox = aPart.addFeature("Box")
53 aBox.string("CreationMethod").setValue("BoxByDimensions")
54 aBox.real("dx").setValue(50)
55 aBox.real("dy").setValue(50)
56 aBox.real("dz").setValue(50)
57 aSession.finishOperation()
58
59 # Create auxiliary compound 2
60 aSession.startOperation()
61 aCompound = aPart.addFeature("Compound")
62 aCompoundList = aCompound.selectionList("base_objects")
63 aCompoundList.append("[Box_2_1/Left][Box_2_1/Top]", "EDGE")
64 aCompoundList.append("Box_2_1/Front", "FACE")
65 aSession.finishOperation()
66
67
68 # Plane by line and point
69 aSession.startOperation()
70 Plane_1 = aPart.addFeature("Plane")
71 Plane_1.string("creation_method").setValue("by_line_and_point")
72 Plane_1.selection("line").selectSubShape("COMPOUND", "Compound_1_1")
73 Plane_1.selection("point").selectSubShape("VERTEX", "PartSet/Origin")
74 Plane_1.execute()
75 assert(Plane_1.error() != "")
76 aSession.finishOperation()
77
78 # Unsupported type
79 aSession.startOperation()
80 Plane_1.string("creation_method").setValue("by_rotation")
81 Plane_1.selection("plane").selectSubShape("COMPOUND", "Compound_1_1")
82 Plane_1.selection("axis").selectSubShape("COMPOUND", "Compound_1_1")
83 Plane_1.execute()
84 assert(Plane_1.error() != "")
85 aSession.finishOperation()
86
87 # By two parallel planes
88 aSession.startOperation()
89 Plane_1.string("creation_method").setValue("by_two_parallel_planes")
90 Plane_1.selection("plane1").selectSubShape("COMPOUND", "Compound_2_1")
91 Plane_1.selection("plane2").selectSubShape("COMPOUND", "Compound_2_1")
92 Plane_1.execute()
93 assert(Plane_1.error() != "")
94 aSession.finishOperation()
95
96 aSession.startOperation()
97 Plane_1.selection("plane1").selectSubShape("COMPOUND", "Compound_1_1")
98 Plane_1.execute()
99 assert(Plane_1.error() != "")
100 aSession.finishOperation()
101
102 # By distance from other plane
103 aSession.startOperation()
104 Plane_1.string("creation_method").setValue("by_other_plane")
105 Plane_1.string("by_other_plane_option").setValue("by_distance_from_other")
106 Plane_1.selection("plane").selectSubShape("COMPOUND", "Compound_2_1")
107 Plane_1.real("distance").setValue(10)
108 Plane_1.execute()
109 assert(Plane_1.error() != "")
110 aSession.finishOperation()
111
112 # By coincident point
113 aSession.startOperation()
114 Plane_1.string("by_other_plane_option").setValue("by_coincident_to_point")
115 Plane_1.selection("coincident_point").selectSubShape("COMPOUND", "Compound_1_1")
116 Plane_1.execute()
117 assert(Plane_1.error() != "")
118 aSession.finishOperation()
119
120 # By rotation
121 aSession.startOperation()
122 Plane_1.string("by_other_plane_option").setValue("by_rotation")
123 Plane_1.selection("axis").selectSubShape("COMPOUND", "Compound_1_1")
124 Plane_1.real("angle").setValue(90)
125 Plane_1.execute()
126 assert(Plane_1.error() != "")
127 aSession.finishOperation()
128
129 aSession.startOperation()
130 Plane_1.selection("plane").selectSubShape("COMPOUND", "Compound_1_1")
131 Plane_1.execute()
132 assert(Plane_1.error() != "")
133 aSession.finishOperation()