Salome HOME
721dde6eb29726699d83e7a80a4a771ab0d2c547
[modules/shaper.git] / src / BuildPlugin / Test / TestWire_ErrorMsg.py
1 # Copyright (C) 2017-2023  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 email : webmaster.salome@opencascade.com
18 #
19
20 from ModelAPI import *
21 aSession = ModelAPI_Session.get()
22 aDocument = aSession.moduleDocument()
23
24 # Create a part
25 aSession.startOperation()
26 aPartFeature = aDocument.addFeature("Part")
27 aSession.finishOperation()
28 aPartResult = modelAPI_ResultPart(aPartFeature.firstResult())
29 aPart = aPartResult.partDoc()
30
31 # Create auxiliary box
32 aSession.startOperation()
33 aBox = aPart.addFeature("Box")
34 aBox.string("CreationMethod").setValue("BoxByDimensions")
35 aBox.real("dx").setValue(50)
36 aBox.real("dy").setValue(50)
37 aBox.real("dz").setValue(50)
38 aSession.finishOperation()
39 aBoxResult = aBox.firstResult()
40 aBoxShape = aBoxResult.shape()
41
42 aSession.startOperation()
43 Wire_1 = aPart.addFeature("Wire")
44 Wire_1.execute()
45 assert(Wire_1.error() != "")
46 aSession.finishOperation()
47
48 aSession.startOperation()
49 aBaseObjectsList = Wire_1.selectionList("base_objects")
50 aBaseObjectsList.append("[Box_1_1/Left][Box_1_1/Top]", "EDGE")
51 aBaseObjectsList.append("[Box_1_1/Right][Box_1_1/Top]", "EDGE")
52 Wire_1.execute()
53 assert(Wire_1.error() != "")
54 aSession.finishOperation()
55
56
57 from salome.shaper import model
58
59 model.begin()
60 partSet = model.moduleDocument()
61 Part_1 = model.addPart(partSet)
62 Part_1_doc = Part_1.document()
63 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
64
65 Wire_1 = model.addWire(Part_1_doc, [])
66 Wire_1.addContour()
67 Part_1_doc.removeFeature(Wire_1.feature())
68
69 Wire_1 = model.addWire(Part_1_doc, [model.selection("EDGE", "[Box_1_1/Left][Box_1_1/Top]")])
70 Wire_1.addContour()
71 Part_1_doc.removeFeature(Wire_1.feature())
72
73 Wire_1 = model.addWire(Part_1_doc, [model.selection("FACE", "Box_1_1/Top")])
74 Wire_1.addContour()
75 Part_1_doc.removeFeature(Wire_1.feature())
76
77 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
78 SketchLine_1 = Sketch_1.addLine(26.2037104714363, 14.67693246486999, 44.63854591961698, 30.23007341140914)
79 SketchLine_2 = Sketch_1.addLine(44.63854591961698, 30.23007341140914, 20.93564110678636, 53.45762191102688)
80 SketchConstraintCoincidence_5 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
81 model.do()
82
83 Wire_1 = model.addWire(Part_1_doc, [model.selection("EDGE", "Sketch_1/SketchLine_1")])
84 Wire_1.addContour()
85 Part_1_doc.removeFeature(Wire_1.feature())
86
87 model.end()