1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/tests/bugs/step/bug32310
dpasukhi 475da0f135 0032310: Data Exchange - Invalid STEP export/import of backslashes in names [Regression since OCCT 7.5.0]
Fixed a problem with handling slashes and apostrophes
Changed cleaning of the 'TEXT' fields of the step entity to direct order w/o removing operations
Changed converting text locale to covert before cleaning directives and specials symbols (all directives and sp. symbols encoded in ASCII[0-125] and haven't any differ with any locals)
Special case, when directives have two slashes before name changed to don't handle directives value and converts as is (combine two slashes as one and write, for example "\\X2\00C3" as "X2\00C3")
2021-10-15 19:52:25 +03:00

29 lines
658 B
Plaintext

puts "===================================="
puts "0032310: Data Exchange - Invalid STEP export/import of backslashes in names \[Regression since OCCT 7.5.0\]"
puts "===================================="
puts ""
pload DCAF
Close D -silent
XNewDoc D
box box 1 1 1
XAddShape D box
SetName D 0:1:1:1 "a'''\\b\n\t\\c\\\\\\\\"
set original_name [GetName D 0:1:1:1]
WriteStep D "$imagedir/${casename}.stp"
Close D
ReadStep D "$imagedir/${casename}.stp"
set imported_name [GetName D 0:1:1:1]
file delete "$imagedir/${casename}.stp"
if {$original_name != $imported_name} {
puts "Error: 'Incorrect exporting name: $original_name != $imported_name"
}
Close D