1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
ski 607a96d42a 0023619: Integration of test grid "xml" into the new testing system
Removing XML Validator
Improvements of begin and TODO's in testing cases
small correction in begin file to provide normal behavior of tests if Java is not installed
2013-03-01 14:27:39 +04:00

55 lines
1.4 KiB
Plaintext

if { [string compare $subgroup "ocaf_xml"] == 0 } {
puts "TODO ?OCC23768 ALL: Error : File is not valid"
puts "TODO ?OCC23768 ALL: Error at line"
}
set aTestName "caf001-G3"
puts ${aTestName}
set aTokList { :,}
# Add an attribute to a data framework
set aSetX1 10
set aSetY1 20
set aSetZ1 30
point aPoint1 ${aSetX1} ${aSetY1} ${aSetZ1}
set aDumpPoint1 [dump aPoint1]
regexp {Point : ([-0-9.+eE]+), ([-0-9.+eE]+), ([-0-9.+eE]+)} ${aDumpPoint1} full X_Point1 Y_Point1 Z_Point1
set aLabel 0:2
SetPoint D ${aLabel} aPoint1
# Close/Open the transaction
NewCommand D
# Save the document
set aFile $WorkDirectory/${aTestName}.${FileSuffix}
SaveToFile D $aFile
# Restore the document
Close D
Open ${aFile} DD
# Get a value of the attribute
set IsDone [catch {set aGetAttr3 [GetPoint DD ${aLabel}]} aResult]
if { ${IsDone} != 0 } {
puts "Error : Get a value of TDataStd_Point attribute from restoring document"
} else {
GetPoint DD ${aLabel} aPoint5
set aDumpPoint5 [dump aPoint5]
regexp {Point : ([-0-9.+eE]+), ([-0-9.+eE]+), ([-0-9.+eE]+)} ${aDumpPoint5} full X_Point5 Y_Point5 Z_Point5
if { ${X_Point1} != ${X_Point5} ||
${Y_Point1} != ${Y_Point5} ||
${Z_Point1} != ${Z_Point5} } {
puts "X_Point1=${X_Point1} X_Point5=${X_Point5}"
puts "Y_Point1=${Y_Point1} Y_Point5=${Y_Point5}"
puts "Z_Point1=${Z_Point1} Z_Point5=${Z_Point5}"
puts "Error : Get a value of TDataStd_Point attribute from restoring document"
}
}