X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;ds=sidebyside;f=dev%2Farm%2Flibpod-simple-perl%2Flibpod-simple-perl-3.07%2Ft%2Fsearch22.t;fp=dev%2Farm%2Flibpod-simple-perl%2Flibpod-simple-perl-3.07%2Ft%2Fsearch22.t;h=05157b748cd4a8d5a900f046e8d9bb5be94a41bc;hb=f477fa73365d491991707e7ed9217b48d6994551;hp=0000000000000000000000000000000000000000;hpb=da95c414033799c3a62606f299c3c00b5c77ca11;p=dh-make-perl diff --git a/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/t/search22.t b/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/t/search22.t new file mode 100644 index 0000000..05157b7 --- /dev/null +++ b/dev/arm/libpod-simple-perl/libpod-simple-perl-3.07/t/search22.t @@ -0,0 +1,115 @@ +BEGIN { + if($ENV{PERL_CORE}) { + chdir 't'; + @INC = '../lib'; + } +} + +use strict; +use Pod::Simple::Search; +use Test; +BEGIN { plan tests => 13 } + +print "# ", __FILE__, + ": Testing the scanning of several docroots...\n"; + +my $x = Pod::Simple::Search->new; +die "Couldn't make an object!?" unless ok defined $x; + +$x->inc(0); +$x->shadows(1); + +use File::Spec; +use Cwd; +my $cwd = cwd(); +print "# CWD: $cwd\n"; + +sub source_path { + my $file = shift; + if ($ENV{PERL_CORE}) { + my $updir = File::Spec->updir; + my $dir = File::Spec->catdir($updir, 'lib', 'Pod', 'Simple', 't'); + return File::Spec->catdir ($dir, $file); + } else { + return $file; + } +} + +my($here1, $here2, $here3); + +if( -e ($here1 = source_path('testlib1' ))) { + die "But where's $here2?" + unless -e ($here2 = source_path('testlib2')); + die "But where's $here3?" + unless -e ($here3 = source_path('testlib3')); + +} elsif( -e ($here1 = File::Spec->catdir($cwd, 't', 'testlib1' ))) { + die "But where's $here2?" + unless -e ($here2 = File::Spec->catdir($cwd, 't', 'testlib2')); + die "But where's $here3?" + unless -e ($here3 = File::Spec->catdir($cwd, 't', 'testlib3')); + +} else { + die "Can't find the test corpora"; +} +print "# OK, found the test corpora\n# as $here1\n# and $here2\n# and $here3\n#\n"; +ok 1; + +print $x->_state_as_string; +#$x->verbose(12); + +use Pod::Simple; +*pretty = \&Pod::Simple::BlackBox::pretty; + +my($name2where, $where2name) = $x->survey($here1, $here2, $here3); + +my $p = pretty( $where2name, $name2where )."\n"; +$p =~ s/, +/,\n/g; +$p =~ s/^/# /mg; +print $p; + +{ +print "# won't show any shadows, since we're just looking at the name2where keys\n"; +my $names = join "|", sort keys %$name2where; +ok $names, "Blorm|Suzzle|Zonk::Pronk|hinkhonk::Glunk|hinkhonk::Vliff|perlflif|perlthng|perlzuk|squaa|squaa::Glunk|squaa::Vliff|squaa::Wowo|zikzik"; +} + +{ +print "# but here we'll see shadowing:\n"; +my $names = join "|", sort values %$where2name; +ok $names, "Blorm|Suzzle|Zonk::Pronk|hinkhonk::Glunk|hinkhonk::Glunk|hinkhonk::Vliff|hinkhonk::Vliff|perlflif|perlthng|perlthng|perlzuk|squaa|squaa::Glunk|squaa::Vliff|squaa::Vliff|squaa::Vliff|squaa::Wowo|zikzik"; + +my %count; +for(values %$where2name) { ++$count{$_} }; +#print pretty(\%count), "\n\n"; +delete @count{ grep $count{$_} < 2, keys %count }; +my $shadowed = join "|", sort keys %count; +ok $shadowed, "hinkhonk::Glunk|hinkhonk::Vliff|perlthng|squaa::Vliff"; + +sub thar { print "# Seen $_[0] :\n", map "# {$_}\n", sort grep $where2name->{$_} eq $_[0],keys %$where2name; return; } + +ok $count{'perlthng'}, 2; +thar 'perlthng'; +ok $count{'squaa::Vliff'}, 3; +thar 'squaa::Vliff'; +} + + +ok( ($name2where->{'squaa'} || 'huh???'), '/squaa\.pm$/'); + +ok grep( m/squaa\.pm/, keys %$where2name ), 1; + +ok( ($name2where->{'perlthng'} || 'huh???'), '/[^\^]testlib1/' ); +ok( ($name2where->{'squaa::Vliff'} || 'huh???'), '/[^\^]testlib1/' ); + +# Some sanity: +ok( ($name2where->{'squaa::Wowo'} || 'huh???'), '/testlib2/' ); + + + + +print "# OK, bye from ", __FILE__, "\n"; +ok 1; + +__END__ +