-# $Id: IRSpy.pm,v 1.9 2006-07-21 11:28:16 mike Exp $
+# $Id: IRSpy.pm,v 1.10 2006-07-21 11:50:17 mike Exp $
package ZOOM::IRSpy;
targets => undef, # filled in later
target2record => undef, # filled in later
pod => undef, # filled in later
+ tests => [], # stack of tests currently being executed
}, $class;
$this->log("irspy", "starting up with database '$dbname'");
($host, $db) = ($target =~ /(.*?)\/(.*)/);
$target = "$host:$port/$db";
}
- die "invalid target string '$target'"
+ die "$0: invalid target string '$target'"
if !defined $host;
return ($host, $port, $db, $target);
my $this = shift();
my($tname) = @_;
+ die("$0: test-hierarchy loop detected: " .
+ join(" -> ", @{ $this->{tests} }, $tname))
+ if grep { $_ eq $tname } @{ $this->{tests} };
+
eval {
my $slashSeperatedTname = $tname;
$slashSeperatedTname =~ s/::/\//g;
}
$this->log("irspy", "running test '$tname'");
+ push @{ $this->{tests} }, $tname;
my $test = "ZOOM::IRSpy::Test::$tname"->new($this);
- return $test->run();
+ my $res =$test->run();
+ pop @{ $this->{tests} };
+ return $res;
}