Salome HOME
Merge commit 'refs/tags/V9_2_0^{}'
[modules/shaper.git] / src / FeaturesPlugin / Test / TestMultiTranslation_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 aCompound.selectionList("base_objects").append("Box_1_1", "SOLID")
46 aSession.finishOperation()
47
48
49 aSession.startOperation()
50 aLinearCopy1 = aPart.addFeature("LinearCopy")
51 aLinearCopy1.execute()
52 assert(aLinearCopy1.error() != "")
53 aSession.finishOperation()
54
55 aSession.startOperation()
56 aLinearCopy1.selectionList("main_objects").append("Compound_1_1", "COMPOUND")
57 aLinearCopy1.execute()
58 assert(aLinearCopy1.error() != "")
59 aSession.finishOperation()
60
61 aSession.startOperation()
62 aLinearCopy1.selection("axis_first_dir").selectSubShape("COMPOUND", "Compound_1_1")
63 aLinearCopy1.execute()
64 assert(aLinearCopy1.error() != "")
65 aSession.finishOperation()
66
67 aSession.startOperation()
68 aLinearCopy1.selection("axis_first_dir").selectSubShape("EDGE", "PartSet/OX")
69 aLinearCopy1.integer("nb_first_dir").setValue(2)
70 aLinearCopy1.execute()
71 assert(aLinearCopy1.error() != "")
72 aSession.finishOperation()
73
74
75 aSession.startOperation()
76 aLinearCopy2 = aPart.addFeature("LinearCopy")
77 aLinearCopy2.string("use_second_dir").setValue("true")
78 aLinearCopy2.execute()
79 assert(aLinearCopy2.error() != "")
80 aSession.finishOperation()
81
82 aSession.startOperation()
83 aLinearCopy2.selectionList("main_objects").append("Compound_1_1", "COMPOUND")
84 aLinearCopy2.execute()
85 assert(aLinearCopy2.error() != "")
86 aSession.finishOperation()
87
88 aSession.startOperation()
89 aLinearCopy2.selection("axis_first_dir").selectSubShape("COMPOUND", "Compound_1_1")
90 aLinearCopy2.execute()
91 assert(aLinearCopy2.error() != "")
92 aSession.finishOperation()
93
94 aSession.startOperation()
95 aLinearCopy2.selection("axis_first_dir").selectSubShape("EDGE", "PartSet/OX")
96 aLinearCopy2.selection("axis_second_dir").selectSubShape("COMPOUND", "Compound_1_1")
97 aLinearCopy2.execute()
98 assert(aLinearCopy2.error() != "")
99 aSession.finishOperation()
100
101 aSession.startOperation()
102 aLinearCopy2.selection("axis_second_dir").selectSubShape("EDGE", "PartSet/OY")
103 aLinearCopy2.integer("nb_first_dir").setValue(0)
104 aLinearCopy2.integer("nb_second_dir").setValue(0)
105 aLinearCopy2.execute()
106 assert(aLinearCopy2.error() != "")
107 aSession.finishOperation()
108
109 aSession.startOperation()
110 aLinearCopy2.integer("nb_first_dir").setValue(2)
111 aLinearCopy2.integer("nb_second_dir").setValue(2)
112 aLinearCopy2.execute()
113 assert(aLinearCopy2.error() != "")
114 aSession.finishOperation()