You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
2.5 KiB
95 lines
2.5 KiB
for {set i 0} {$i < [expr $argc - 1]} {incr i} {
|
|
if {[lindex $argv $i] == "-A"} {
|
|
set auto_path "$auto_path [lindex $argv [expr $i +1]]"
|
|
}
|
|
}
|
|
|
|
package require vtk
|
|
vtkObject a
|
|
a GlobalWarningDisplayOff
|
|
a Delete
|
|
|
|
set exceptions {
|
|
vtkLODProp3D-GetPickLODID
|
|
vtkObject-GetSuperClassName
|
|
vtkPropAssembly-GetBounds
|
|
vtkRenderWindow-GetEventPending
|
|
vtkXOpenGLRenderWindow-GetEventPending
|
|
vtkXMesaRenderWindow-GetEventPending
|
|
vtkMPICommunicator-GetWorldCommunicator
|
|
}
|
|
|
|
proc TestOne {cname} {
|
|
global exceptions
|
|
$cname b
|
|
puts "Testing Class $cname"
|
|
set methods [b ListMethods]
|
|
# look for a Get Set pair
|
|
set len [llength $methods]
|
|
for {set i 0} {$i < $len} {incr i} {
|
|
if {[regsub {^Get([A-za-z0-9]*)} [lindex $methods $i] {\1} name]} {
|
|
if {($i == $len - 1) || ($i < $len - 1 && [lindex $methods [expr $i + 1]] != "with")} {
|
|
if {[lsearch $exceptions "$cname-[lindex $methods $i]"] == -1} {
|
|
# invoke the GetMethod
|
|
puts " Invoking Get$name"
|
|
set tmp [b Get$name]
|
|
# find matching set method
|
|
for {set j 0} {$j < $len} {incr j} {
|
|
if {[regexp "^Set$name" [lindex $methods $j]]} {
|
|
if {$j < $len - 3 && [lindex $methods [expr $j + 2]] == "1"} {
|
|
puts " Invoking Set$name"
|
|
catch {b Set$name $tmp}
|
|
}
|
|
if {$j < $len - 3 && [lindex $methods [expr $j + 2]] > 1} {
|
|
puts " Invoking Set$name"
|
|
catch {eval b Set$name $tmp}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
# Test the PrintRevisions method.
|
|
b PrintRevisions
|
|
b Delete
|
|
}
|
|
|
|
set classExceptions {
|
|
vtkCommand
|
|
vtkFileOutputWindow
|
|
vtkIndent
|
|
vtkOutputWindow
|
|
vtkParallelFactory
|
|
vtkPlanes
|
|
vtkProjectedPolyDataRayBounder
|
|
vtkRayCaster
|
|
vtkTimeStamp
|
|
vtkTkImageViewerWidget
|
|
vtkTkImageWindowWidget
|
|
vtkTkRenderWidget
|
|
vtkImageDataToTkPhoto
|
|
vtkViewRays
|
|
vtkWin32OutputWindow
|
|
vtkWin32ProcessOutputWindow
|
|
vtkXMLFileOutputWindow
|
|
}
|
|
|
|
proc rtSetGetTest { fileid } {
|
|
global classExceptions
|
|
# for every class
|
|
set all [lsort [info command vtk*]]
|
|
foreach a $all {
|
|
if {[lsearch $classExceptions $a] == -1} {
|
|
# test some set get methods
|
|
#puts "Testing -- $a"
|
|
TestOne $a
|
|
}
|
|
}
|
|
}
|
|
|
|
# All tests should end with the following...
|
|
|
|
rtSetGetTest stdout
|
|
|
|
exit
|
|
|