Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / test.squish / suite_ERROR_NOTIFICATION / tst_679 / 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 #[tested functionality] 1. Add parameter 2. Use wrong parameter name 3. Error notification in header 3. Error notification in widget
22
23 def main():
24     source(findFile("scripts", "common.py"))
25
26     startApplication("salome_run.sh")
27
28     activate_SHAPER()
29
30     clickButton(waitForObject(":SALOME*.Parameter_QToolButton"))
31     type(waitForObject(":Parameter_QLineEdit"), "a")
32     type(waitForObject(":Parameter_ExpressionEditor"), "3")
33     type(waitForObject(":Parameter_ExpressionEditor"), "<Return>")
34     clickButton(waitForObject(":Parameter.property_panel_ok_QToolButton"))
35
36     clickButton(waitForObject(":SALOME*.ConstructionPoint_QToolButton"))
37     type(waitForObject(":Point.x_ModuleBase_ParamSpinBox"), "<Ctrl+A>")
38     type(waitForObject(":Point.x_ModuleBase_ParamSpinBox"), "a")
39     type(waitForObject(":Point.x_ModuleBase_ParamSpinBox"), "<Return>")
40
41     waitFor("object.exists(':Point.x_ModuleBase_ParamSpinBox')", 20000)
42     test.compare(str(findObject(":Point.x_ModuleBase_ParamSpinBox").toolTip), "X coordinate")
43
44     type(waitForObject(":Point.x_ModuleBase_ParamSpinBox"), "<Ctrl+A>")
45     type(waitForObject(":Point.x_ModuleBase_ParamSpinBox"), "b")
46     type(waitForObject(":Point.x_ModuleBase_ParamSpinBox"), "<Return>")
47
48     waitFor("object.exists(':Point_QFrame')", 20000)
49     test.compare(str(findObject(":Point_QFrame").toolTip), "ModelAPI_StateInvalidArgument")
50
51     waitFor("object.exists(':Point.x_ModuleBase_ParamSpinBox')", 20000)
52     test.compare(str(findObject(":Point.x_ModuleBase_ParamSpinBox").toolTip), "X coordinate\nErrors:\nx - Model_AttributeValidator: name 'b' is not defined")
53
54     close_application()