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/bug1395_1
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

65 lines
1.5 KiB
Plaintext

puts "TODO OCC12345 ALL: OCC1395 Error : There is not the integer attribute on the label 0:2"
puts "TODO OCC12345 ALL: OCC1395 Error"
puts "================"
puts "OCC1395"
puts "================"
puts ""
#######################################################################################
# Wrong behaviour of Undo Redo and SetUndoLimit methods in TDocStd_Document
#######################################################################################
# Case 1 (Undo)
#######################################################################################
set IsGood 1
# Create a new document and set UndoLimit
NewDocument D BinOcaf
UndoLimit D 100
# Create a label
set aLabel 0:2
Label D ${aLabel}
# Open a transaction
OpenTran D
# Set integer attribute
set anInteger 5
SetInteger D ${aLabel} ${anInteger}
# Commit transaction
CommitTran D 1
# Undo
DFUndo D 1
# Check integer attributes
if [catch { set Integer [GetInteger D ${aLabel}] } message] {
set IsGood 0
puts "OCC1395 Error : There is not the integer attribute on the label ${aLabel}"
} else {
puts "OCC1395 OK : There is the integer attribute on the label ${aLabel}"
}
# Set real attribute
set aReal 8.8
SetReal D ${aLabel} ${aReal}
# Undo
DFUndo D 1
# Check real attributes
if [catch { set Real [GetReal D ${aLabel}] } message] {
set IsGood 0
puts "OCC1395 Error : There is not the real attribute on the label ${aLabel}"
} else {
puts "OCC1395 OK : There is the real attribute on the label ${aLabel}"
}
if { ${IsGood} == 1 } {
puts "OCC1395 OK"
} else {
puts "OCC1395 Error"
}