1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/xde/bug9531
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

112 lines
3.5 KiB
Plaintext
Executable File

puts "TODO OCC12345 ALL: OCC9531: Faulty"
puts "============"
puts "OCC9531"
puts "============"
puts ""
#######################################################################
# Regression after writing-reading operation
#######################################################################
set BugNumber OCC9531
set IsOk 1
set filepath [locate_data_file 919-001-T02-04-CP-VL.igs]
if {[catch {igesread $filepath OCC9531a *}]} {
puts "Faulty ${BugNumber} : here is reading problem"
set IsOk 0
}
file delete ${imagedir}/OCC9531tmp.igs
if {[catch {brepiges OCC9531a ${imagedir}/OCC9531tmp.igs}]} {
puts "Faulty ${BugNumber} : here is conversation to brep problem"
set IsOk 0
}
catch {exec chmod 777 ${imagedir}/OCC9531tmp.igs}
if {[catch {igesread ${imagedir}/OCC9531tmp.igs OCC9531b *}]} {
puts "Faulty ${BugNumber} : here is 2nd reading problem"
set IsOk 0
}
if { ${IsOk} == 1} {
set aTokList {= }
set Tol1 [lindex [split [tolerance OCC9531a] ${aTokList}] 2]
set Tol2 [lindex [split [tolerance OCC9531b] ${aTokList}] 2]
set percent_max 0.1
set Tolerance_percent [GetPercent ${Tol1} ${Tol2}]
puts "Tolerance_percent = ${Tolerance_percent} %"
if { ${Tolerance_percent} > ${percent_max} } {
set IsOk 0
}
set good_square 5236.89
set good_vertex 5748
set good_edge 5680
set good_wire 915
set good_face 899
set good_shell 0
set good_solid 0
set good_compsolid 0
set good_compound 1
set good_shape 13243
set nb_info [nbshapes OCC9531a]
regexp {Mass +: +([-0-9.+eE]+)} [sprops OCC9531a] full sq1
regexp {VERTEX +: +([-0-9.+eE]+)} $nb_info full nb_v1
regexp {EDGE +: +([-0-9.+eE]+)} $nb_info full nb_e1
regexp {WIRE +: +([-0-9.+eE]+)} $nb_info full nb_w1
regexp {FACE +: +([-0-9.+eE]+)} $nb_info full nb_f1
regexp {SHELL +: +([-0-9.+eE]+)} $nb_info full nb_sh1
regexp {SOLID +: +([-0-9.+eE]+)} $nb_info full nb_sol1
regexp {COMPSOLID +: +([-0-9.+eE]+)} $nb_info full nb_compsol1
regexp {COMPOUND +: +([-0-9.+eE]+)} $nb_info full nb_compound1
regexp {SHAPE +: +([-0-9.+eE]+)} $nb_info full nb_shape1
if {$sq1 != $good_square
|| $nb_v1 != $good_vertex
|| $nb_e1 != $good_edge
|| $nb_w1 != $good_wire
|| $nb_f1 != $good_face
|| $nb_sh1 != $good_shell
|| $nb_sol1 != $good_solid
|| $nb_compsol1 != $good_compsolid
|| $compound1 != $good_compound
|| $nb_shape1 != $good_shape } {
set IsOk 0
}
set nb_info [nbshapes OCC9531b]
regexp {Mass +: +([-0-9.+eE]+)} [sprops OCC9531b] full sq2
regexp {VERTEX +: +([-0-9.+eE]+)} $nb_info full nb_v2
regexp {EDGE +: +([-0-9.+eE]+)} $nb_info full nb_e2
regexp {WIRE +: +([-0-9.+eE]+)} $nb_info full nb_w2
regexp {FACE +: +([-0-9.+eE]+)} $nb_info full nb_f2
regexp {SHELL +: +([-0-9.+eE]+)} $nb_info full nb_sh2
regexp {SOLID +: +([-0-9.+eE]+)} $nb_info full nb_sol2
regexp {COMPSOLID +: +([-0-9.+eE]+)} $nb_info full nb_compsol2
regexp {COMPOUND +: +([-0-9.+eE]+)} $nb_info full nb_compound2
regexp {SHAPE +: +([-0-9.+eE]+)} $nb_info full nb_shape2
if {$sq2 != $good_square
|| $nb_v2 != $good_vertex
|| $nb_e2 != $good_edge
|| $nb_w2 != $good_wire
|| $nb_f2 != $good_face
|| $nb_sh2 != $good_shell
|| $nb_sol2 != $good_solid
|| $nb_compsol2 != $good_compsolid
|| $compound2 != $good_compound
|| $nb_shape2 != $good_shape } {
set IsOk 0
}
if { ${IsOk} == 0 } {
puts "${BugNumber}: Faulty"
} else {
puts "${BugNumber}: OK"
}
}
renamevar OCC9531b result
set 2dviewer 0