Salome HOME
4729a05dac87c36e127a87a411ab504a47c6c1e0
[modules/shaper.git] / test.squish / suite_FEATURE_EXTRUSION / tst_extrusion_006 / test.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 def main():
22     # [project] SHAPER
23     # [Scenario] Extrusion_006
24     # [Topic] 'Extrusion_cut by planes' functionality
25     # [Tested functionality]
26     # [Summary description]
27     # [Expected results]
28     # [General comments]
29
30     source(findFile("scripts", "common.py"))
31
32     # [section] Application start
33     # [step] Launch SALOME
34     startApplication("salome_run.sh")
35
36     set_defaults()
37
38     # [step] Open 'for_extrusion_006.hdf'
39     open(DATA_PATH + "/for_extrusion_006.hdf")
40
41     # [step] Activate SHAPER
42     clickButton(waitForObject(":SALOME*.Shaper_QToolButton"))
43
44     # [step] Activate Part_1
45     waitForObjectItem(":Object browser_XGUI_DataTree", "Part\\_1 (Not loaded)")
46     clickItem(":Object browser_XGUI_DataTree", "Part\\_1 (Not loaded)", 71, 10, 0, Qt.LeftButton)
47     openItemContextMenu(waitForObject(":Object browser_XGUI_DataTree"), "Part\\_1 (Not loaded)", 70, 9, 0)
48     activateItem(waitForObjectItem(":_QMenu", "Activate"))
49
50     # [step] Fit all
51     fit_all()
52     test.vp("INIT")
53
54     # [step] Features - ExtrusionCut
55     mouseClick(waitForObjectItem(":SALOME*_QMenuBar", "Features"))
56     mouseClick(waitForObjectItem(":_QMenu", "ExtrusionCut"))
57
58     # [step] Select the upper face for sketching
59     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 243, 171, 0, Qt.LeftButton)
60
61     # [step] Click "Set plane view" in property panel [vp PLANE]
62     clickButton(waitForObject(":Sketcher plane.Set plane view_QPushButton"))
63     test.vp("PLANE")
64
65     # [step] Draw closing contour, consisting from 4 lines
66     lines_create_in_view([(110, 150), (110, 320), (640, 320), (640, 150), (110, 155)])
67
68     # [check] Check that lines have been executed successfully [cp LINES]
69     fit_all()
70     test.vp("LINES")
71
72     # [step] Ok
73     clickButton(waitForObject(":Sketch.property_panel_ok_QToolButton"))
74
75     # [step] Select 'By planes and offsets' method
76     clickButton(waitForObject(":Extrusion_QToolButton_3"))
77     mouseClick(waitForObject(":To_QLineEdit_5"), 46, 15, 0, Qt.LeftButton)
78
79     # [step] Select Plane_1 as face 'To'
80     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 35, 220, 0, Qt.LeftButton)
81
82     # [check] Check that preview has been updated [cp PREVIEW]
83     fit_all()
84     test.vp("PREVIEW")
85
86     # [step] Ok
87     clickButton(waitForObject(":ExtrusionCut.property_panel_ok_QToolButton"))
88
89     # [step] Click 'Reset view' toolbar button
90     clickButton(waitForObject(":SALOME*.Reset_QToolButton_2"))
91     mouseClick(waitForObject(":SALOME*_OCCViewer_ViewPort3d"), 10, 450, 0, Qt.LeftButton)  # close tool bar extension bar
92
93     # [check] Check that extrusionCut operation has been executed successfully [vp EXTRUSION_FUSE]
94     test.vp("EXTRUSION_CUT")
95
96     # [step] Close application without saving
97     close_application()