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/bug31382
dpasukhi ea86bfe2fa Testing - Removing direct DCAF loading #147
DCAF require VISUALIZATION for correct work.
  In some scenario DRAWEXE can generate a dublicates of the
  internal static singletons. This means each dynamic library
  will have their own instance of the static singleton.
Update all direct library loading to use the DCAF plugin
  mechanism. This will ensure that the DCAF plugin is loaded
  only once and that the correct instance is used.
Originally issue is reproduced only Linux with dlopen with "RTLD_LAZY".
Can be resolved additionally adding "RTLD_LAZY | RTLD_GLOBAL" for dlopen
2024-11-05 17:00:06 +00:00

82 lines
2.1 KiB
Plaintext

puts "# =============================================================================="
puts "# 0031382: Data Exchange - BinXCAF should preserve length unit information"
puts "# =============================================================================="
pload OCAF
box b 10 20 30
catch { Close D }
catch { Close D1 }
# check saving value of length unit
NewDocument D XmlXCAF
XAddShape D b 0
XSetLengthUnit D in
XSave D ${imagedir}/${casename}.xml
XOpen ${imagedir}//${casename}.xml D1
set LU [XGetLengthUnit D1]
if {$LU != "in"} {
puts "Error: Length unit is not coincided with given1"
}
Close D
Close D1
NewDocument D BinXCAF
XAddShape D b 0
XSetLengthUnit D m
XSave D ${imagedir}/${casename}.xbf
XOpen ${imagedir}//${casename}.xbf D1
set LU [XGetLengthUnit D1]
if {$LU != "m"} {
puts "Error: Length unit is not coincided with given2"
}
Close D
Close D1
# if length unit is undefined in the document value from session
# must be set to document before saving it to xml
NewDocument D XmlXCAF
param xstep.cascade.unit 5
XAddShape D b 0
XSave D ${imagedir}/${casename}.xml
set LU [XGetLengthUnit D]
if {$LU == "mm"} {
puts "Error: Length unit is not coincided with given3"
}
XOpen ${imagedir}//${casename}.xml D1
set LU [XGetLengthUnit D1]
if {$LU == "stat.mile"} {
puts "Length unit is coincided with given"
} else {
puts "Error: Length unit is not coincided with given4"
}
Close D
Close D1
# if length unit is undefined in the document value from session
# must be set to document before saving it to xbf
NewDocument D BinXCAF
param xstep.cascade.unit 7
XAddShape D b 0
XSave D ${imagedir}/${casename}.xbf
set LU [XGetLengthUnit D]
if {$LU == "km"} {
puts "Length unit is coincided with given"
} else {
puts "Error: Length unit is not coincided with given"
}
XOpen ${imagedir}//${casename}.xbf D1
set LU [XGetLengthUnit D1]
if {$LU == "km"} {
puts "Length unit is coincided with given"
} else {
puts "Error: Length unit is not coincided with given"
}
# return to default global unit
param xstep.cascade.unit 2
file delete ${imagedir}//${casename}.xbf
file delete ${imagedir}//${casename}.xml
Close D
Close D1