DJGPP tweaks from Laszlo Molnar.
[p5sagit/p5-mst-13.2.git] / t / pod / find.t
1 # Testing of Pod::Find
2 # Author: Marek Rouchal <marek@saftsack.fs.uni-bayreuth.de>
3
4 BEGIN {
5     chdir 't' if -d 't';
6     # The ../../../../../lib is for finding lib/utf8.pm
7     # when running under all-utf8 settings (pod/find.t)
8     # does not directly require lib/utf8.pm but regular
9     # expressions will need that.
10     @INC = qw(../lib ../../../../../lib);
11 }
12
13 $| = 1;
14
15 use Test;
16
17 BEGIN { 
18   plan tests => 4; 
19   use File::Spec;
20 }
21
22 use Pod::Find qw(pod_find pod_where);
23
24 # load successful
25 ok(1);
26
27 require Cwd;
28 my $VERBOSE = 0;
29 my $lib_dir = File::Spec->catdir('pod', 'testpods', 'lib');
30 if ($^O eq 'VMS') {
31     $lib_dir = VMS::Filespec::unixify(File::Spec->catdir('pod', 'testpods', 'lib'));
32     $Qlib_dir = $lib_dir;
33     $Qlib_dir =~ s#\/#::#g;
34 }
35 print "### searching $lib_dir\n";
36 my %pods = pod_find($lib_dir);
37 my $result = join(',', sort values %pods);
38 my $compare = join(',', sort qw(
39     Pod::Stuff
40 ));
41 if ($^O eq 'VMS') {
42     $compare = lc($compare);
43     $result = join(',', sort values %pods);
44     my $undollared = $Qlib_dir;
45     $undollared =~ s/\$/\\\$/g;
46     $undollared =~ s/\-/\\\-/g;
47     $result =~ s/$undollared/pod::/g;
48     my $count = 0;
49     my @result = split(/,/,$result);
50     my @compare = split(/,/,$compare);
51     foreach(@compare) {
52         $count += grep {/$_/} @result;
53     }
54     ok($count/($#result+1)-1,$#compare);
55 }
56 elsif ($^O eq 'dos') {
57     ok(lc $result,lc $compare);
58 }
59 else {
60     ok($result,$compare);
61 }
62
63
64 print "### searching for File::Find\n";
65 $result = pod_where({ -inc => 1, -verbose => $VERBOSE }, 'File::Find')
66   || 'undef - pod not found!';
67 print "### found $result\n";
68
69 require Config;
70 if ($^O eq 'VMS') { # privlib is perl_root:[lib] OK but not under mms
71     $compare = "lib.File]Find.pm";
72     $result =~ s/perl_root:\[\-?\.?//i;
73     $result =~ s/\[\-?\.?//i; # needed under `mms test`
74     ok($result,$compare);
75 }
76 else {
77     $compare = File::Spec->catfile(File::Spec->updir, 'lib','File','Find.pm');
78     ok(_canon($result),_canon($compare));
79 }
80
81 # Search for a documentation pod rather than a module
82 print "### searching for Stuff.pod\n";
83 my $search = File::Spec->catdir('pod', 'testpods', 'lib', 'Pod');
84 $result = pod_where({ -dirs => [$search], -verbose => $VERBOSE }, 'Stuff')
85   || 'undef - Stuff.pod not found!';
86 print "### found $result\n";
87
88 $compare = File::Spec->catfile('pod', 'testpods', 'lib', 'Pod' ,'Stuff.pod');
89 ok(_canon($result),_canon($compare));
90
91 # make the path as generic as possible
92 sub _canon
93 {
94   my ($path) = @_;
95   $path = File::Spec->canonpath($path);
96   my @comp = File::Spec->splitpath($path);
97   my @dir = File::Spec->splitdir($comp[1]);
98   $comp[1] = File::Spec->catdir(@dir);
99   $path = File::Spec->catpath(@dir);
100   $path = uc($path) if File::Spec->case_tolerant;
101   $path;
102 }
103