Salome HOME
Merge commit 'refs/tags/V9_2_0^{}'
[modules/shaper.git] / src / BuildPlugin / Test / TestWire_ErrorMsg.py
1 ## Copyright (C) 2017-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 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 aBoxResult = aBox.firstResult()
41 aBoxShape = aBoxResult.shape()
42
43 aSession.startOperation()
44 Wire_1 = aPart.addFeature("Wire")
45 Wire_1.execute()
46 assert(Wire_1.error() != "")
47 aSession.finishOperation()
48
49 aSession.startOperation()
50 aBaseObjectsList = Wire_1.selectionList("base_objects")
51 aBaseObjectsList.append("[Box_1_1/Left][Box_1_1/Top]", "EDGE")
52 aBaseObjectsList.append("[Box_1_1/Right][Box_1_1/Top]", "EDGE")
53 Wire_1.execute()
54 assert(Wire_1.error() != "")
55 aSession.finishOperation()
56
57
58 from salome.shaper import model
59
60 model.begin()
61 partSet = model.moduleDocument()
62 Part_1 = model.addPart(partSet)
63 Part_1_doc = Part_1.document()
64 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
65
66 Wire_1 = model.addWire(Part_1_doc, [])
67 Wire_1.addContour()
68 Part_1_doc.removeFeature(Wire_1.feature())
69
70 Wire_1 = model.addWire(Part_1_doc, [model.selection("EDGE", "[Box_1_1/Left][Box_1_1/Top]")])
71 Wire_1.addContour()
72 Part_1_doc.removeFeature(Wire_1.feature())
73
74 Wire_1 = model.addWire(Part_1_doc, [model.selection("FACE", "Box_1_1/Top")])
75 Wire_1.addContour()
76 Part_1_doc.removeFeature(Wire_1.feature())
77
78 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
79 SketchLine_1 = Sketch_1.addLine(26.2037104714363, 14.67693246486999, 44.63854591961698, 30.23007341140914)
80 SketchLine_2 = Sketch_1.addLine(44.63854591961698, 30.23007341140914, 20.93564110678636, 53.45762191102688)
81 SketchConstraintCoincidence_5 = Sketch_1.setCoincident(SketchLine_1.endPoint(), SketchLine_2.startPoint())
82 model.do()
83
84 Wire_1 = model.addWire(Part_1_doc, [model.selection("EDGE", "Sketch_1/SketchLine_1")])
85 Wire_1.addContour()
86 Part_1_doc.removeFeature(Wire_1.feature())
87
88 model.end()