]> SALOME platform Git repositories - modules/shaper.git/blobdiff - test.squish/suite_PYTHONAPI_SALOME/tst_Platine/test.py
Salome HOME
Update copyrights
[modules/shaper.git] / test.squish / suite_PYTHONAPI_SALOME / tst_Platine / test.py
index 399cca7328448c3f01b634c8cca496f97aabf96f..694e88e2f6d90f0d4d3e0e817f117a0141b9b83f 100644 (file)
@@ -1,3 +1,22 @@
+# Copyright (C) 2014-2019  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
+#
+
 def set_parameter_value(name, value):
     openContextMenu(waitForObject(":Parameters.%s = _QModelIndex" % name), 10, 10, 0)
     activateItem(waitForObjectItem(":_QMenu", "Edit..."))
@@ -8,7 +27,7 @@ def set_parameter_value(name, value):
     clickButton(waitForObject(":Boolean.property_panel_ok_QToolButton"))
 
 def main():
-    # [project] NewGEOM
+    # [project] SHAPER
     # [Scenario] 'Platine' model created by PythonAPI
     # [Topic] PythonAPI functionality
     # [Tested functionality]
@@ -25,7 +44,7 @@ def main():
     set_defaults()
 
     # [step] Activate Shaper module and create new file
-    activate_newgeom()
+    activate_SHAPER()
 
     # [step] In Python console type: import examples.Platine
     type(waitForObject(":Python Console_PyConsole_EnhEditor"), "import examples.Platine")
@@ -42,13 +61,16 @@ def main():
     clickItem(":Object browser_XGUI_DataTree", "Part\\_1.Constructions (3)", -10, 10, 0, Qt.LeftButton)
     waitForObjectItem(":Object browser_XGUI_DataTree", "Part\\_1.Bodies (1)")
     clickItem(":Object browser_XGUI_DataTree", "Part\\_1.Bodies (1)", -10, 10, 0, Qt.LeftButton)
-    test.vp("VP_TREE")
+    # Tree is under modification, so it can not be checked by a picture
+    # Moreover a mask for a text should be provided to check it on different platforms
+    #test.vp("VP_TREE")
 
     # [step] Change parameter values: L = 64, E = 5, P = 80
     set_parameter_value("L", 64)
     set_parameter_value("E", 5)
     set_parameter_value("P", 80)
     clickButton(waitForObject(":SALOME*.Fit All_QToolButton"))
+    mouseMove(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 320, 240)
     test.vp("VP_PLATINE_E")
 
     # [step] Change parameter values: L = 90, E = 20, P = 80
@@ -56,6 +78,7 @@ def main():
     set_parameter_value("E", 20)
     set_parameter_value("P", 80)
     clickButton(waitForObject(":SALOME*.Fit All_QToolButton"))
+    mouseMove(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 320, 240)
     test.vp("VP_PLATINE_L")
 
     # [step] Change parameter values: L = 64, E = 20, P = 120
@@ -63,7 +86,8 @@ def main():
     set_parameter_value("E", 20)
     set_parameter_value("P", 120)
     clickButton(waitForObject(":SALOME*.Fit All_QToolButton"))
+    mouseMove(waitForObject(":SALOME*.3D View Operations_OCCViewer_ViewPort3d"), 320, 240)
     test.vp("VP_PLATINE_P")
 
-    # [step] Cloase application
+    # [step] Close application
     close_application()