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
|
#!/usr/bin/perl
# Testing of the normalization functions.
# (only very basic at this point)
use lib 't/lib';
use PPI::Test::pragmas;
use Test::More tests => 17 + ($ENV{AUTHOR_TESTING} ? 1 : 0);
use File::Spec::Functions ':ALL';
use PPI;
#####################################################################
# Creation and Manipulation
SCOPE: {
my $Document = PPI::Document->new(\'my $foo = bar();');
isa_ok( $Document, 'PPI::Document' );
my $Normal = $Document->normalized;
isa_ok( $Normal, 'PPI::Document::Normalized' );
is( $Normal->version, $PPI::Normal::VERSION, '->version matches $VERSION' );
my $functions = $Normal->functions;
is( ref $functions, 'ARRAY', '->functions returns an array ref' );
ok( scalar(@$functions), '->functions returns at least 1 function' );
}
#####################################################################
# Basic Empiric Tests
# Basic empiric testing
SCOPE: {
# The following should be equivalent
my $Document1 = PPI::Document->new( \'my $foo = 1; # comment' );
my $Document2 = PPI::Document->new( \'my $foo=1 ;# different comment' );
my $Document3 = PPI::Document->new( \'sub foo { print "Hello World!\n"; }' );
isa_ok( $Document1, 'PPI::Document' );
isa_ok( $Document2, 'PPI::Document' );
isa_ok( $Document3, 'PPI::Document' );
my $Normal1 = $Document1->normalized;
my $Normal2 = $Document2->normalized;
my $Normal3 = $Document3->normalized;
isa_ok( $Normal1, 'PPI::Document::Normalized' );
isa_ok( $Normal2, 'PPI::Document::Normalized' );
isa_ok( $Normal3, 'PPI::Document::Normalized' );
is( $Normal1->equal( $Normal2 ), 1, '->equal returns true for equivalent code' );
is( $Normal1->equal( $Normal3 ), '', '->equal returns false for different code' );
}
NO_DOUBLE_REG: {
sub just_a_test_sub { "meep" }
ok( PPI::Normal->register( "main::just_a_test_sub", 2 ), "can add subs" );
is $PPI::Normal::LAYER{2}[-1], "main::just_a_test_sub", "and find subs at right layer";
my $size = @{ $PPI::Normal::LAYER{2} };
ok( PPI::Normal->register( "main::just_a_test_sub", 2 ), "can add subs again" );
is scalar @{ $PPI::Normal::LAYER{2} }, $size, "but sub isn't added twice";
}
|