1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
abv 5d1833ef09 0023793: Tests failing when launched without data files
Call to locate_data_file moved from catch statement in test scripts to ensure that missing data file is correctly reported as SKIPPED status of the test.
TODO statements with single word 'Exception' made bit more specific ("**" added).
Test bugs/caf/buc60846 removed as it is aimed to test inexistent component (Sketcher).
TODO removed in test bugs/fclasses/bug22611 -- the missing command must be added or test removed.
Test bugs/step/bug133_4 removed as duplicate of bugs/step/bug133_2.
Command vinit added in test bugs/vis/bug23226 to ensure that viewer is properly initialized before command vvbo, and relevant TODO statements removed.
Redundant FAILED patterns removed in parse.rules in groups perf and v3d as they break appropriate handling of missing data files.
Added QA command OCC22611 to improve test case bugs/fclasses/bug22611.
Modified test case buc60898 (shape was renamed) and moved to folder moddata_3 to avoid checkshape in end file.
Test case vis/bug23226 was modified using function checkcolor.
2013-03-01 14:23:17 +04:00

134 lines
4.1 KiB
Plaintext
Executable File

puts "================"
puts "BUC61039"
puts "OCC343"
puts "================"
puts ""
cpulimit 9000
pload XDE
set filepath [locate_data_file lh3d_px1.igs]
if [catch {igesbrep $filepath a *} catch_result] {
puts "Faulty OCC343: here is reading problem"
} else {
puts "Reading OCC343 OK"
tpcompound a
#
# First sewing
#
sewing result1 100. a
set FaceList [explode result1 f]
set FaceListLength [llength ${FaceList}]
if { ${FaceListLength} < 1 } {
puts "OCC343 - Error : FaceListLength= ${FaceListLength}"
}
set X_List1 [list]
set Y_List1 [list]
set Z_List1 [list]
for {set i 1} {${i} <= ${FaceListLength}} {incr i} {
set props [sprops result1_${i}]
set list [split ${props} "\n\t"]
set listLength [llength ${list}]
if { ${listLength} < 20 } {
puts "OCC343 - Error : listLength= ${listLength}"
}
set Center_Gravity_X [lindex ${list} 5]
set Center_Gravity_Y [lindex ${list} 6]
set Center_Gravity_Z [lindex ${list} 7]
set Center_Gravity_X [lindex [split ${Center_Gravity_X}] [expr [llength [split ${Center_Gravity_X}] ] - 1] ]
set Center_Gravity_Y [lindex [split ${Center_Gravity_Y}] [expr [llength [split ${Center_Gravity_Y}] ] - 1] ]
set Center_Gravity_Z [lindex [split ${Center_Gravity_Z}] [expr [llength [split ${Center_Gravity_Z}] ] - 1] ]
lappend X_List1 ${Center_Gravity_X}
lappend Y_List1 ${Center_Gravity_Y}
lappend Z_List1 ${Center_Gravity_Z}
}
vinit
vdisplay result1
vfit
set CycleNumber 10
for {set j 1} {${j} <= ${CycleNumber}} {incr j} {
veraseall
#
# Second sewing
#
if [catch {igesbrep $filepath a *} catch_result] {
puts "Faulty OCC343: here is reading problem"
} else {
puts "Reading OCC343 OK"
}
tpcompound a
sewing result2 100. a
set FaceList [explode result2 f]
set FaceListLength [llength ${FaceList}]
if { ${FaceListLength} < 1 } then {puts "OCC343 - Error : FaceListLength= ${FaceListLength}"}
set X_List2 [list]
set Y_List2 [list]
set Z_List2 [list]
for {set i 1} {${i} <= ${FaceListLength}} {incr i} {
set props [sprops result2_${i}]
set list [split ${props} "\n\t"]
set listLength [llength ${list}]
if { ${listLength} < 20 } {
puts "OCC343 - Error : listLength= ${listLength}"
}
set Center_Gravity_X [lindex ${list} 5]
set Center_Gravity_Y [lindex ${list} 6]
set Center_Gravity_Z [lindex ${list} 7]
set Center_Gravity_X [lindex [split ${Center_Gravity_X}] [expr [llength [split ${Center_Gravity_X}] ] - 1] ]
set Center_Gravity_Y [lindex [split ${Center_Gravity_Y}] [expr [llength [split ${Center_Gravity_Y}] ] - 1] ]
set Center_Gravity_Z [lindex [split ${Center_Gravity_Z}] [expr [llength [split ${Center_Gravity_Z}] ] - 1] ]
lappend X_List2 ${Center_Gravity_X}
lappend Y_List2 ${Center_Gravity_Y}
lappend Z_List2 ${Center_Gravity_Z}
}
set ListLength [llength ${X_List1}]
if { ${ListLength} != [llength ${Y_List1}] } then {puts "OCC343 - Error : ListLength= ${ListLength}"}
if { ${ListLength} != [llength ${Z_List1}] } then {puts "OCC343 - Error : ListLength= ${ListLength}"}
if { ${ListLength} != [llength ${X_List2}] } then {puts "OCC343 - Error : ListLength= ${ListLength}"}
if { ${ListLength} != [llength ${Y_List2}] } then {puts "OCC343 - Error : ListLength= ${ListLength}"}
if { ${ListLength} != [llength ${Z_List2}] } then {puts "OCC343 - Error : ListLength= ${ListLength}"}
for {set i 0} {${i} < ${ListLength}} {incr i} {
set X1 [lindex ${X_List1} ${i}]
set X2 [lindex ${X_List2} ${i}]
if { ${X1} != ${X2} } {
puts "OCC343 - Error : X1= ${X1} X2= ${X2}"
}
set Y1 [lindex ${Y_List1} ${i}]
set Y2 [lindex ${Y_List2} ${i}]
if { ${Y1} != ${Y2} } {
puts "OCC343 - Error : Y1= ${Y1} Y2= ${Y2}"
}
set Z1 [lindex ${Z_List1} ${i}]
set Z2 [lindex ${Z_List2} ${i}]
if { ${Z1} != ${Z2} } {
puts "OCC343 - Error : Z1= ${Z1} Z2= ${Z2}"
}
}
tclean result1
vdisplay result1
vfit
}
}
set only_screen 1