X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchPlugin%2FTest%2FTestMultiTranslation.py;h=02aed600b52d4569d9b423d7d882ef8ef2603392;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=4dca56c495ccc26fd4b5712f59209024197192a5;hpb=29f1c8ff3eb53f7ba5dd54ead45d3e55775e5968;p=modules%2Fshaper.git diff --git a/src/SketchPlugin/Test/TestMultiTranslation.py b/src/SketchPlugin/Test/TestMultiTranslation.py index 4dca56c49..02aed600b 100644 --- a/src/SketchPlugin/Test/TestMultiTranslation.py +++ b/src/SketchPlugin/Test/TestMultiTranslation.py @@ -1,7 +1,26 @@ +# Copyright (C) 2014-2023 CEA, EDF +# +# 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 +# + """ TestMultiTranslation.py Unit test of SketchPlugin_MultiTranslation class - + SketchPlugin_MultiTranslation static const std::string MY_CONSTRAINT_TRANSLATION_ID("SketchMultiTranslation"); data()->addAttribute(VALUE_TYPE(), ModelAPI_AttributeString::typeId()); @@ -15,6 +34,7 @@ """ from GeomDataAPI import * from ModelAPI import * +from salome.shaper import model #========================================================================= # Auxiliary functions @@ -24,16 +44,25 @@ def createSketch(theSketch): allFeatures = [] # Create arc aSketchArc = theSketch.addFeature("SketchArc") - aCenter = geomDataAPI_Point2D(aSketchArc.attribute("ArcCenter")) - aStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcStartPoint")) - aEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("ArcEndPoint")) + aCenter = geomDataAPI_Point2D(aSketchArc.attribute("center_point")) + aStartPoint = geomDataAPI_Point2D(aSketchArc.attribute("start_point")) + aEndPoint = geomDataAPI_Point2D(aSketchArc.attribute("end_point")) aCenter.setValue(5., 5.) aStartPoint.setValue(10., 5.) aEndPoint.setValue(5., 10.) allFeatures.append(aSketchArc) theSketch.execute() return allFeatures - + +def createLine(theSketch): + aSketchLine = theSketch.addFeature("SketchLine") + aStartPoint = geomDataAPI_Point2D(aSketchLine.attribute("StartPoint")) + aEndPoint = geomDataAPI_Point2D(aSketchLine.attribute("EndPoint")) + aStartPoint.setValue(7., 5.) + aEndPoint.setValue(1., 3.) + theSketch.execute() + return aSketchLine + def checkTranslation(theObjects, theNbObjects, theDeltaX, theDeltaY): # Verify distances of the objects and the number of copies aFeatures = [] @@ -42,24 +71,24 @@ def checkTranslation(theObjects, theNbObjects, theDeltaX, theDeltaY): feat = ModelAPI_Feature.feature(theObjects.object(i)) assert(feat is not None) aFeatures.append(feat) - - anInd = 0 + + anInd = 0 for feat, next in zip(aFeatures[:-1], aFeatures[1:]): anInd = anInd + 1 - if (anInd > theNbObjects): + if (anInd > theNbObjects-1): anInd = 0 continue assert(feat.getKind() == next.getKind()) - + anAttributes = [] if (feat.getKind() == "SketchLine"): anAttributes.append('StartPoint') anAttributes.append('EndPoint') elif (feat.getKind() == "SketchArc"): - anAttributes.append('ArcCenter') - anAttributes.append('ArcStartPoint') - anAttributes.append('ArcEndPoint') - + anAttributes.append('center_point') + anAttributes.append('start_point') + anAttributes.append('end_point') + for attr in anAttributes: aPoint1 = geomDataAPI_Point2D(feat.attribute(attr)) aPoint2 = geomDataAPI_Point2D(next.attribute(attr)) @@ -97,6 +126,7 @@ aSession.finishOperation() aSession.startOperation() aFeaturesList = createSketch(aSketchFeature) aSession.finishOperation() +assert(model.dof(aSketchFeature) == 5) #========================================================================= # Global variables #========================================================================= @@ -116,6 +146,7 @@ aTransLineEndPoint = geomDataAPI_Point2D(aTransLine.attribute("EndPoint")) aTransLineStartPoint.setValue(START_X, START_Y) aTransLineEndPoint.setValue(START_X + DELTA_X, START_Y + DELTA_Y) aSession.finishOperation() +assert(model.dof(aSketchFeature) == 9) #========================================================================= # Create the Translation constraint #========================================================================= @@ -137,6 +168,7 @@ aNbCopies = aMultiTranslation.integer("MultiTranslationObjects") aNbCopies.setValue(2) aMultiTranslation.execute() aSession.finishOperation() +assert(model.dof(aSketchFeature) == 9) #========================================================================= # Verify the objects are moved for the specified distance #========================================================================= @@ -150,11 +182,62 @@ aNbCopies.setValue(3) aSession.finishOperation() aTranslated = aMultiTranslation.reflist("ConstraintEntityB") checkTranslation(aTranslated, aNbCopies.value(), DELTA_X, DELTA_Y) +assert(model.dof(aSketchFeature) == 9) + +#========================================================================= +# Create new feature and add it into the Rotation +#========================================================================= +aSession.startOperation() +aLine = createLine(aSketchFeature) +aSession.finishOperation() +aSession.startOperation() +aResult = modelAPI_ResultConstruction(aLine.lastResult()) +assert(aResult is not None) +aTransList.append(aResult) +aSession.finishOperation() +checkTranslation(aTranslated, aNbCopies.value(), DELTA_X, DELTA_Y) +assert(model.dof(aSketchFeature) == 13) +#========================================================================= +# Move line and check the copies are moved too +#========================================================================= +aSession.startOperation() +aStartPoint = geomDataAPI_Point2D(aLine.attribute("StartPoint")) +aStartPoint.setValue(12., 5.) +aSession.finishOperation() +checkTranslation(aTranslated, aNbCopies.value(), DELTA_X, DELTA_Y) +assert(model.dof(aSketchFeature) == 13) +#========================================================================= +# Change number of copies and verify Rotation #========================================================================= -# TODO: improve test -# 1. Add more features into translation -# 2. Move one of initial features and check the translated is moved too +aSession.startOperation() +aNbCopies.setValue(2) +aSession.finishOperation() +checkTranslation(aTranslated, aNbCopies.value(), DELTA_X, DELTA_Y) +assert(model.dof(aSketchFeature) == 13) + #========================================================================= +# Remove a feature from the Rotation +#========================================================================= +aSession.startOperation() +aRemoveIt = aTransList.object(0) +aTransList.remove(aRemoveIt) +aSession.finishOperation() +checkTranslation(aTranslated, aNbCopies.value(), DELTA_X, DELTA_Y) +assert(model.dof(aSketchFeature) == 13) + +#========================================================================= +# Clear the list of rotated features +#========================================================================= +aSession.startOperation() +aTransList.clear() +checkTranslation(aTranslated, 1, DELTA_X, DELTA_Y) +# Add line once again +aTransList.append(aResult) +aSession.finishOperation() +checkTranslation(aTranslated, aNbCopies.value(), DELTA_X, DELTA_Y) +assert(model.dof(aSketchFeature) == 13) #========================================================================= # End of test #========================================================================= + +assert(model.checkPythonDump())