Salome HOME
Merge branch 'V9_2_2_BR'
[modules/shaper.git] / test.squish / suite_FEATURE_SKETCH / tst_sketch_008 / test.py
1 # Copyright (C) 2014-2019  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 def sketch():
21     #[step] Click 'Create sketch' toolbar button
22     #[step] Select XY plane for sketching
23     #[step] Create point
24     point_create_in_view((340, 205))
25     #[step] Create line
26     line_create_in_view((274, 367), (554, 189))
27     #[step] Make them coincident
28     coincident((340, 205), (390, 293))
29     #[check] Check that objects are coincident
30     test.vp("VP1")
31     #[step] Uncheck 'Show constraints' check-box
32     clickButton(waitForObject(":Sketch.Show constraints_QCheckBox"))
33     #[check] Check that 'Coincident' icon disappears
34     test.vp("VP2")
35
36 def main():
37
38     # [project] SHAPER
39     # [Scenario] Sketch_008
40     #[Topic] 'Coincident' functionality
41     #[Tested functionality]
42     #[Summary description]
43     #[Expected results]
44
45     source(findFile("scripts", "common.py"))
46     #[section] Application start
47     #[step] Launch SALOME
48     startApplication("salome_run.sh")
49
50     set_defaults()
51
52     #[step] Activate SHAPER
53     #[step]Click 'New' button
54     activate_SHAPER()
55
56     #[section] Creation of sketch and objects inside it
57     #[step] Part - New part
58     part_create()
59
60     sketch_create(help_points("XY_plane"), lambda: sketch())
61
62     #[step] Close application without saving
63     close_application()