Salome HOME
Add suite_FEATURE_PARAMETERS/tst_903
authorspo <sergey.pokhodenko@opencascade.com>
Fri, 16 Oct 2015 07:56:29 +0000 (10:56 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Fri, 16 Oct 2015 07:57:14 +0000 (10:57 +0300)
test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py [new file with mode: 0644]
test.squish/suite_FEATURE_PARAMETERS/tst_903/verificationPoints/VP_APPLY_RED [new file with mode: 0644]
test.squish/suite_ISSUES_SALOME/tst_903/test.py [deleted file]
test.squish/suite_ISSUES_SALOME/tst_903/verificationPoints/VP_APPLY_RED [deleted file]
test_squish.sh

diff --git a/test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py b/test.squish/suite_FEATURE_PARAMETERS/tst_903/test.py
new file mode 100644 (file)
index 0000000..f7178ff
--- /dev/null
@@ -0,0 +1,48 @@
+#[tested functionality] Add parameter
+#[tested functionality] Use wrong parameter name
+#[tested functionality] Error notification in header
+#[tested functionality] Error notification in widget
+
+def main():
+    source(findFile("scripts", "common.py"))
+    
+    startApplication("salome_run.sh")
+   
+    activate_newgeom()
+
+    #[step] Click menu Part->Parameter    
+    activateItem(waitForObjectItem(":SALOME*_QMenuBar", "Part"))
+    activateItem(waitForObjectItem(":Part_QMenu", "Parameter"))
+    mouseClick(waitForObject(":Parameter_QLineEdit"), 79, 8, 0, Qt.LeftButton)
+    #[step] Check that feature ToolTip is: Model_FeatureValidator: Attribute "expression" is not initialized.
+    waitFor("object.exists(':Parameter_QFrame')", 20000)
+    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.")
+    #[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.")
+
+    #[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")
+    
+    #[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")
+    #[step] Check that result message is: Error: unexpected EOF while parsing (<string>, 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")
+
+    #[step] Check that apply button is red [vp VP_APPLY_RED]
+    test.vp("VP_APPLY_RED")
+
+    close_application()
diff --git a/test.squish/suite_FEATURE_PARAMETERS/tst_903/verificationPoints/VP_APPLY_RED b/test.squish/suite_FEATURE_PARAMETERS/tst_903/verificationPoints/VP_APPLY_RED
new file mode 100644 (file)
index 0000000..69b20df
--- /dev/null
@@ -0,0 +1 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?><VerificationPoint type="Screenshot" version="4"><Description/><Verification object=":Parameter.property_panel_ok_QToolButton" type="PNG">iVBORw0KGgoAAAANSUhEUgAAABcAAAAWCAMAAAAcqPc3AAAAA3NCSVQICAjb4U/gAAAA1VBMVEWOODiOQ0OPLy+PQECQQ0OQRESRMzORPDyTKSmTPDyUUVCVKyqYWFeZIiKaYWGbJiacJiacYmGdIyOdZWWeJSWicnKjb2+lIiGmf36nHh6neHeneHiog4OrhoWtHR2wGRmwGhqyHR2ykZC3nZy4mJi5nJu5n5++ExPCsbDEFBTGt7bIDg7Ju7rOyMfRCgrT0M/UBQXUCQnUCwvUz8/W09LX1dTY1tXa2djbAgLcBQXc29rdBQXfBATgAgLg4N/hAQHh4eDi4uHj5OPkAADk5eTm5+b/Kip+gOp4AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAqElEQVQokaXQxw7CMBBFUXrvEHrvEHrvhOL7/59EBFIIwRvEbOw5lqx5YxPysv3p92zxInNlsnFJfJyDhMTdcIx8e1sFn2b4avfiSxDUhjFPupppPZvkEVzvOcNQHujnsAK58dv9QHQhhBe2iinXPKU/eE71ETiu5rz9GtzsMeh0P/fQ7MH+BgHrfvIz/SsSa6uL0AGmJfHld+cZc3bjrhXiS5lb6ld/ACWKfgceuOJjAAAAAElFTkSuQmCC<Mask/></Verification></VerificationPoint>
\ No newline at end of file
diff --git a/test.squish/suite_ISSUES_SALOME/tst_903/test.py b/test.squish/suite_ISSUES_SALOME/tst_903/test.py
deleted file mode 100644 (file)
index bb1e9a6..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-def main():
-    source(findFile("scripts", "common.py"))
-    
-    startApplication("salome_run.sh")
-   
-    activate_newgeom()
-
-    #[step] Click menu Part->Parameter    
-    activateItem(waitForObjectItem(":SALOME*_QMenuBar", "Part"))
-    activateItem(waitForObjectItem(":Part_QMenu", "Parameter"))
-    mouseClick(waitForObject(":Parameter_QLineEdit"), 79, 8, 0, Qt.LeftButton)
-    #[step] Check that feature ToolTip is: Model_FeatureValidator: Attribute "expression" is not initialized.
-    waitFor("object.exists(':Parameter_QFrame')", 20000)
-    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.")
-    #[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.")
-
-    #[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")
-    
-    #[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")
-    #[step] Check that result message is: Error: unexpected EOF while parsing (<string>, 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")
-
-    #[step] Check that apply button is red [vp VP_APPLY_RED]
-    test.vp("VP_APPLY_RED")
-
-    close_application()
diff --git a/test.squish/suite_ISSUES_SALOME/tst_903/verificationPoints/VP_APPLY_RED b/test.squish/suite_ISSUES_SALOME/tst_903/verificationPoints/VP_APPLY_RED
deleted file mode 100644 (file)
index 69b20df..0000000
+++ /dev/null
@@ -1 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?><VerificationPoint type="Screenshot" version="4"><Description/><Verification object=":Parameter.property_panel_ok_QToolButton" type="PNG">iVBORw0KGgoAAAANSUhEUgAAABcAAAAWCAMAAAAcqPc3AAAAA3NCSVQICAjb4U/gAAAA1VBMVEWOODiOQ0OPLy+PQECQQ0OQRESRMzORPDyTKSmTPDyUUVCVKyqYWFeZIiKaYWGbJiacJiacYmGdIyOdZWWeJSWicnKjb2+lIiGmf36nHh6neHeneHiog4OrhoWtHR2wGRmwGhqyHR2ykZC3nZy4mJi5nJu5n5++ExPCsbDEFBTGt7bIDg7Ju7rOyMfRCgrT0M/UBQXUCQnUCwvUz8/W09LX1dTY1tXa2djbAgLcBQXc29rdBQXfBATgAgLg4N/hAQHh4eDi4uHj5OPkAADk5eTm5+b/Kip+gOp4AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAAqElEQVQokaXQxw7CMBBFUXrvEHrvEHrvhOL7/59EBFIIwRvEbOw5lqx5YxPysv3p92zxInNlsnFJfJyDhMTdcIx8e1sFn2b4avfiSxDUhjFPupppPZvkEVzvOcNQHujnsAK58dv9QHQhhBe2iinXPKU/eE71ETiu5rz9GtzsMeh0P/fQ7MH+BgHrfvIz/SsSa6uL0AGmJfHld+cZc3bjrhXiS5lb6ld/ACWKfgceuOJjAAAAAElFTkSuQmCC<Mask/></Verification></VerificationPoint>
\ No newline at end of file
index 72db2fc1c778f6762a0b94984d47fd23e74bb5aa..cf1fbad999ec33aa8220fb9feade5d0c9d435e50 100755 (executable)
@@ -63,11 +63,11 @@ squishrunner-run suite_ERROR_NOTIFICATION "${TESTCASES}"
 TESTCASES=""
 TESTCASES="${TESTCASES} --testcase tst_474"
 TESTCASES="${TESTCASES} --testcase tst_576"
+TESTCASES="${TESTCASES} --testcase tst_903"
 squishrunner-run suite_FEATURE_PARAMETERS "${TESTCASES}"
 
 TESTCASES=""
 #TESTCASES="${TESTCASES} --testcase tst_532"
-#TESTCASES="${TESTCASES} --testcase tst_903"
 #squishrunner-run suite_ISSUES_SALOME "${TESTCASES}"
 
 TESTCASES=""