From 577ff6ec6b924a3bd559e452d46b006099d22804 Mon Sep 17 00:00:00 2001 From: azv Date: Wed, 19 Dec 2018 18:44:37 +0300 Subject: [PATCH] [Code coverage GeomAPI]: Unit test for Ellipse2d --- src/GeomAPI/CMakeLists.txt | 1 + src/GeomAPI/Test/TestEllipse2d.py | 56 +++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 src/GeomAPI/Test/TestEllipse2d.py diff --git a/src/GeomAPI/CMakeLists.txt b/src/GeomAPI/CMakeLists.txt index 13a4e7bc8..918fe8308 100644 --- a/src/GeomAPI/CMakeLists.txt +++ b/src/GeomAPI/CMakeLists.txt @@ -164,6 +164,7 @@ ADD_UNIT_TESTS( TestBox.py TestCone.py TestCylinder.py + TestEllipse2d.py TestPlanarEdge.py TestPolygon.py TestSphere.py diff --git a/src/GeomAPI/Test/TestEllipse2d.py b/src/GeomAPI/Test/TestEllipse2d.py new file mode 100644 index 000000000..4b7bb11e6 --- /dev/null +++ b/src/GeomAPI/Test/TestEllipse2d.py @@ -0,0 +1,56 @@ +## Copyright (C) 2018-20xx 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 +## + +import math + +from GeomAPI import * + +TOLERANCE = 1.e-7 + +center = GeomAPI_Pnt2d(10, 0) +xAxis = GeomAPI_Dir2d(1, 0) +majorRadius = 10 +minorRadius = 5 + +# Test 1. Default ellipse +ellipse = GeomAPI_Ellipse2d(center, xAxis, majorRadius, minorRadius) +assert(ellipse.center().distance(center) < TOLERANCE) +assert(ellipse.firstFocus().distance(GeomAPI_Pnt2d(18.66025404, 0.)) < TOLERANCE) +assert(ellipse.secondFocus().distance(GeomAPI_Pnt2d(1.339745962, 0.)) < TOLERANCE) +assert(ellipse.majorRadius() == majorRadius) +assert(ellipse.minorRadius() == minorRadius) + +# Test 2. Ellipse with swapped radii +ellipse = GeomAPI_Ellipse2d(center, xAxis, minorRadius, majorRadius) +assert(ellipse.center().distance(center) < TOLERANCE) +assert(ellipse.firstFocus().distance(GeomAPI_Pnt2d(10., 8.66025404)) < TOLERANCE) +assert(ellipse.secondFocus().distance(GeomAPI_Pnt2d(10., -8.66025404)) < TOLERANCE) +assert(ellipse.majorRadius() == majorRadius) +assert(ellipse.minorRadius() == minorRadius) + +# Test 3. Ellipse by 3 points +axisPnt = GeomAPI_Pnt2d(center.x() + majorRadius, center.y()) +passedPnt = GeomAPI_Pnt2d(center.x(), center.y() + minorRadius) +ellipse = GeomAPI_Ellipse2d(center, axisPnt, passedPnt) +assert(ellipse.center().distance(center) < TOLERANCE) +assert(ellipse.firstFocus().distance(GeomAPI_Pnt2d(18.66025404, 0.)) < TOLERANCE) +assert(ellipse.secondFocus().distance(GeomAPI_Pnt2d(1.339745962, 0.)) < TOLERANCE) +assert(ellipse.majorRadius() == majorRadius) +assert(ellipse.minorRadius() == minorRadius) -- 2.39.2