/usr/share/perl5/Test/Inline/Script.pm is in libtest-inline-perl 2.213-2.
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 | package Test::Inline::Script;
=pod
=head1 NAME
Test::Inline::Script - Generate the test file for a single source file
=head1 DESCRIPTION
This class is where the heavy lifting happens to actually generating a
test file takes place. Given a source filename, this modules will load
it, parse out the relavent bits, put them into order based on the tags,
and then merge them into a test file.
=head1 METHODS
=cut
use strict;
use List::Util ();
use Params::Util qw{_ARRAY _INSTANCE};
use Algorithm::Dependency::Item ();
use Algorithm::Dependency::Source ();
use Algorithm::Dependency::Ordered ();
use overload 'bool' => sub () { 1 },
'""' => 'filename';
use vars qw{$VERSION @ISA};
BEGIN {
$VERSION = '2.213';
@ISA = qw{
Algorithm::Dependency::Source
Algorithm::Dependency::Item
};
}
# Special case, for when doing unit tests ONLY.
# Don't throw the missing files warning.
use vars qw{$NO_MISSING_DEPENDENCIES_WARNING};
BEGIN {
$NO_MISSING_DEPENDENCIES_WARNING = '';
}
#####################################################################
# Constructor and Accessors
=pod
=head2 new
my $File = Test::Inline::Script->new( $class, \@sections, $check_count );
The C<new> constructor takes a class name, set of Section objects and
an optional C<check_count> flag.
Returns a Test::Inline::Script object on success.
Returns C<undef> on error.
=cut
sub new {
my $class = shift;
my $_class = defined $_[0] ? shift : return undef;
my $Sections = _ARRAY(shift) or return undef;
my $check_count = shift || 0;
# Create the object
my $self = bless {
class => $_class,
setup => [ grep { $_->setup } @$Sections ],
sections => [ grep { ! $_->setup } @$Sections ],
filename => lc "$_class.t",
check_count => $check_count,
# tests => undef,
}, $class;
$self->{filename} =~ s/::/_/g;
# Verify the uniqueness of the names
$self->_duplicate_names and return undef;
# Warn if we have missing dependencies
my $missing = $self->missing_dependencies;
if ( $missing ) {
foreach ( @$missing ) {
next if $NO_MISSING_DEPENDENCIES_WARNING;
print "Warning: Missing dependency '$_' in $self->{class}\n";
}
}
# Quickly predetermine if there will be an unknown number
# of unit tests in the file
my $unknown = grep { ! defined $_->tests } @$Sections;
unless ( $unknown or grep { $_->tests } @$Sections ) {
$unknown = 1;
}
# Flag all sections that need count checking in advance
if ( $check_count ) {
foreach my $Section ( @$Sections ) {
next unless defined $Section->tests;
next unless $unknown or $check_count > 1;
# Each count check is itself a test, so
# increment the number of tests for the section
# when we enable the check flag.
$Section->{check_count} = 1;
$Section->{tests}++;
}
}
$self;
}
=pod
=head2 class
Returns the class that the test file will test
=head2 filename
my $filename = $File->filename;
The C<filename> method returns the name of the output file that the tests
should be written to. For example, the class C<Foo::Bar> would have the
filename value C<foo_bar.t>.
=head2 config
my $config = $File->config;
The C<config> method returns the config object for the file, assuming that
it has one. If more than one are found, the first will be used, and any
additional config sections discarded.
Returns a L<Test::Inline::Config> object on success, or false if the
file does not contain a config section.
=head2 setup
my @setup = $File->setup;
The C<setup> method returns the setup sections from the file, in the same
order as in the file.
Returns a list of setup L<Test::Inline::Section> objects, the null
array C<()> if the file does not contain any setup objects.
=head2 sections
my @sections = $File->sections;
The C<sections> method returns all normal sections from the file, in the
same order as in the file. This may not be the order they will be written
to the test file, for that you should see the C<sorted> method.
Returns a list of L<Test::Inline::Section> objects, or the null array
C<()> if the file does not contain any non-setup sections.
=cut
sub class { $_[0]->{class} }
sub filename { $_[0]->{filename} }
sub config { $_[0]->{config} || '' }
sub setup { @{$_[0]->{setup}} }
sub sections { @{$_[0]->{sections}} }
#####################################################################
# Main Methods
=pod
=head2 sorted
The C<sorted> method returns all normal sections from the file, in an order
that satisfies any dependencies in the sections.
Returns a reference to an array of L<Test::Inline::Section> objects,
C<0> if the file does not contain any non-setup sections, or C<undef> on
error.
=cut
sub sorted {
my $self = shift;
return $self->{sorted} if $self->{sorted};
# Handle the simple case there there are no dependencies,
# so we don't have to load the dependency algorithm code.
unless ( map { $_->depends } $self->sections ) {
return $self->{sorted} = [ $self->setup, $self->sections ];
}
# Create the dependency algorithm object
my $Algorithm = Algorithm::Dependency::Ordered->new(
source => $self,
ignore_orphans => 1, # Be lenient to non-existant dependencies
) or return undef;
# Pull the schedule from the algorithm. If we get an error back, it
# should be because there is a circular dependency.
my $schedule = $Algorithm->schedule_all;
unless ( $schedule ) {
warn " (Failed to build $self->{class} test schedule) ";
return undef;
}
# Index the sections by name
my %hash = map { $_->name => $_ } grep { $_->name } $self->sections;
# Merge together the setup, schedule, and anonymous parts into a
# single sorted list.
my @sorted = (
$self->setup,
( map { $hash{$_} } @$schedule ),
( grep { $_->anonymous } $self->sections )
);
$self->{sorted} = \@sorted;
}
=pod
=head2 tests
If the number of tests for all of the sections within the file are known,
then the number of tests for the entire file can also be determined.
The C<tests> method determines if the number of tests can be known, and
if so, calculates and returns the number of tests. Returns false if the
number of tests is not known.
=cut
sub tests {
my $self = shift;
return $self->{tests} if exists $self->{tests};
# Add up the tests
my $total = 0;
foreach my $Section ( $self->setup, $self->sections ) {
# Return undef if section has an unknown number of tests
return undef unless defined $Section->tests;
$total += $Section->tests;
}
# If the total is zero, it's probably screwed, go with "unknown"
$self->{tests} = $total || undef;
}
=pod
=head2 merged_content
The C<merged_content> method generates and returns the merged contents of all
the sections in the file, including the setup sections at the beginning. The
method does not return the entire file, merely the part contained in the
sections. For the full file contents, see the C<file_content> method.
Returns a string containing the merged section content on success, false
if there is no content, despite the existance of sections ( which would
have been empty ), or C<undef> on error.
=cut
sub merged_content {
my $self = shift;
return $self->{content} if exists $self->{content};
# Get the sorted Test::Inline::Section objects
my $sorted = $self->sorted or return undef;
# Prepare
$self->{_example_count} = 0;
# Strip out empty sections
@$sorted = grep { $_->content =~ /\S/ } @$sorted;
# Generate wrapped code chunks
my @content = map { $self->_wrap_content($_) } @$sorted;
return '' unless @content;
# Merge to create the core testing code
$self->{content} = join "\n\n\n", @content;
# Clean up and return
delete $self->{_example_count};
$self->{content};
}
# Take a single generated section of code, and wrap it
# in the standard boilerplate.
sub _wrap_content {
my $self = shift;
my $Section = _INSTANCE(shift, 'Test::Inline::Section') or return undef;
my $code = $Section->content;
# Wrap in compilation test code if an example
if ( $Section->example ) {
$self->{_example_count}++;
$code =~ s/^/ /mg;
$code = "eval q{\n"
. " my \$example = sub {\n"
. " local \$^W = 0;\n"
. $code
. " };\n"
. "};\n"
. "is(\$@, '', 'Example $self->{_example_count} compiles cleanly');\n";
}
# Wrap in scope braces unless it is a setup section
unless ( $Section->setup ) {
$code = "{\n"
. $code
. "}\n";
}
# Add the count-checking code if needed
if ( $Section->{check_count} ) {
my $increase = $Section->tests - 1;
my $were = $increase == 1 ? 'test was' : 'tests were';
my $section =
$code = "\$::__tc = Test::Builder->new->current_test;\n"
. $code
. "is( Test::Builder->new->current_test - \$::__tc, "
. ($increase || '0')
. ",\n"
. "\t'$increase $were run in the section' );\n";
}
# Add the section header
$code = "# $Section->{begin}\n"
. $code;
# Aaaaaaaand we're done
$code;
}
#####################################################################
# Implement the Algorithm::Dependency::Source Interface
# This is used for section-level dependency.
# These methods, though public, are undocumented.
# Our implementation of Algorithm::Dependency::Source->load is a no-op
sub load { 1 }
# Pull a single item by name, section in the sections for it
sub item {
my $self = shift;
my $name = shift or return undef;
List::Util::first { $_->name eq $name } $self->sections;
}
# Return, in their original order, all the items ( named sections )
sub items { grep { $_->name } $_[0]->sections }
#####################################################################
# Implement the Algorithm::Dependency::Item Interface
# This is used for class-level dependency.
# These methods, though public, are undocumented.
sub id {
$_[0]->{class};
}
sub depends {
my $self = shift;
my %depends = map { $_ => 1 }
map { $_->classes }
($self->setup, $self->sections);
keys %depends;
}
#####################################################################
# Utility Functions
sub _duplicate_names(@) {
my $self = shift;
my %seen = ();
foreach ( map { $_->name } $self->sections ) {
next unless $_;
return 1 if $seen{$_}++;
}
undef;
}
1;
=pod
=head1 SUPPORT
See the main L<SUPPORT|Test::Inline/SUPPORT> section.
=head1 AUTHOR
Adam Kennedy E<lt>adamk@cpan.orgE<gt>, L<http://ali.as/>
=head1 COPYRIGHT
Copyright 2004 - 2013 Adam Kennedy.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
=cut
|