Salome HOME
Merge branch 'Pre_2.8.0_development'
[modules/shaper.git] / test.squish / suite_STANDALONE / tst_DISTANCE / 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     line_create((0, 0), (100, 0))
23     point_create((50, 50))
24
25     point_1 = (412, 293) # point
26     point_2 = (412, 324) # line
27     annotaion_point = (262, 319)
28     distance_create(point_1, point_2, annotaion_point, 100)
29
30     mouseClick(waitForObject(":OpenParts*_AppElements_ViewPort"), annotaion_point[0], annotaion_point[1], 0, Qt.LeftButton)
31     waitFor("object.exists(':Distance.First object_QLineEdit')", 20000)
32     test.compare(str(findObject(":Distance.First object_QLineEdit").text), "SketchPoint_1/PointCoordinates")
33     waitFor("object.exists(':Distance.Second object_QLineEdit')", 20000)
34     test.compare(str(findObject(":Distance.Second object_QLineEdit").text), "SketchLine_1")
35     waitFor("object.exists(':Distance.ConstraintValue_ModuleBase_ParamSpinBox')", 20000)
36     test.compare(str(findObject(":Distance.ConstraintValue_ModuleBase_ParamSpinBox").text), "100")
37
38 def main():
39     source(findFile("scripts", "common.py"))
40
41     startApplication("linux_run.sh")
42     set_defaults()
43
44     sketch_create(help_points("XY_plane"), lambda: sketch())