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