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