1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
apv 9026dea8d2 Update of tests database
Test for 0028167: Fillet has strange form at its end
Test for 0028168: Exception is raised during Boolean operation
Test for 0028194: BRepMesh - Standard_OutOfRange exception on valid shape
Test for 0028200: Invalid topology of the general fuse result
Test for 0028216: Intersection of a face and a solid is broken up leading to empty result of Boolean common operation
Test for 0028245: Result of Cells Builder algorithm becomes invalid after removal of internal boundaries on faces
Test for 0028247: Effect of minSize parameter of BRepMesh_IncrementalMesh seems to be too strong
Test for 0028274: BOPAlgo_MakerVolume fails to create solid
Test for 0028279: Greater oscillations and higher degree of resulting B-Spline in cylinder-cylinder intersections in 7.1.0
Test for 0028354: Filleting destroys shape if the filleted edge touches a seam edge
Test for 0028366: BOP Common fails with solid and planar face
Test for 0028379: BRepMesh produces mangled mesh for a cone
Test for 0028388: Boolean common of simple face and solid results in empty compound
Test for 0028393: Boolean cut produce wrong result.
Test for 0028402: Modeling - calculation of properties of complex compounds is slow
Test for 0028406: High tolerances after boolean operation on OCCT 6.9.1
Test for 0028694: IGES reader produces too small edge covered by its vertices
Test for 0028719: Mesh - Display issue for special model
Test for 0028108: Sweep fails in "Right Corner" mode
Test for 0028696: Offset 2D algorithm produces micro edges
Test for 0028700: BRepBuilderAPI_Sewing produces too small edge covered by its vertices
Test for 0028722: Conversion of a spherical face to a spline produces an invalid shape
Test for 0028739: Draft on face fails
Test for 0028662: Data Exchange - Exception during reading large STEP file.
Test for 0028768: ShapeFix slighly corrupts the source face
Test for 0028485: Fuse of two shapes using gluing and non-destructive options gives invalid result
Test for 0028500: Artifact in shaded view of the shape
Test for 0028523: Fixshape reverses the orientation of the face
Test for 0028544: Big tolerance value is returned by Implicit-parametric algorithm
Test for 0028571: BRepOffsetAPI_MakeOffset build invalid wire
Test for 0028572: Wrong result of the mkface command
Test for 0028595: Shifting 2d curves for non-periodic surfaces leads to incorrect result.
Test for 0028596: Erroneous fillet
Test for 0028640: BRepBuilderAPI_Transform build invalid shape
Test for 0028656: 3d offset modifies the input shape
Test for 0000077: BUC60866. The BRepFill_Pipe fails.
Test for 0000078: BUC60875. Pipe is created incorrectly on two wires.
Test for 0000082: BUC60908. Incomplete section of shell by plane.
Test for 0000083: BUC60912. Section of simple BSpline surfaces is performed too slow.
Test for 0000862: GeomAPI_ExtremaCurveCurve fails on given curves
Test for 0002442: Error in BRepClass3d_SolidClassifier
Test for 0003936: Face on a surface of extrusion is extended after import to IGES
Test for 0005081: BRepOffset_MakeOffsetShape algorithm does not return valid result.
Test for 0005145: Wrong result of projection of a circle on a sphere.
Test for 0014846: ShapeFix_Wireframe::FixWireGaps() works wrong on a shape with seam edge
Test for 0016424: Exception in reading of attached IGES file
Test for 0010377: Incorrect fuse result when objects tangent by planar face
Test for 0013565: Incorrect result of Common operation
Test for 0013566: Incorrect result of Extrema between a large circle and a line
Test for 0024632: Artifacts during Boolean cut operation on neighboring parts
Test for 0005582: Impossible to make offset on the shape with degenerated edge
2017-10-06 10:28:34 +03:00

139 lines
2.7 KiB
Plaintext
Executable File

puts "TODO OCC77 ALL: Error : The area of result shape is"
puts "====="
puts "OCC77"
puts "====="
puts ""
####################################
# BUC60866. The BRepFill_Pipe fails.
####################################
restore [locate_data_file buc60866a.rle] Section
restore [locate_data_file buc60866b.rle] PathBad
set area 1.12049e+07
set nbshapes_expected "
Number of shapes in shape
VERTEX : 15
EDGE : 22
WIRE : 8
FACE : 8
SHELL : 2
SOLID : 0
COMPSOLID : 0
COMPOUND : 1
SHAPE : 56
"
smallview
display Section
display PathBad
fit
#
# Mode = 0 - CorrectedFrenet
#
pipe result_0 PathBad Section
checkshape result_0
checkprops result_0 -s ${area}
checknbshapes result_0 -ref ${nbshapes_expected} -t -m "Pipe"
set info [bopcheck result_0]
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
puts "Error : The BRepFill_Pipe fails, 0"
}
donly result_0
checkview -screenshot -2d -path ${imagedir}/${test_image}_0.png
#
# Mode = 1 - Frenet
#
set Mode 1
pipe result_1 PathBad Section ${Mode}
checkshape result_1
checkprops result_1 -s ${area}
checknbshapes result_1 -ref ${nbshapes_expected} -t -m "Pipe"
set info [bopcheck result_1]
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
puts "Error : The BRepFill_Pipe fails, 1"
}
donly result_1
checkview -screenshot -2d -path ${imagedir}/${test_image}_1.png
#####
##### Approx - force C1-approximation if result is C0
#####
set Approx 1
set Mode 1
pipe result_1_a PathBad Section ${Mode} ${Approx}
checkshape result_1_a
checkprops result_1_a -s ${area}
checknbshapes result_1_a -ref ${nbshapes_expected} -t -m "Pipe"
set info [bopcheck result_1_a]
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
puts "Error : The BRepFill_Pipe fails, 1a"
}
donly result_1_a
checkview -screenshot -2d -path ${imagedir}/${test_image}_1_a.png
#
# Mode = 2 - DiscreteTrihedron
#
set Mode 2
pipe result_2 PathBad Section ${Mode}
checkshape result_2
checkprops result_2 -s ${area}
checknbshapes result_2 -ref ${nbshapes_expected} -t -m "Pipe"
set info [bopcheck result_2]
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
puts "Error : The BRepFill_Pipe fails, 2"
}
donly result_2
checkview -screenshot -2d -path ${imagedir}/${test_image}_2.png
#####
##### Approx - force C1-approximation if result is C0
#####
set Approx 1
set Mode 2
pipe result_2_a PathBad Section ${Mode} ${Approx}
checkshape result_2_a
checkprops result_2_a -s ${area}
checknbshapes result_2_a -ref ${nbshapes_expected} -t -m "Pipe"
set info [bopcheck result_2_a]
if { [regexp "This shape seems to be OK" ${info}] != 1 } {
puts "Error : The BRepFill_Pipe fails, 2a"
}
donly result_2_a
checkview -screenshot -2d -path ${imagedir}/${test_image}_2_a.png