Salome HOME
Converted most of the features tests.
[modules/shaper.git] / src / FeaturesPlugin / Test / TestFusionFaces.py
1 ## Copyright (C) 2014-2017  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 # -*- coding: utf-8 -*-
22
23 from salome.shaper import model
24
25 # Create document
26 model.begin()
27 partSet = model.moduleDocument()
28 Part_1 = model.addPart(partSet)
29 Part_1_doc = Part_1.document()
30
31 # =============================================================================
32 # Test 1. Fusion faces for shell of 2 adjacent faces lying on plane
33 # =============================================================================
34 Box_1 = model.addBox(Part_1_doc, 10, 10, 10)
35 Box_2 = model.addBox(Part_1_doc, 10, 10, 10)
36 Translation_1 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_2_1")], model.selection("EDGE", "PartSet/OX"), 10)
37
38 Shell_1 = model.addShell(Part_1_doc, [model.selection("FACE", "Box_1_1/Top"), model.selection("FACE", "Translation_1_1/MF:Translated&Box_2_1/Top")])
39 model.do()
40
41 model.checkResult(Shell_1, model, 1, [0], [0], [2], [8], [16])
42
43 FusionFaces_1 = model.addFusionFaces(Part_1_doc, model.selection("SHELL", "Shell_1_1"))
44 model.do()
45
46 model.checkResult(FusionFaces_1, model, 1, [0], [0], [1], [4], [8])
47
48 # =============================================================================
49 # Test 2. Fusion faces for solid of 2 adjacent boxes
50 # =============================================================================
51 Fuse_1 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Box_1_1"), model.selection("SOLID", "Translation_1_1")], [])
52 model.do()
53
54 model.checkResult(Fuse_1, model, 1, [0], [1], [10], [40], [80])
55
56 FusionFaces_2 = model.addFusionFaces(Part_1_doc, model.selection("SOLID", "Fuse_1_1"))
57 model.do()
58
59 model.checkResult(FusionFaces_2, model, 1, [0], [1], [6], [24], [48])
60
61 # =============================================================================
62 # Test 3. Fusion faces for shell of adjacent faces lying on cylindrical surface
63 # =============================================================================
64 Cylinder_1 = model.addCylinder(Part_1_doc, model.selection("VERTEX", "PartSet/Origin"), model.selection("EDGE", "PartSet/OZ"), 5, 10)
65 Shell_2 = model.addShell(Part_1_doc, [model.selection("FACE", "Cylinder_1_1/Face_1")])
66 Point_1 = model.addPoint(Part_1_doc, 0, 0, 5)
67 Plane_1 = model.addPlane(Part_1_doc, model.selection("EDGE", "PartSet/OZ"), model.selection("VERTEX", "Point_1"), True)
68
69 Partition_1 = model.addPartition(Part_1_doc, [model.selection("SHELL", "Shell_2_1"), model.selection("FACE", "Plane_1")])
70 model.do()
71
72 model.checkResult(Partition_1, model, 1, [0], [0], [2], [8], [16])
73
74 FusionFaces_3 = model.addFusionFaces(Part_1_doc, model.selection("SHELL", "Partition_1_1"))
75 model.do()
76
77 model.checkResult(FusionFaces_3, model, 1, [0], [0], [1], [4], [8])
78
79 # =============================================================================
80 # Test 4. Fusion faces for compsolid
81 # =============================================================================
82 Sketch_1 = model.addSketch(Part_1_doc, model.defaultPlane("XOY"))
83 SketchLine_1 = Sketch_1.addLine(25, 40, -50, 40)
84 SketchLine_2 = Sketch_1.addLine(-50, 40, -50, 0)
85 SketchLine_3 = Sketch_1.addLine(-50, 0, 25, 0)
86 SketchLine_4 = Sketch_1.addLine(25, 0, 25, 40)
87 SketchLine_5 = Sketch_1.addLine(-20, 40, -20, 0)
88 model.do()
89
90 Extrusion_1 = model.addExtrusion(Part_1_doc, [model.selection("COMPOUND", "Sketch_1")], model.selection(), 10, 0)
91 Box_3 = model.addBox(Part_1_doc, 10, 10, 10)
92
93 Fuse_2 = model.addFuse(Part_1_doc, [model.selection("COMPSOLID", "Extrusion_1_1"), model.selection("SOLID", "Box_3_1")])
94 model.do()
95
96 model.checkResult(Fuse_2, model, 1, [1], [1], [14], [64], [128])
97
98 FusionFaces_4 = model.addFusionFaces(Part_1_doc, model.selection("COMPSOLID", "Fuse_2_1"))
99 model.do()
100
101 model.checkResult(FusionFaces_4, model, 1, [1], [1], [6], [24], [48])
102
103 # =============================================================================
104 # Test 5. Fusion faces for compound
105 # =============================================================================
106 Box_4 = model.addBox(Part_1_doc, 10, 10, 10)
107 Box_5 = model.addBox(Part_1_doc, 10, 10, 10)
108 Translation_2 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_5_1")], 0, 0, 5)
109 Box_6 = model.addBox(Part_1_doc, 10, 10, 10)
110 Translation_3 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_6_1")], 20, 0, 0)
111 Box_7 = model.addBox(Part_1_doc, 10, 10, 10)
112 Translation_4 = model.addTranslation(Part_1_doc, [model.selection("SOLID", "Box_7_1")], 20, 0, 5)
113 Fuse_3 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Box_4_1"), model.selection("SOLID", "Translation_2_1")], [])
114 Fuse_4 = model.addFuse(Part_1_doc, [model.selection("SOLID", "Translation_3_1"), model.selection("SOLID", "Translation_4_1")], [])
115
116 Compound_1 = model.addCompound(Part_1_doc, [model.selection("SOLID", "Fuse_3_1"), model.selection("SOLID", "Fuse_4_1")])
117 model.do()
118
119 model.checkResult(Compound_1, model, 1, [2], [2], [28], [112], [224])
120
121 FusionFaces_5 = model.addFusionFaces(Part_1_doc, model.selection("COMPOUND", "Compound_1_1"))
122 model.do()
123
124 model.checkResult(FusionFaces_5, model, 1, [2], [2], [12], [48], [96])
125
126 # =============================================================================
127 # Test 6. Check subshapes naming
128 # =============================================================================
129 #model.testHaveNamingSubshapes(FusionFaces_1, model, Part_1_doc)
130 model.testHaveNamingSubshapes(FusionFaces_2, model, Part_1_doc)
131 #model.testHaveNamingSubshapes(FusionFaces_3, model, Part_1_doc)
132 model.testHaveNamingSubshapes(FusionFaces_4, model, Part_1_doc)
133 model.testHaveNamingSubshapes(FusionFaces_5, model, Part_1_doc)
134 model.end()
135
136 # =============================================================================
137 # Test 7. Check Python dump
138 # =============================================================================
139 assert(model.checkPythonDump())