1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/caf/bug24164_2
dln e837410dac 0024927: Getting rid of "Persistent" functionality -- Tests
All uses of "MDTV-Standard" and "MDTV-Design" in tests changed to "BinOcaf", and "MDTV-XCAF" changed to "BinXCAF".
Formats changed: .std to .cbf, .dxc to .dbf.

Test groups renamed accordingly:
xcaf: brep_to_dxc -> brep_to_xbf, igs_to_dxc -> igs_to_xbf, stp_to_dxc -> stp_to_xbf, dxc -> xbf/A1, dxc_add_CL -> xbf_add_CL
xml: ocaf_std -> ocaf_cbf, xcaf_dxc -> xcaf_xbf
2015-05-21 14:52:32 +03:00

70 lines
1.3 KiB
Plaintext

pload DCAF
set BugNumber OCC24164
if { [info exists imagedir] == 0 } {
set imagedir .
}
#1 open new document
NewDocument D BinOcaf
UndoLimit D 10 0 0
#2 define set of labels
NewCommand D
set Lab1 [Label D 0:1:1]
set Lab2 [Label D 0:1:2]
set Lab3 [Label D 0:1:3]
set Lab4 [Label D 0:1:4]
set Lab5 [Label D 0:1:5]
set Lab6 [Label D 0:1:6]
#3 set references
SetRefArray D $Lab1 1 2 $Lab2 $Lab1
SetRefArray D $Lab2 1 2 $Lab3 $Lab4
SetRefArray D $Lab3 1 1 $Lab1
#4 set additional references
NewCommand D
SetRefArray D $Lab4 1 2 $Lab5 $Lab1
SetRefArray D $Lab5 1 1 $Lab6
SetRefArray D $Lab6 1 2 $Lab3 $Lab4
NewCommand D
#5 check references
GetRefArray D $Lab1
GetRefArray D $Lab2
GetRefArray D $Lab3
GetRefArray D $Lab4
GetRefArray D $Lab5
GetRefArray D $Lab6
#6 save the document
SaveAs D ${imagedir}/testDoc2.cbf
#7 close the document
set catch_status 0
if { [catch {Close D} catch_result] } {
set catch_status 1
}
if { ${catch_status} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}
#8 reopen just saved document with the same name
Open ${imagedir}/testDoc2.cbf D
#9 close the document
if { [catch {Close D} catch_result] } {
set catch_status 1
}
if { ${catch_status} != 0 } {
puts "Faulty ${BugNumber}"
} else {
puts "OK ${BugNumber}"
}