diff --git a/src/DrawResources/DrawDefault b/src/DrawResources/DrawDefault index ef49dfa358..9e746435ff 100755 --- a/src/DrawResources/DrawDefault +++ b/src/DrawResources/DrawDefault @@ -51,6 +51,11 @@ if { [info exists env(CASROOT)] && [file isdirectory $env(CASROOT)/tests] } { } else { set env(CSF_TestScriptsPath) $env(CSF_TestScriptsPath)[_path_separator]$env(CASROOT)/tests } + if { ! [info exists env(CSF_TestDataPath)] } { + set env(CSF_TestDataPath) $env(CASROOT)/data + } else { + set env(CSF_TestDataPath) $env(CSF_TestDataPath)[_path_separator]$env(CASROOT)/data + } } # load application-defined initialization script, which is expected to diff --git a/src/DrawResources/TestCommands.tcl b/src/DrawResources/TestCommands.tcl index b09c041a57..b4a37f6ff0 100644 --- a/src/DrawResources/TestCommands.tcl +++ b/src/DrawResources/TestCommands.tcl @@ -32,16 +32,21 @@ set _tests_verbose 0 set _test_case_regexp {^CASE\s+([\w.-]+)\s+([\w.-]+)\s+([\w.-]+)\s*:\s*([\w]+)(.*)} # Basic command to run indicated test case in DRAW -help test {Run specified test case - Use: test group grid casename [echo=0] - - If echo is set to 0 (default), log is stored in memory and only summary - is output (the log can be obtained with command \'dlog get\') - - If echo is set to 1, all commands and results are echoed immediately, - thus log is not saved and summary is not produced} +help test { + Run specified test case + Use: test group grid casename [echo=0] + - If echo is set to 0 (default), log is stored in memory and only summary + is output (the log can be obtained with command "dlog get") + - If echo is set to 1 or "-echo", all commands and results are echoed + immediately, but log is not saved and summary is not produced +} proc test {group grid casename {echo 0}} { # get test case paths (will raise error if input is invalid) _get_test $group $grid $casename dir gridname casefile + # if echo specified as "-echo", convert it to bool + if { "$echo" == "-echo" } { set echo t } + # run test uplevel _run_test $dir $group $gridname $casefile $echo @@ -54,16 +59,17 @@ proc test {group grid casename {echo 0}} { } # Basic command to run indicated test case in DRAW -help testgrid {Run all tests, or specified group, or one grid - Use: testgrid logdir [group [grid]] [options...] - Log directory should be empty (or non-existing) - Allowed options are: - -parallel N: run in parallel mode with up to N processes (default 0) - -refresh N: save summary logs every N seconds (default 60, minimal 1, 0 to disable) - -overwrite: force writing logs in existing non-empty directory - -xml filename: write XML report for Jenkins (in JUnit-like format) +help testgrid { + Run all tests, or specified group, or one grid + Use: testgrid [group [grid]] [options...] + Allowed options are: + -parallel N: run N parallel processes (default is number of CPUs, 0 to disable) + -refresh N: save summary logs every N seconds (default 60, minimal 1, 0 to disable) + -outdir dirname: set log directory (should be empty or non-existing) + -overwrite: force writing logs in existing non-empty directory + -xml filename: write XML report for Jenkins (in JUnit-like format) } -proc testgrid {logdir args} { +proc testgrid {args} { global env tcl_platform _tests_verbose ###################################################### @@ -77,8 +83,9 @@ proc testgrid {logdir args} { } # treat options - set parallel 0 + set parallel [_get_nb_cpus] set refresh 60 + set logdir "" set overwrite 0 set xmlfile "" for {set narg 0} {$narg < [llength $args]} {incr narg} { @@ -87,10 +94,10 @@ proc testgrid {logdir args} { # parallel execution if { $arg == "-parallel" } { incr narg - if { $narg < [llength $args] } { + if { $narg < [llength $args] && ! [regexp {^-} [lindex $args $narg]] } { set parallel [expr [lindex $args $narg]] } else { - set parallel 2 + error "Option -parallel requires argument" } continue } @@ -98,10 +105,21 @@ proc testgrid {logdir args} { # refresh logs time if { $arg == "-refresh" } { incr narg - if { $narg < [llength $args] } { + if { $narg < [llength $args] && ! [regexp {^-} [lindex $args $narg]] } { set refresh [expr [lindex $args $narg]] } else { - set refresh 10 + error "Option -refresh requires argument" + } + continue + } + + # output directory + if { $arg == "-outdir" } { + incr narg + if { $narg < [llength $args] && ! [regexp {^-} [lindex $args $narg]] } { + set logdir [lindex $args $narg] + } else { + error "Option -outdir requires argument" } continue } @@ -115,7 +133,7 @@ proc testgrid {logdir args} { # refresh logs time if { $arg == "-xml" } { incr narg - if { $narg < [llength $args] } { + if { $narg < [llength $args] && ! [regexp {^-} [lindex $args $narg]] } { set xmlfile [lindex $args $narg] } if { $xmlfile == "" } { @@ -142,8 +160,14 @@ proc testgrid {logdir args} { # check that target log directory is empty or does not exist set logdir [file normalize [string trim $logdir]] if { $logdir == "" } { - # if specified logdir is empty string, generate unique name like "results_2010-12-31T23:59:59" - set logdir "results_[clock format [clock seconds] -format {%Y-%m-%dT%H%M}]" + # if specified logdir is empty string, generate unique name like + # results__ + set prefix "results" + if { ! [catch {exec git branch} gitout] && + [regexp {[*] ([\w]+)} $gitout res branch] } { + set prefix "${prefix}_$branch" + } + set logdir "${prefix}_[clock format [clock seconds] -format {%Y-%m-%dT%H%M}]" set logdir [file normalize $logdir] } if { [file isdirectory $logdir] && ! $overwrite && ! [catch {glob -directory $logdir *}] } { @@ -290,7 +314,7 @@ proc testgrid {logdir args} { set worker [tpool::create -minworkers $parallel -maxworkers $parallel] # suspend the pool until all jobs are posted, to prevent blocking of the process # of starting / processing jobs by running threads - tpool::suspend $worker + catch {tpool::suspend $worker} if { $_tests_verbose > 0 } { _log_and_puts log "Executing tests in (up to) $parallel threads" } } } @@ -311,7 +335,7 @@ proc testgrid {logdir args} { set fd_cmd [open $logdir/$group/$grid/${casename}.tcl w] puts $fd_cmd "$imgdir_cmd" puts $fd_cmd "set test_image $casename" - puts $fd_cmd "_run_test $dir $group $grid $casefile 1" + puts $fd_cmd "_run_test $dir $group $grid $casefile t" # use dlog command to obtain complete output of the test when it is absent (i.e. since OCCT 6.6.0) # note: this is not needed if echo is set to 1 in call to _run_test above @@ -361,7 +385,7 @@ proc testgrid {logdir args} { # get results of started threads if { $parallel > 0 } { - tpool::resume $worker + catch {tpool::resume $worker} while { [llength [array names job_def]] > 0 } { foreach job [tpool::wait $worker [array names job_def]] { eval _log_test_case \[tpool::get $worker $job\] $job_def($job) log @@ -402,20 +426,21 @@ proc testgrid {logdir args} { } # Procedure to compare results of two runs of test cases -help testdiff {Compare results of two executions of tests (CPU times, ...) - Use: testdiff dir1 dir2 [options...] - Where dir1 and dir2 are directories containing logs of two test runs. - Allowed options are: - -save filename: save resulting log in specified file - -subdir name: compare only specified subdirectory (can be nested) - -status {same|ok|all}: filter cases for comparing by their status: - same - only cases with same status are compared (default) - ok - only cases with OK status in both logs are compared - all - results are compared regardless of status - -verbose level: - 1 - output only differences - 2 - output list of logs and directories present in one of dirs only - 3 - (default) output progress messages +help testdiff { + Compare results of two executions of tests (CPU times, ...) + Use: testdiff dir1 dir2 [options...] + Where dir1 and dir2 are directories containing logs of two test runs. + Allowed options are: + -save filename: save resulting log in specified file + -subdir name: compare only specified subdirectory (can be nested) + -status {same|ok|all}: filter cases for comparing by their status: + same - only cases with same status are compared (default) + ok - only cases with OK status in both logs are compared + all - results are compared regardless of status + -verbose level: + 1 - output only differences + 2 - output list of logs and directories present in one of dirs only + 3 - (default) output progress messages } proc testdiff {dir1 dir2 args} { if { "$dir1" == "$dir2" } { @@ -860,9 +885,29 @@ proc _log_html {file log {title {}}} { puts $fd "

