X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=test.squish%2Fsuite_FEATURE_PARAMETERS%2Ftst_903%2Ftest.py;h=d260947e2549ff38d838c77ae99f85fd8f9f4d66;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=84f3620724e6449c4c32256c9b7d67cb1c60942f;hpb=24f9658d6e124a268c6a3abcf24f07aa2dc6d268;p=modules%2Fshaper.git diff --git a/test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py b/test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py index 84f362072..d260947e2 100644 --- a/test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py +++ b/test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py @@ -1,3 +1,22 @@ +# Copyright (C) 2014-2023 CEA/DEN, EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + #[tested functionality] Add parameter #[tested functionality] Use wrong parameter name #[tested functionality] Error notification in header @@ -5,12 +24,12 @@ def main(): source(findFile("scripts", "common.py")) - + startApplication("salome_run.sh") - - activate_newgeom() - #[step] Click menu Part->Parameter + activate_SHAPER() + + #[step] Click menu Part->Parameter activateItem(waitForObjectItem(":SALOME*_QMenuBar", "Part")) activateItem(waitForObjectItem(":Part_QMenu", "Parameter")) mouseClick(waitForObject(":Parameter_QLineEdit"), 79, 8, 0, Qt.LeftButton) @@ -19,31 +38,31 @@ def main(): test.compare(str(findObject(":Parameter_QFrame").toolTip), "Model_FeatureValidator: Attribute \"expression\" is not initialized.") #[step] Check that name tooltip is: Errors:\nvariable - Parameters_VariableValidator: Incorrect variable name. waitFor("object.exists(':Parameter_QLineEdit')", 20000) - test.compare(str(findObject(":Parameter_QLineEdit").toolTip), "Errors:\nvariable - Parameters_VariableValidator: Incorrect variable name.") + test.compare(str(findObject(":Parameter_QLineEdit").toolTip), 'Errors:\nvariable - Parameters_VariableValidator: Attribute "variable" value is empty.') #[step] Check that expression tooltip is: Errors:\nexpression - Parameters_ExpressionValidator: Expression is empty. waitFor("object.exists(':Parameter_ExpressionEditor')", 20000) - test.compare(str(findObject(":Parameter_ExpressionEditor").toolTip), "Errors:\nexpression - Parameters_ExpressionValidator: Expression is empty.") + test.compare(str(findObject(":Parameter_ExpressionEditor").toolTip), 'Errors:\nexpression - Parameters_ExpressionValidator: Attribute "expression" is not initialized.') - #[step] Enter variable name 'a' + #[step] Enter variable name 'a' type(waitForObject(":Parameter_QLineEdit"), "a") mouseClick(waitForObject(":Parameter_ExpressionEditor"), 97, 31, 0, Qt.LeftButton) - + #[step] Enter variable expression '100+b' type(waitForObject(":Parameter_ExpressionEditor"), "100+b") type(waitForObject(":Parameter_ExpressionEditor"), "") - + #[step] Check that expression tooltip is: Errors:\nexpression - Parameters_ExpressionValidator: name 'b' is not defined waitFor("object.exists(':Parameter_ExpressionEditor')", 20000) - test.compare(str(findObject(":Parameter_ExpressionEditor").toolTip), "Errors:\nexpression - Parameters_ExpressionValidator: name 'b' is not defined") + test.compare(str(findObject(":Parameter_ExpressionEditor").toolTip), "Errors:\nexpression - Parameters_ExpressionValidator: Result is empty.") #[step] Check that result message is: Error: unexpected EOF while parsing (, line 0) waitFor("object.exists(':Parameter.Result_QLabel')", 20000) test.compare(str(findObject(":Parameter.Result_QLabel").text), "Error: name 'b' is not defined") #[step] Check that feature ToolTip is: expression - Parameters_ExpressionValidator: name 'b' is not defined waitFor("object.exists(':Parameter_QFrame')", 20000) - test.compare(str(findObject(":Parameter_QFrame").toolTip), "expression - Parameters_ExpressionValidator: name 'b' is not defined") + test.compare(str(findObject(":Parameter_QFrame").toolTip), "expression - Parameters_ExpressionValidator: Result is empty.") - #[step] Check that apply button is red [vp VP_APPLY_RED] - test.vp("VP_APPLY_RED") + #[step] Check that apply button is grey [vp VP_APPLY_GREY] + test.vp("VP_APPLY_GREY") close_application()