Salome HOME
updated copyright message
[modules/shaper.git] / src / ConstructionPlugin / Test / TestPlane.py
index 3a3b7c862d2fc2149fb0bdfb70c9a062bf835427..f7b90b7085681f4b563cfb384da72d544a046234 100644 (file)
@@ -1,10 +1,29 @@
+# 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
+#
+
 """
 Test case for Construction Plane feature. Written on High API.
 """
 from ModelAPI import *
 from GeomAPI import *
 
-import model
+from salome.shaper import model
 
 # Get session
 aSession = ModelAPI_Session.get()
@@ -20,7 +39,7 @@ aSession.finishOperation()
 aSession.startOperation()
 aPlane = model.addPlane(aDocument, 1, 1, 1, 0)
 aSession.finishOperation()
-assert (len(aPlane.result()) > 0)
+assert (len(aPlane.results()) > 0)
 
 # Create a point 1
 aSession.startOperation()
@@ -39,9 +58,9 @@ aSession.finishOperation()
 
 # Test a plane by three points
 aSession.startOperation()
-aPlane = model.addPlane(aDocument, aPoint1.result()[0], aPoint2.result()[0], aPoint3.result()[0])
+aPlane = model.addPlane(aDocument, aPoint1.result(), aPoint2.result(), aPoint3.result())
 aSession.finishOperation()
-assert (len(aPlane.result()) > 0)
+assert (len(aPlane.results()) > 0)
 
 # Create an axis
 aSession.startOperation()
@@ -50,21 +69,21 @@ aSession.finishOperation()
 
 # Test a plane by line and point
 aSession.startOperation()
-aPlane = model.addPlane(aDocument, anAxis.result()[0], aPoint3.result()[0], True)
+aPlane = model.addPlane(aDocument, anAxis.result(), aPoint3.result(), True)
 aSession.finishOperation()
-assert (len(aPlane.result()) > 0)
+assert (len(aPlane.results()) > 0)
 
 # Test a plane by distance from other
 aSession.startOperation()
-aPlane = model.addPlane(aDocument, aPlane.result()[0], 50, False)
+aPlane = model.addPlane(aDocument, aPlane.result(), 50, False)
 aSession.finishOperation()
-assert (len(aPlane.result()) > 0)
+assert (len(aPlane.results()) > 0)
 
 # Test a plane by coincidence to point
 aSession.startOperation()
-aCoincidentPlane = model.addPlane(aDocument, aPlane.result()[0], aPoint2.result()[0])
+aCoincidentPlane = model.addPlane(aDocument, aPlane.result(), aPoint2.result())
 aSession.finishOperation()
-assert (len(aCoincidentPlane.result()) > 0)
+assert (len(aCoincidentPlane.results()) > 0)
 
 # Create an axis
 aSession.startOperation()
@@ -73,15 +92,14 @@ aSession.finishOperation()
 
 # Test a plane by rotation
 aSession.startOperation()
-aRotatedPlane = model.addPlane(aDocument, aCoincidentPlane.result()[0], anAxis.result()[0], 45)
+aRotatedPlane = model.addPlane(aDocument, aCoincidentPlane.result(), anAxis.result(), 45)
 aSession.finishOperation()
-assert (len(aRotatedPlane.result()) > 0)
+assert (len(aRotatedPlane.results()) > 0)
 
 # Test plane by two parallel planes
 aSession.startOperation()
-aPlane = model.addPlane(aDocument, aCoincidentPlane.result()[0], aPlane.result()[0])
+aPlane = model.addPlane(aDocument, aCoincidentPlane.result(), aPlane.result())
 aSession.finishOperation()
-assert (len(aPlane.result()) > 0)
+assert (len(aPlane.results()) > 0)
 
-import model
 assert(model.checkPythonDump())