X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FTest%2FTestExtrusionFuse.py;h=a8c6cb8c398e61fb49590c41462175a4386fb53a;hb=34c2ee35f2b8ae2ef7a0673c7841f11078e06f3c;hp=1247a06bd981431d9acd2747133d8cd18d4078c1;hpb=b009697e108880aafb3e58579019ca432661955d;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/Test/TestExtrusionFuse.py b/src/FeaturesPlugin/Test/TestExtrusionFuse.py index 1247a06bd..a8c6cb8c3 100644 --- a/src/FeaturesPlugin/Test/TestExtrusionFuse.py +++ b/src/FeaturesPlugin/Test/TestExtrusionFuse.py @@ -1,29 +1,23 @@ -""" - TestExtrusionFuse.py - Unit test of FeaturesPlugin_ExtrusionFuse class - - class FeaturesPlugin_ExtrusionFuse : public FeaturesPlugin_ExtrusionBoolean - static const std::string MY_EXTRUSION_ID("ExtrusionFuse"); - static const std::string MY_SKETCH_OBJECT_ID("sketch"); - static const std::string METHOD_ATTR("CreationMethod"); - static const std::string MY_TO_SIZE_ID("to_size"); - static const std::string MY_FROM_SIZE_ID("from_size"); - static const std::string MY_TO_OBJECT_ID("to_object"); - static const std::string MY_TO_OFFSET_ID("to_offset"); - static const std::string MY_FROM_OBJECT_ID("from_object"); - static const std::string MY_FROM_OFFSET_ID("from_offset"); - static const std::string MY_BOOLEAN_OBJECTS_ID("boolean_objects"); +## 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 +## - data()->addAttribute(SKETCH_OBJECT_ID(), ModelAPI_AttributeReference::typeId()); - data()->addAttribute(CREATION_METHOD(), ModelAPI_AttributeString::typeId()); - data()->addAttribute(TO_SIZE_ID(), ModelAPI_AttributeDouble::typeId()); - data()->addAttribute(FROM_SIZE_ID(), ModelAPI_AttributeDouble::typeId()); - data()->addAttribute(TO_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(TO_OFFSET_ID(), ModelAPI_AttributeDouble::typeId()); - data()->addAttribute(FROM_OBJECT_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(FROM_OFFSET_ID(), ModelAPI_AttributeSelection::typeId()); - data()->addAttribute(BOOLEAN_OBJECTS_ID(), ModelAPI_AttributeSelectionList::typeId()); -""" #========================================================================= # Initialization of the test #========================================================================= @@ -59,8 +53,8 @@ norm = geomDataAPI_Dir(aCircleSketchFeature.attribute("Norm")) norm.setValue(0, 0, 1) # Create circle aSketchCircle = aCircleSketchFeature.addFeature("SketchCircle") -anCircleCentr = geomDataAPI_Point2D(aSketchCircle.attribute("CircleCenter")) -aCircleRadius = aSketchCircle.real("CircleRadius") +anCircleCentr = geomDataAPI_Point2D(aSketchCircle.attribute("circle_center")) +aCircleRadius = aSketchCircle.real("circle_radius") anCircleCentr.setValue(0, 0) aCircleRadius.setValue(20) aSession.finishOperation() @@ -114,20 +108,25 @@ dirx = geomDataAPI_Dir(aCircleSketchFeature.attribute("DirX")) dirx.setValue(1, 0, 0) norm = geomDataAPI_Dir(aCircleSketchFeature.attribute("Norm")) norm.setValue(0, 0, 1) -aCircleSketchFeature.selection("External").selectSubShape("face", "Extrusion_1/TopFace_1") +aCircleSketchFeature.selection("External").selectSubShape("face", "Extrusion_1/To_Face_1") +aSession.startOperation() aSketchCircle = aCircleSketchFeature.addFeature("SketchCircle") -anCircleCentr = geomDataAPI_Point2D(aSketchCircle.attribute("CircleCenter")) -aCircleRadius = aSketchCircle.real("CircleRadius") +anCircleCentr = geomDataAPI_Point2D(aSketchCircle.attribute("circle_center")) +aCircleRadius = aSketchCircle.real("circle_radius") anCircleCentr.setValue(0, 0) aCircleRadius.setValue(10) aSession.finishOperation() +aSession.finishOperation() +aSession.startOperation() +aCircleSketchFeature.execute() # execute for sketch should be called here, because it is not set as current feature, so it is disabled. +anExtrusionFuseFt.selectionList("base").append(aCircleSketchFeature.firstResult(), None) anExtrusionFuseFt.string("CreationMethod").setValue("BySizes") anExtrusionFuseFt.real("to_size").setValue(10) anExtrusionFuseFt.real("from_size").setValue(10) anExtrusionFuseFt.real("to_offset").setValue(0) #TODO: remove anExtrusionFuseFt.real("from_offset").setValue(0) #TODO: remove -anExtrusionFuseFt.selectionList("boolean_objects").append(anExtrusionResult, anExtrusionResult.shape()) -anExtrusionFuseFt.execute() +anExtrusionFuseFt.selectionList("main_objects").append(anExtrusionResult, anExtrusionResult.shape()) +aSession.finishOperation() aSession.finishOperation() #========================================================================= @@ -138,4 +137,6 @@ assert (aFactory.validate(anExtrusionFuseFt)) assert (len(anExtrusionFuseFt.results()) > 0) aCurrentResult = modelAPI_ResultBody(anExtrusionFuseFt.firstResult()) assert (aCurrentResult is not None) -aSession.finishOperation() \ No newline at end of file + +from salome.shaper import model +assert(model.checkPythonDump())