]> SALOME platform Git repositories - modules/shaper.git/blobdiff - test.API/SHAPER/Transformations/TestAPI_Rotation.py
Salome HOME
Copyright update 2022
[modules/shaper.git] / test.API / SHAPER / Transformations / TestAPI_Rotation.py
index 1e9323572fd0799746e25dc9cfef4d4e45913cd1..0693c3e19ae81a6c4933b59471a82b3b98bc1c73 100644 (file)
@@ -1,26 +1,26 @@
-## Copyright (C) 2014-2017  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<mailto:webmaster.salome@opencascade.com>
-##
+# Copyright (C) 2014-2022  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
+#
 
 from GeomAlgoAPI import GeomAlgoAPI_ShapeAPI as shaperpy
 from GeomAlgoAPI import GeomAlgoAPI_Exception as myExcept
 from GeomAPI import GeomAPI_Ax1 as axis, GeomAPI_Pnt as pnt, GeomAPI_Dir as direction
+from GeomAPI import GeomAPI_Shape as shape
 
 # Create Boxes
 Box_1 = shaperpy.makeBox(10.,10.,10.)
@@ -74,7 +74,7 @@ except myExcept as ec:
 try:
     Rotation_8 = shaperpy.makeRotation(None, ax1, 180)
 except myExcept as ec:
-    assert(ec.what() == "Rotation builder :: source shape is not valid.")
+    assert(ec.what() == "Transformation :: incorrect input data.")
 
 Rotation_9 = shaperpy.makeRotation(Box_8, pntOrigin, pnt1, pnt2)
 Rotation_10 = shaperpy.makeRotation(Box_9, pnt3, pnt1, pnt2)
@@ -112,4 +112,9 @@ except myExcept as ec:
 try:
     Rotation_17 = shaperpy.makeRotation(None, pntOrigin, pnt3, pnt2)
 except myExcept as ec:
-    assert(ec.what() == "Rotation builder :: source shape is not valid.")
+    assert(ec.what() == "Transformation :: incorrect input data.")
+
+try:
+    Rotation_18 = shaperpy.makeRotation(shape(), ax1, 450)
+except myExcept as ec:
+    assert(ec.what() == "Transformation :: source shape does not contain any actual shape.")