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/bug27187
mpv ec2039e9a7 0028714: XmlMFunction_ScopeDriver fail to read and write function label including 0 tag in label path.
Reproduced on TDF_Reference attribute that refers to label with zero-tags entry. Make checking of saved/retrieved tags in XML format pass zero-tags as correct.
2017-06-01 13:55:26 +03:00

25 lines
683 B
Plaintext

puts "==========="
puts "OCC27187"
puts "==========="
puts ""
#################################
# XmlMFunction_ScopeDriver fail to read and write function label including 0 tag in label path.
#################################
NewDocument Doc XmlOcaf
# label that contains "0" tag not only in "Root"
set Lab 0:1:4:9999:0:1:4:2001:4:2001:4:1:4:1001:4:1001
Label Doc $Lab
SetReference Doc 0:1 $Lab
set aFileName ${imagedir}/${casename}_doc.xml
SaveAs Doc ${aFileName}
Close Doc
# check that the reference is correctly restored
Open ${aFileName} Doc
if {[GetReference Doc 0:1] != $Lab} {
puts "Error: restored Reference attribute value is bad '[GetReference Doc 0:1]'"
}
Close Doc