" } - # print body, then end and close + # print log body, trying to add HTML links to script files on lines like + # "Executing ..." puts $fd "

"
-    puts $fd $log
+    set logpath [file split [file normalize $file]]
+    foreach line [split $log "\n"] {
+        if { [regexp {Executing[ \t]+([a-zA-Z0-9._/:-]+[^.])} $line res script] &&
+             [file exists $script] } {
+
+            # generate relative path to the script file 
+            set url "file://[file normalize $script]"
+            set scriptpath [file split [file normalize $script]]
+	    for {set i 0} {$i < [llength $logpath]} {incr i} {
+                if { "[lindex $logpath $i]" != "[lindex $scriptpath $i]]" } {
+                    if { $i == 0 } { break }
+                    set url "[string repeat "../" [expr [llength $logpath] - $i - 1]]/[file join [lrange $scriptpath $i end]]"
+                    break
+                }
+            }
+
+            set line [regsub $script $line "$script"]
+        }
+        puts $fd $line
+    }
     puts $fd "
" close $fd @@ -1247,32 +1292,38 @@ proc _path_separator {} { proc locate_data_file {filename} { global env groupname gridname casename + # check if the file is located in the subdirectory data of the script dir set scriptfile [info script] - if { $scriptfile == "" } { - error "Error: This procedure (locate_data_file) is for use only in test scripts!" + if { $scriptfile != "" } { + set path [file join [file dirname $scriptfile] data $filename] + if { [file exists $path] } { + return [file normalize $path] + } } - # check sub-directories in paths indicated by CSF_TestDataPath - if { [info exists env(CSF_TestDataPath)] } { + # check sub-directories in paths indicated by CSF_TestDataPath + if { [info exists env(CSF_TestDataPath)] } { foreach dir [_split_path $env(CSF_TestDataPath)] { - while {[llength $dir] != 0} { - set dir [lassign $dir name] - lappend dir {*}[glob -nocomplain -directory $name -type d *] - if { [file exists $name/$filename] } { - return [file normalize $name/$filename] - } + while {[llength $dir] != 0} { + set name [lindex $dir 0] + set dir [lrange $dir 1 end] + eval lappend dir [glob -nocomplain -directory $name -type d *] + if { [file exists $name/$filename] } { + return [file normalize $name/$filename] } + } } - } - - # check datadir + } + + # check current datadir if { [file exists [uplevel datadir]/$filename] } { - return [uplevel datadir]/$filename + return [file normalize [uplevel datadir]/$filename] } # raise error - error [join [list "Error: file $filename could not be found neither in script" \ - "directories nor in paths indicated by CSF_TestDataPath environment variable"] "\n"] + error [join [list "Error: file $filename could not be found" \ + "(should be in paths indicated by CSF_TestDataPath environment variable, " \ + "or in subfolder data in the script directory)"] "\n"] } # Procedure to make a diff and common of two lists @@ -1389,3 +1440,38 @@ proc _test_diff {dir1 dir2 basename status verbose _logvar {_statvar ""}} { _log_and_puts log "Total CPU difference: $stat(cpu1) / $stat(cpu2)" } } + +# get number of CPUs on the system +proc _get_nb_cpus {} { + global tcl_platform env + + if { "$tcl_platform(platform)" == "windows" } { + # on Windows, take the value of the environment variable + if { [info exists env(NUMBER_OF_PROCESSORS)] && + ! [catch {expr $env(NUMBER_OF_PROCESSORS) > 0} res] && $res >= 0 } { + return $env(NUMBER_OF_PROCESSORS) + } + } elseif { "$tcl_platform(os)" == "Linux" } { + # on Linux, take number of logical processors listed in /proc/cpuinfo + if { [catch {open "/proc/cpuinfo" r} fd] } { + return 0 ;# should never happen, but... + } + set nb 0 + while { [gets $fd line] >= 0 } { + if { [regexp {^processor[ \t]*:} $line] } { + incr nb + } + } + close $fd + return $nb + } elseif { "$tcl_platform(os)" == "Darwin" } { + # on MacOS X, call sysctl command + if { ! [catch {exec sysctl hw.ncpu} ret] && + [regexp {^hw[.]ncpu[ \t]*:[ \t]*([0-9]+)} $ret res nb] } { + return $nb + } + } + + # if cannot get good value, return 0 as default + return 0 +} diff --git a/tests/demo/begin b/tests/demo/begin deleted file mode 100644 index d4f0db4dfd..0000000000 --- a/tests/demo/begin +++ /dev/null @@ -1,10 +0,0 @@ -# add path to subdirectory tests_data to CSF_TestDataPath, -# for testing of files search procedure - -if { ! [info exists env(CSF_TestDataPath)] } { - set env(CSF_TestDataPath) "[file dirname [info script]]/tests_data" -} elseif { ! [regexp {demo/tests_data} $env(CSF_TestDataPath)] } { - set env(CSF_TestDataPath) "$env(CSF_TestDataPath)[_path_separator][file dirname [info script]]/tests_data" -} - -puts "CSF_TestDataPath set to $env(CSF_TestDataPath)" \ No newline at end of file diff --git a/tests/demo/data/file1.empty b/tests/demo/data/file1.empty index 89a80e3bab..95731c520a 100644 --- a/tests/demo/data/file1.empty +++ b/tests/demo/data/file1.empty @@ -1 +1 @@ -file used by test grid1/A1 +file used by test testsystem/locate_data_file diff --git a/tests/demo/draw/getsource b/tests/demo/draw/getsource old mode 100644 new mode 100755 index acfe3bbac1..143151b8a2 --- a/tests/demo/draw/getsource +++ b/tests/demo/draw/getsource @@ -1,7 +1,15 @@ # test for command getsource # check that path returned for command pload is as expected -set expected src/Draw/Draw_PloadCommands.cxx +if { [array get env os_type] != "" } { + set os $env(os_type) +} +puts $os +if { [string compare $os "windows"] == 0 } { + set expected src/Draw/Draw_PloadCommands.cxx +} else { + set expected /src/Draw/Draw_PloadCommands.cxx +} set path [lindex [getsourcefile pload] 1] if { [string compare $path $expected] } { puts "Error: command 'getsourcefile pload' returned '$path' while expected '$expected'" diff --git a/tests/demo/tests_data/demo/file3.empty b/tests/demo/tests_data/demo/file3.empty deleted file mode 100644 index 89a80e3bab..0000000000 --- a/tests/demo/tests_data/demo/file3.empty +++ /dev/null @@ -1 +0,0 @@ -file used by test grid1/A1 diff --git a/tests/demo/tests_data/demo/testsystem/file5.empty b/tests/demo/tests_data/demo/testsystem/file5.empty deleted file mode 100644 index 89a80e3bab..0000000000 --- a/tests/demo/tests_data/demo/testsystem/file5.empty +++ /dev/null @@ -1 +0,0 @@ -file used by test grid1/A1 diff --git a/tests/demo/tests_data/file4.empty b/tests/demo/tests_data/file4.empty deleted file mode 100644 index 89a80e3bab..0000000000 --- a/tests/demo/tests_data/file4.empty +++ /dev/null @@ -1 +0,0 @@ -file used by test grid1/A1 diff --git a/tests/demo/testsystem/A1 b/tests/demo/testsystem/A1 deleted file mode 100644 index 7922118759..0000000000 --- a/tests/demo/testsystem/A1 +++ /dev/null @@ -1,17 +0,0 @@ -# Test procedure locate_data_file - -# Successful search -puts "Data file 1 found in [locate_data_file file1.empty]" -puts "Data file 2 found in [locate_data_file file2.empty]" -puts "Data file 3 found in [locate_data_file file3.empty]" - -# Failed search -if [catch {locate_data_file file4.empty}] { - puts "Data file file4.empty not found, that is OK" -} else { - error "Data file file4.empty is found, while it should not be" -} - -puts "Data file 5 found in [locate_data_file file5.empty]" - -puts "TEST COMPLETED" diff --git a/tests/demo/testsystem/data/file2.empty b/tests/demo/testsystem/data/file2.empty index 89a80e3bab..95731c520a 100644 --- a/tests/demo/testsystem/data/file2.empty +++ b/tests/demo/testsystem/data/file2.empty @@ -1 +1 @@ -file used by test grid1/A1 +file used by test testsystem/locate_data_file diff --git a/tests/demo/testsystem/data/subdir/file6.empty b/tests/demo/testsystem/data/subdir/file6.empty new file mode 100644 index 0000000000..95731c520a --- /dev/null +++ b/tests/demo/testsystem/data/subdir/file6.empty @@ -0,0 +1 @@ +file used by test testsystem/locate_data_file diff --git a/tests/demo/testsystem/locate_data_file b/tests/demo/testsystem/locate_data_file new file mode 100644 index 0000000000..580973eff3 --- /dev/null +++ b/tests/demo/testsystem/locate_data_file @@ -0,0 +1,35 @@ +# Test procedure locate_data_file + +# add path to subdirectory tests_data to CSF_TestDataPath, +# for testing of files search procedure +set addpath [file dirname [info script]]/tests_data +if { ! [info exists env(CSF_TestDataPath)] } { + set env(CSF_TestDataPath) $addpath +} elseif { ! [regexp "$addpath" $env(CSF_TestDataPath)] } { + set env(CSF_TestDataPath) "$env(CSF_TestDataPath)[_path_separator]$addpath" +} + +puts "CSF_TestDataPath set to $env(CSF_TestDataPath)" + +# Failed search +if [catch {locate_data_file file1.empty} path] { + puts "Data file file1.empty not found, that is OK" +} else { + error "Data file file1.empty is found at $path, while it should not be" +} + +# Successful search +puts "Data file 2 found in [locate_data_file file2.empty]" +puts "Data file 3 found in [locate_data_file file3.empty]" +puts "Data file 4 found in [locate_data_file file4.empty]" +puts "Data file 5 found in [locate_data_file file5.empty]" + +# Failed search +if [catch {locate_data_file file6.empty} path] { + puts "Data file file6.empty not found, that is OK" +} else { + error "Data file file6.empty is found at $path, while it should not be" +} + + +puts "TEST COMPLETED" diff --git a/tests/demo/testsystem/tests_data/demo/file3.empty b/tests/demo/testsystem/tests_data/demo/file3.empty new file mode 100644 index 0000000000..95731c520a --- /dev/null +++ b/tests/demo/testsystem/tests_data/demo/file3.empty @@ -0,0 +1 @@ +file used by test testsystem/locate_data_file diff --git a/tests/demo/testsystem/tests_data/demo/testsystem/file5.empty b/tests/demo/testsystem/tests_data/demo/testsystem/file5.empty new file mode 100644 index 0000000000..95731c520a --- /dev/null +++ b/tests/demo/testsystem/tests_data/demo/testsystem/file5.empty @@ -0,0 +1 @@ +file used by test testsystem/locate_data_file diff --git a/tests/demo/testsystem/tests_data/file4.empty b/tests/demo/testsystem/tests_data/file4.empty new file mode 100644 index 0000000000..95731c520a --- /dev/null +++ b/tests/demo/testsystem/tests_data/file4.empty @@ -0,0 +1 @@ +file used by test testsystem/locate_data_file diff --git a/tests/mesh/end b/tests/mesh/end index 5df0e00f31..94892e1a2a 100644 --- a/tests/mesh/end +++ b/tests/mesh/end @@ -2,11 +2,11 @@ if { [string compare ${TheFileName} ""] != 0 } { set is_brep [regexp "\.brep" $TheFileName] - if {$is_brep == 0} { - set is_brep [regexp "\.rle" $TheFileName] - } + if {$is_brep == 0} { + set is_brep [regexp "\.rle" $TheFileName] + } if {$is_brep == 1} { - puts [brestore [locate_data_file ${TheFileName}] res] + puts [brestore [locate_data_file $TheFileName] res] } else { if { [array get Draw_Groups "DE: STEP"] == "" } { pload XDE diff --git a/tests/parse.rules b/tests/parse.rules index dcf7b11e05..d1e4182ed3 100644 --- a/tests/parse.rules +++ b/tests/parse.rules @@ -1,6 +1,4 @@ -SKIPPED /Cannot open file for reading/ data file is missing -SKIPPED /Could not read file .*, abandon/ data file is missing -SKIPPED /Tcl Exception: Error: file .* could not be found neither in script/ data file is missing +SKIPPED /Tcl Exception: Error: file .* could not be found/ data file is missing IGNORE /Tcl Exception: [*][*] Exception [*][*]/ duplicate report on exception on Tcl level FAILED /\b[Ee]xception\b/ exception FAILED /\bError\b/ error