mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Command testfile is improved to be more usable by developers for checking data files used by the new test cases before their integration to the test data base: 1. Do not check and do not report problems found in the repo when checking new files -- this check is done only when argument is "-check" 2. Can check a file located in a directory listed in CSF_TestDataPath as new one without it being considered as already in the data base 3. For new BREP files, reports warning if the file contains triangulation, suggesting that it can be removed to minimize the size 4. Can identify the same (by content) file in the data base for the new files in DOS encoding (less than 1 MB) 5. Can detect duplicates among the input files 6. Outputs result in more clear form 7. When loading STL files, uses option "triangulation" to be efficient Automated Testing System guide is updated to describe command testfile. Added test demo testsystem testfile
52 lines
1.6 KiB
Plaintext
52 lines
1.6 KiB
Plaintext
puts "# This test is for command testfile, used to check new data files "
|
|
puts "# before adding to the data base:"
|
|
puts "# - bottle.brep should be reported as already in data base"
|
|
puts "# - hammer_copy.igs should be reported as duplicate"
|
|
puts "# - square.brep should be reported as new, with warnings on DOS encoding"
|
|
puts "# and presence of triangulation"
|
|
puts ""
|
|
|
|
puts "# Preparing test data files..."
|
|
|
|
# find reference data files (they should be present, otherwise test is meaningless)
|
|
set bottle [locate_data_file bottle.brep]
|
|
set hammer [locate_data_file hammer.iges]
|
|
|
|
# bottle is simply copied
|
|
file copy -force $bottle ${imagedir}/bottle.brep
|
|
|
|
# hammer is copied with different name and DOS encoding
|
|
set fd [open $hammer r]
|
|
set hammer_content [read $fd]
|
|
close $fd
|
|
set fd [open ${imagedir}/_hammer_copy.igs w]
|
|
fconfigure $fd -translation crlf
|
|
puts -nonewline $fd $hammer_content
|
|
close $fd
|
|
|
|
# square is created anew
|
|
pload MODELING
|
|
box b 11.1 11.1 11.1
|
|
explode b f
|
|
tcopy b_1 f
|
|
incmesh f 0.01
|
|
save f ${imagedir}/_square.brep
|
|
|
|
set fd [open ${imagedir}/_square.brep r]
|
|
set square_content [read $fd]
|
|
close $fd
|
|
set fd [open ${imagedir}/_square.brep w]
|
|
fconfigure $fd -translation crlf
|
|
puts -nonewline $fd $square_content
|
|
close $fd
|
|
|
|
puts ""
|
|
puts "REQUIRED ALL: bottle.brep: already present"
|
|
puts "REQUIRED ALL: hammer_copy.igs: duplicate"
|
|
puts "REQUIRED ALL: square.brep: new file"
|
|
puts "REQUIRED ALL: Warning: DOS encoding detected"
|
|
puts "REQUIRED ALL: Warning: shape contains triangulation"
|
|
|
|
testfile [list ${imagedir}/bottle.brep ${imagedir}/_hammer_copy.igs ${imagedir}/_square.brep]
|
|
|
|
puts "TEST COMPLETED" |