This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Pod-Simple to CPAN version 3.18
[perl5.git] / cpan / Pod-Simple / t / search27.t
1 BEGIN {
2     if($ENV{PERL_CORE}) {
3         chdir 't';
4         @INC = '../lib';
5     }
6 }
7
8 use strict;
9 use Pod::Simple::Search;
10 use Test;
11 BEGIN { plan tests => 10 }
12
13 print "# ", __FILE__,
14  ": Testing limit_glob ...\n";
15
16 my $x = Pod::Simple::Search->new;
17 die "Couldn't make an object!?" unless ok defined $x;
18
19 $x->inc(0);
20 $x->shadows(1);
21
22 use File::Spec;
23 use Cwd;
24 my $cwd = cwd();
25 print "# CWD: $cwd\n";
26
27 sub source_path {
28     my $file = shift;
29     if ($ENV{PERL_CORE}) {
30         my $updir = File::Spec->updir;
31         my $dir = File::Spec->catdir($updir, 'lib', 'Pod', 'Simple', 't');
32         return File::Spec->catdir ($dir, $file);
33     } else {
34         return $file;
35     }
36 }
37
38 my($here1, $here2, $here3);
39
40 if(        -e ($here1 = source_path(  'testlib1'      ))) {
41   die "But where's $here2?"
42     unless -e ($here2 = source_path(  'testlib2'));
43   die "But where's $here3?"
44     unless -e ($here3 = source_path(  'testlib3'));
45
46 } elsif(   -e ($here1 = File::Spec->catdir($cwd, 't', 'testlib1'      ))) {
47   die "But where's $here2?"
48     unless -e ($here2 = File::Spec->catdir($cwd, 't', 'testlib2'));
49   die "But where's $here3?"
50     unless -e ($here3 = File::Spec->catdir($cwd, 't', 'testlib3'));
51
52 } else {
53   die "Can't find the test corpora";
54 }
55 print "# OK, found the test corpora\n#  as $here1\n# and $here2\n# and $here3\n#\n";
56 ok 1;
57
58 print $x->_state_as_string;
59 #$x->verbose(12);
60
61 use Pod::Simple;
62 *pretty = \&Pod::Simple::BlackBox::pretty;
63
64 my $glob = 'squaa*';
65 print "# Limiting to $glob\n";
66 $x->limit_glob($glob);
67
68 my($name2where, $where2name) = $x->survey($here1, $here2, $here3);
69
70 my $p = pretty( $where2name, $name2where )."\n";
71 $p =~ s/, +/,\n/g;
72 $p =~ s/^/#  /mg;
73 print $p;
74
75 {
76 my $names = join "|", sort keys %$name2where;
77 skip $^O eq 'VMS' ? '-- case may or may not be preserved' : 0,
78      $names, 
79      "squaa|squaa::Glunk|squaa::Vliff|squaa::Wowo";
80 }
81
82 {
83 my $names = join "|", sort values %$where2name;
84 skip $^O eq 'VMS' ? '-- case may or may not be preserved' : 0, 
85      $names, 
86      "squaa|squaa::Glunk|squaa::Vliff|squaa::Vliff|squaa::Vliff|squaa::Wowo";
87
88 my %count;
89 for(values %$where2name) { ++$count{$_} };
90 #print pretty(\%count), "\n\n";
91 delete @count{ grep $count{$_} < 2, keys %count };
92 my $shadowed = join "|", sort keys %count;
93 ok $shadowed, "squaa::Vliff";
94
95 sub thar { print "# Seen $_[0] :\n", map "#  {$_}\n", sort grep $where2name->{$_} eq $_[0],keys %$where2name; return; }
96
97 ok $count{'squaa::Vliff'}, 3;
98 thar 'squaa::Vliff';
99 }
100
101
102 ok   $name2where->{'squaa'};  # because squaa.pm IS squaa*
103
104 ok( ($name2where->{'squaa::Vliff'} || 'huh???'), '/[^\^]testlib1/' );
105
106 skip $^O eq 'VMS' ? '-- case may or may not be preserved' : 0,
107      ($name2where->{'squaa::Wowo'}  || 'huh???'), 
108      '/testlib2/';
109
110
111 print "# OK, bye from ", __FILE__, "\n";
112 ok 1;
113
114 __END__
115