Salome HOME
Merge branch 'master' into cgt/devCEA
[modules/shaper.git] / test.squish / suite_FEATURE_SKETCH / tst_sketch_016 / 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] Sketch_016
24     #[Topic] 'Translation' 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_sketch_016.hdf'
39     open(DATA_PATH + "/for_sketch_016.hdf")
40
41     #[step] Activate SHAPER
42     clickButton(waitForObject(":SALOME*.Shaper_QToolButton"))
43
44     #[step] Edit 'Sketch_1'
45     waitForObjectItem(":Object browser_XGUI_DataTree", "Sketch\\_1")
46     clickItem(":Object browser_XGUI_DataTree", "Sketch\\_1", 43, 12, 0, Qt.LeftButton)
47     openItemContextMenu(waitForObject(":Object browser_XGUI_DataTree"), "Sketch\\_1", 43, 12, 0)
48     activateItem(waitForObjectItem(":_QMenu", "Edit..."))
49
50     #[step] Click '+OZ' button
51     clickButton(waitForObject(":SALOME*.+OZ_QToolButton"))
52
53     #[step] Sketch - Translation
54     activateItem(waitForObjectItem(":SALOME*_QMenuBar", "Sketch"))
55     activateItem(waitForObjectItem(":Sketch_QMenu", "Translation"))
56     mouseClick(waitForObject(":Translation.Segments:_QListWidget"), 115, 35, 0, Qt.LeftButton)
57
58     #[step] Select all objects for translation
59     type(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), "<Shift>")
60     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 90, 130, 33554432, Qt.LeftButton)
61     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 440, 132, 33554432, Qt.LeftButton)
62     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 573, 199, 33554432, Qt.LeftButton)
63
64     #[step] Click in viewer to define start point
65     mouseClick(waitForObject(":Start point.qt_spinbox_lineedit_QLineEdit"), 53, 7, 0, Qt.LeftButton)
66     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 112, 453, 0, Qt.LeftButton)
67
68     #[step] Click in viewer to define end point, for this zoom out preview
69     mouseClick(waitForObject(":End point.qt_spinbox_lineedit_QLineEdit"), 154, 9, 0, Qt.LeftButton)
70     sendEvent("QWheelEvent", waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 451, 434, -120, 0, 2)
71     sendEvent("QWheelEvent", waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 451, 434, -120, 0, 2)
72     sendEvent("QWheelEvent", waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 451, 434, -120, 0, 2)
73     sendEvent("QWheelEvent", waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 451, 434, -120, 0, 2)
74     sendEvent("QWheelEvent", waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 451, 434, -120, 0, 2)
75     mouseClick(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 426, 256, 0, Qt.LeftButton)
76
77     #[step] Define the number of copies
78     mouseClick(waitForObject(":Translation.qt_spinbox_lineedit_QLineEdit"), 41, 9, 0, Qt.LeftButton)
79     type(waitForObject(":Translation.MultiTranslationCopies_QSpinBox"), "<Ctrl+A>")
80     type(waitForObject(":Translation.MultiTranslationCopies_QSpinBox"), 3)
81
82
83     #[step] Fit all
84     fit_all()
85
86     #[check] that preview is updated
87     test.vp("VP1")
88
89     #[step] Ok
90     clickButton(waitForObject(":Translation.property_panel_ok_QToolButton"))
91
92     #[check] Check that translation has been executed successfully
93     test.vp("VP2")
94
95     # [step] Close application without saving
96     close_application()