From: dbv Date: Mon, 20 Jun 2016 12:42:10 +0000 (+0300) Subject: Disabled test for Pipe by locations X-Git-Tag: V_2.4.0~87 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=92a28357f32cb9908c6987834ae846b0487e36c7;p=modules%2Fshaper.git Disabled test for Pipe by locations --- diff --git a/src/FeaturesPlugin/Test/TestPipe.py b/src/FeaturesPlugin/Test/TestPipe.py index 5623aa594..8ce9404f1 100644 --- a/src/FeaturesPlugin/Test/TestPipe.py +++ b/src/FeaturesPlugin/Test/TestPipe.py @@ -117,49 +117,49 @@ aSession.finishOperation() # Test results assert (len(aPipeFeature.results()) > 0) -aSession.undo() - -# Create pipe with locations -# Create a sketch with circle for pipe profile -aSession.startOperation() -aSketchFeature = featureToCompositeFeature(aPart.addFeature("Sketch")) -origin = geomDataAPI_Point(aSketchFeature.attribute("Origin")) -origin.setValue(0, 0, 200) -dirx = geomDataAPI_Dir(aSketchFeature.attribute("DirX")) -dirx.setValue(1, 0, 0) -norm = geomDataAPI_Dir(aSketchFeature.attribute("Norm")) -norm.setValue(0, 0, 1) - -# Create circle -aSketchCircleFeature = aSketchFeature.addFeature("SketchCircle") -anCircleCentr = geomDataAPI_Point2D(aSketchCircleFeature.attribute("CircleCenter")) -aCircleRadius = aSketchCircleFeature.real("CircleRadius") -anCircleCentr.setValue(0, 0) -aCircleRadius.setValue(20) -aSession.finishOperation() -aSketchResult = aSketchFeature.firstResult() -aSketchShape = aSketchResult.shape() - -# Create face -aSession.startOperation() -aFaceFeature = aPart.addFeature("Face") -aBaseObjectsList = aFaceFeature.selectionList("base_objects") -aShapeExplorer = GeomAPI_ShapeExplorer(aSketchShape, GeomAPI_Shape.EDGE) -while aShapeExplorer.more(): - aBaseObjectsList.append(aSketchResult, aShapeExplorer.current()) - aShapeExplorer.next() -aSession.finishOperation() -aFaceResult2 = aFaceFeature.firstResult() - -aSession.startOperation() -aPipeFeature = aPart.addFeature("Pipe") -aBaseObjectsList = aPipeFeature.selectionList("base_objects") -aBaseObjectsList.append(aFaceResult1, None) -aBaseObjectsList.append(aFaceResult2, None) -aPathObjectSelection = aPipeFeature.selection("path_object") -aPathObjectSelection.setValue(aWireResult, None) -aPipeFeature.string("creation_method").setValue("locations") -aSession.finishOperation() - -# Test results -assert (len(aPipeFeature.results()) > 0) +# aSession.undo() +# +# # Create pipe with locations +# # Create a sketch with circle for pipe profile +# aSession.startOperation() +# aSketchFeature = featureToCompositeFeature(aPart.addFeature("Sketch")) +# origin = geomDataAPI_Point(aSketchFeature.attribute("Origin")) +# origin.setValue(0, 0, 200) +# dirx = geomDataAPI_Dir(aSketchFeature.attribute("DirX")) +# dirx.setValue(1, 0, 0) +# norm = geomDataAPI_Dir(aSketchFeature.attribute("Norm")) +# norm.setValue(0, 0, 1) +# +# # Create circle +# aSketchCircleFeature = aSketchFeature.addFeature("SketchCircle") +# anCircleCentr = geomDataAPI_Point2D(aSketchCircleFeature.attribute("CircleCenter")) +# aCircleRadius = aSketchCircleFeature.real("CircleRadius") +# anCircleCentr.setValue(0, 0) +# aCircleRadius.setValue(20) +# aSession.finishOperation() +# aSketchResult = aSketchFeature.firstResult() +# aSketchShape = aSketchResult.shape() +# +# # Create face +# aSession.startOperation() +# aFaceFeature = aPart.addFeature("Face") +# aBaseObjectsList = aFaceFeature.selectionList("base_objects") +# aShapeExplorer = GeomAPI_ShapeExplorer(aSketchShape, GeomAPI_Shape.EDGE) +# while aShapeExplorer.more(): +# aBaseObjectsList.append(aSketchResult, aShapeExplorer.current()) +# aShapeExplorer.next() +# aSession.finishOperation() +# aFaceResult2 = aFaceFeature.firstResult() +# +# aSession.startOperation() +# aPipeFeature = aPart.addFeature("Pipe") +# aBaseObjectsList = aPipeFeature.selectionList("base_objects") +# aBaseObjectsList.append(aFaceResult1, None) +# aBaseObjectsList.append(aFaceResult2, None) +# aPathObjectSelection = aPipeFeature.selection("path_object") +# aPathObjectSelection.setValue(aWireResult, None) +# aPipeFeature.string("creation_method").setValue("locations") +# aSession.finishOperation() +# +# # Test results +# assert (len(aPipeFeature.results()) > 0)