X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestArcBehavior.py;h=2b1c9ad919b90bd84e34cdfff4cfc0b8933834c3;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=7498a37d59474a813ac4669e265d72520f176f58;hpb=cc2901b0a31e8e718ce04afaabde5d2d381feb7a;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestArcBehavior.py b/src/SketchPlugin/Test/TestArcBehavior.py index 7498a37d5..2b1c9ad91 100644 --- a/src/SketchPlugin/Test/TestArcBehavior.py +++ b/src/SketchPlugin/Test/TestArcBehavior.py @@ -1,3 +1,22 @@ +# 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 +# + """ TestArcBehavior.py @@ -9,9 +28,11 @@ #========================================================================= # of the test #========================================================================= +from GeomAPI import * from GeomDataAPI import * from ModelAPI import * import math +from salome.shaper import model aSession = ModelAPI_Session.get() aDocument = aSession.moduleDocument() @@ -35,11 +56,11 @@ aSession.finishOperation() #========================================================================= aSession.startOperation() aSketchArc = aSketchFeature.addFeature("SketchArc") -anArcCentr = geomDataAPI_Point2D(aSketchArc.attribute("ArcCenter")) +anArcCentr = geomDataAPI_Point2D(aSketchArc.attribute("center_point")) anArcCentr.setValue(0., 0.) -anArcStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcStartPoint")) +anArcStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("start_point")) anArcStartPoint.setValue(0., 10.) -anArcEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcEndPoint")) +anArcEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("end_point")) anArcEndPoint.setValue(1., 10.) aSession.finishOperation() # the arc must be small, not near to the whole circle @@ -85,8 +106,8 @@ assert shapeToEdge(aSketchArc.lastResult().shape()).length() < 32. aSession.startOperation() anArcEndPoint.setValue(10., 0.) aSession.finishOperation() -assert shapeToEdge(aSketchArc.lastResult().shape()).length() > 47. -assert shapeToEdge(aSketchArc.lastResult().shape()).length() < 48. +assert shapeToEdge(aSketchArc.lastResult().shape()).length() > 46.5 +assert shapeToEdge(aSketchArc.lastResult().shape()).length() < 47.5 aSession.startOperation() anArcEndPoint.setValue(1., 10.) aSession.finishOperation() @@ -94,11 +115,11 @@ assert shapeToEdge(aSketchArc.lastResult().shape()).length() > 60. # check from the scratch that from initial state to counterclockwise position also works aSession.startOperation() aSketchArc = aSketchFeature.addFeature("SketchArc") -anArcCentr = geomDataAPI_Point2D(aSketchArc.attribute("ArcCenter")) +anArcCentr = geomDataAPI_Point2D(aSketchArc.attribute("center_point")) anArcCentr.setValue(0., 0.) -anArcStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcStartPoint")) +anArcStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("start_point")) anArcStartPoint.setValue(0., 10.) -anArcEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcEndPoint")) +anArcEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("end_point")) anArcEndPoint.setValue(-1., 10.) aSession.finishOperation() # the arc must be small, not near to the whole circle @@ -108,26 +129,60 @@ assert shapeToEdge(aSketchArc.lastResult().shape()).length() < 2. #========================================================================= aSession.startOperation() aSketchArc = aSketchFeature.addFeature("SketchArc") -anArcCentr = geomDataAPI_Point2D(aSketchArc.attribute("ArcCenter")) +anArcCentr = geomDataAPI_Point2D(aSketchArc.attribute("center_point")) anArcCentr.setValue(0., 0.) -anArcStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcStartPoint")) +anArcStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("start_point")) anArcStartPoint.setValue(0., 10.) -anArcEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcEndPoint")) +anArcEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("end_point")) anArcEndPoint.setValue(10, 0.) aSession.finishOperation() -anInversed = aSketchArc.boolean("InversedArc").value() +anInversed = aSketchArc.boolean("reversed").value() for aCenterCoords in range(1, 20): aSession.startOperation() anArcCentr.setValue(aCenterCoords, aCenterCoords/2) # move center aSession.finishOperation() - assert aSketchArc.boolean("InversedArc").value() == anInversed + assert aSketchArc.boolean("reversed").value() == anInversed for aCenterCoords in range(20, -20, -1): aSession.startOperation() anArcCentr.setValue(aCenterCoords, aCenterCoords/2) # move center aSession.finishOperation() - assert aSketchArc.boolean("InversedArc").value() == anInversed + assert aSketchArc.boolean("reversed").value() == anInversed for aCenterCoords in range(-20, 20): aSession.startOperation() anArcCentr.setValue(aCenterCoords, aCenterCoords/2) # move center aSession.finishOperation() - assert aSketchArc.boolean("InversedArc").value() == anInversed + assert aSketchArc.boolean("reversed").value() == anInversed +#========================================================================= +# Test that movement of start point of arc does not break the arc +#========================================================================= +x = anArcCentr.x() +y = anArcCentr.y() +sx = anArcStartPoint.x() +sy = anArcStartPoint.y() +for aDelta in range(0, 20): + aSession.startOperation() + anArcStartPoint.setValue(sx, sy+aDelta) # move start point + aSession.finishOperation() + model.assertArcValidity(aSketchArc) +for aDelta in range(20, -1, -1): + aSession.startOperation() + anArcStartPoint.setValue(sx, sy+aDelta) # move start point + aSession.finishOperation() + model.assertArcValidity(aSketchArc) +#========================================================================= +# Test that movement of end point of arc does not break the arc +#========================================================================= +x = anArcCentr.x() +y = anArcCentr.y() +sx = anArcEndPoint.x() +sy = anArcEndPoint.y() +for aDelta in range(0, 20): + aSession.startOperation() + anArcEndPoint.setValue(sx+aDelta, sy) # move end point + aSession.finishOperation() + model.assertArcValidity(aSketchArc) +for aDelta in range(20, -1, -1): + aSession.startOperation() + anArcEndPoint.setValue(sx+aDelta, sy) # move end point + aSession.finishOperation() + model.assertArcValidity(aSketchArc)