/usr/share/perl5/Test/Unit/UnitHarness.pm is in libtest-unit-perl 0.25-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | # This is a makeover of Test::Harness to allow its tests
# to be retrofitted as unit tests.
package Test::Unit::UnitHarness;
BEGIN {require 5.002;}
use base qw(Test::Unit::Runner Test::Unit::Test Exporter);
use Config;
use Carp;
use Class::Inner;
use FileHandle;
use Test::Unit::Debug qw(debug);
use Test::Unit::TestCase;
use Test::Unit::Exception;
use strict;
use vars qw($VERSION $verbose $switches $have_devel_corestack $curtest
@EXPORT @EXPORT_OK);
$have_devel_corestack = 0;
$VERSION = "1.1502";
@EXPORT = qw(&runtests);
@EXPORT_OK = qw($verbose $switches);
$verbose = 0;
$switches = "-w";
# class and object methods
sub new {
my $class = shift;
my ($name) = @_;
my @_Tests = ();
my $self = {
_Tests => \@_Tests,
_Name => $name,
_Names => [],
};
bless $self, $class;
debug(ref($self) . "::new($name) called\n");
return $self;
}
sub run {
my $self = shift;
my $result = shift;
my $test = $self->{_Name};
my $fh = new FileHandle;
my $next = 1;
my $max = 0;
my $message = "";
# pass -I flags to children
my $old5lib = $ENV{PERL5LIB};
local($ENV{'PERL5LIB'}) = join($Config{path_sep}, @INC);
if ($^O eq 'VMS') { $switches =~ s/-(\S*[A-Z]\S*)/"-$1"/g }
$fh->open($test) or print "can't open $test. $!\n";
my $first = <$fh>;
my $s = $switches;
$s .= q[ "-T"] if $first =~ /^#!.*\bperl.*-\w*T/;
$fh->close or print "can't close $test. $!\n";
my $cmd = "$^X $s $test|";
$cmd = "MCR $cmd" if $^O eq 'VMS';
$fh->open($cmd) or print "can't run $test. $!\n";
for my $line (<$fh>) {
print $line if $verbose;
if ($line =~ /^1\.\.([0-9]+)/) {
# Not supported in Result - It's needed!!!
#$result->plan($1);
$next = 1;
$max = $1;
$message = "";
}
elsif ($max && $line =~ /^(not\s+)?ok\b/) {
my $this = $next;
if ($line =~ /^not ok\s*(\d*)/) {
$this = $1 if $1 > 0;
my $testcase = new Test::Unit::TestCase("$test case $this");
$result->start_test($testcase);
$result->add_failure(
Test::Unit::UnitHarness::TestCase->new("$test case $this"),
Test::Unit::UnitHarness::Exception->new($message)
);
$result->end_test($testcase);
$message = "";
}
elsif ($line =~ /^ok\s*(\d*)/) {
$this = $1 if $1;
my $testcase =
Test::Unit::UnitHarness::TestCase->new("$test case $this");
$result->start_test($testcase);
$result->add_pass($testcase);
$result->end_test($testcase);
$message = "";
}
$next++;
}
else {
# this is the message, not the medium...
# this wasnt part of the Test::Harness protocol, so it
# must be output from the program. Collect this, it might
# prove useful!
$message .= $line;
}
}
$fh->close; # must close to reap child resource values
if ($^O eq 'VMS') {
if (defined $old5lib) {
$ENV{PERL5LIB} = $old5lib;
} else {
delete $ENV{PERL5LIB};
}
}
}
sub name {
my $self = shift;
return $self->{_Name};
}
sub names {
my $self = shift;
return $self->{_Names};
}
sub add_test {
croak "This is suite is not mutable.";
}
sub add_test_method {
croak "This suite is not mutable.";
}
sub count_test_cases {
return 0;
}
sub to_string {
my $self = shift;
return $self->{_Name};
}
sub warning {
my $self = shift;
my ($message) = @_;
return Class::Inner->new(
parent => 'Test::Unit::TestCase',
methods => { run_test => sub { (shift)->fail($message) } },
args => ['warning'],
);
}
package Test::Unit::UnitHarness::TestCase;
use base qw(Test::Unit::TestCase);
sub run_test {
my $self = shift;
my $class = ref($self);
my $method = $self->name();
$self->fail("This test is not restartable");
}
package Test::Unit::UnitHarness::Exception;
use base qw(Test::Unit::Exception);
use strict;
sub new {
my $class = shift;
my ($message) = @_;
my $stacktrace = '';
$message = '' unless defined($message);
$stacktrace = $class . ": Output from external test\n"
. $message . "\n";
bless { stacktrace => $stacktrace }, $class;
}
sub stacktrace {
my $self = shift;
return $self->{stacktrace};
}
1;
__END__
=head1 NAME
Test::Unit::UnitHarness - unit testing framework helper class
=head1 SYNOPSIS
This class is not intended to be used directly
=head1 DESCRIPTION
This is a makeover of Test::Harness to allow its tests to be
retrofitted as unit tests.
=head1 AUTHOR
Copyright (c) 2000-2002, 2005 the PerlUnit Development Team
(see L<Test::Unit> or the F<AUTHORS> file included in this
distribution).
All rights reserved. This program is free software; you can
redistribute it and/or modify it under the same terms as Perl itself.
=head1 SEE ALSO
=over 4
=item *
L<Test::Unit::UnitHarness>
=item *
L<Test::Unit::TestRunner>
=item *
L<Test::Unit::TkTestRunner>
=back
=cut
|