From 4473e336553277b039276db0e9c274974828175b Mon Sep 17 00:00:00 2001 From: msv Date: Thu, 20 Dec 2018 17:10:00 +0300 Subject: [PATCH] 0030396: Infinite recursion during ShapeFix after BRepAlgoAPI_Cut Two test cases are added. One for Boolean operation (it is good, because BO has been fixed already), and another for fixshape operation (it causes Draw crash). --- tests/bugs/modalg_7/bug30396_1 | 47 ++++++++++++++++++++++++++++++++++ tests/bugs/modalg_7/bug30396_2 | 11 ++++++++ 2 files changed, 58 insertions(+) create mode 100644 tests/bugs/modalg_7/bug30396_1 create mode 100644 tests/bugs/modalg_7/bug30396_2 diff --git a/tests/bugs/modalg_7/bug30396_1 b/tests/bugs/modalg_7/bug30396_1 new file mode 100644 index 0000000000..6ddbd2416a --- /dev/null +++ b/tests/bugs/modalg_7/bug30396_1 @@ -0,0 +1,47 @@ +puts "========" +puts "0030396: Infinite recursion during ShapeFix after BRepAlgoAPI_Cut" +puts "========" +puts "" + +# With this order of tools the operation produced bad result +set list(1) {a_2 a_3 a_4 a_5 a_6 a_7} +# With this order of tools the operation produced good result +set list(2) {a_6 a_2 a_7 a_3 a_4 a_5} + +set nbw {33 23 29 0} +set nbf {33 17 23 0} +set nbsh {6 1 1 0} +set nbso {6 1 1 0} +set vol {3.24433 11.1953 7.95093 empty} +set area {25.9962 58.8635 53.1541 empty} +set nameop {common fuse cut cut21} + +bfuzzyvalue 1e-2 +bnondestructive 1 + +for {set i 1} { $i <= 2} {incr i} { + + restore [locate_data_file bug30396.brep] a + explode a + + bclearobjects + bcleartools + baddobjects a_1 + eval baddtools $list($i) + bfillds + + for {set iop 0} {$iop < 4} {incr iop} { + set oper [lindex $nameop $iop] + bbop r_${i}_$oper $iop + checknbshapes r_${i}_$oper -wire [lindex $nbw $iop] -face [lindex $nbf $iop]\ + -solid [lindex $nbso $iop] -shell [lindex $nbsh $iop] + checkprops r_${i}_$oper -v [lindex $vol $iop] -s [lindex $area $iop] + checkshape r_${i}_$oper + if {![regexp "OK" [bopcheck r_${i}_$oper]]} { + puts "Error: result $i of $oper is self-interfered shape" + } + } +} + +boptions -default +checkview -display r_1_cut -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/modalg_7/bug30396_2 b/tests/bugs/modalg_7/bug30396_2 new file mode 100644 index 0000000000..5ad8ce4b43 --- /dev/null +++ b/tests/bugs/modalg_7/bug30396_2 @@ -0,0 +1,11 @@ +puts "========" +puts "0030396: Infinite recursion during ShapeFix after BRepAlgoAPI_Cut" +puts "========" +puts "" + +puts "TODO 30396 ALL:TEST INCOMPLETE" + +# The shape bug30396_bad_result.brep has been saved in OCCT 7.3, before BO has been fixed. +restore [locate_data_file bug30396_bad_result.brep] a +# The Draw crashed here +fixshape r a