This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Sarathy's clear_pmop patch with Radu Greab's fix,
[perl5.git] / t / pod / find.t
index b33d876..846b3ac 100644 (file)
@@ -5,53 +5,75 @@ $| = 1;
 
 use Test;
 
-BEGIN { plan tests => 4 }
+BEGIN { 
+  plan tests => 4; 
+  use File::Spec;
+}
 
 use Pod::Find qw(pod_find pod_where);
-use File::Spec;
 
 # load successful
 ok(1);
 
 require Cwd;
-my $THISDIR = Cwd::cwd();
 my $VERBOSE = 0;
-
-print "*** searching $THISDIR/lib\n";
-my %pods = pod_find("$THISDIR/lib");
+my $lib_dir = File::Spec->catdir('pod', 'testpods', 'lib');
+if ($^O eq 'VMS') {
+    $lib_dir = VMS::Filespec::unixify(File::Spec->catdir('pod', 'testpods', 'lib'));
+    $Qlib_dir = $lib_dir;
+    $Qlib_dir =~ s#\/#::#g;
+}
+print "### searching $lib_dir\n";
+my %pods = pod_find($lib_dir);
 my $result = join(',', sort values %pods);
-print "*** found $result\n";
-my $compare = join(',', qw(
-    Pod::Checker
-    Pod::Find
-    Pod::InputObjects
-    Pod::ParseUtils
-    Pod::Parser
-    Pod::PlainText
-    Pod::Select
-    Pod::Usage
+my $compare = join(',', sort qw(
+    Pod::Stuff
 ));
-ok($result,$compare);
+if ($^O eq 'VMS') {
+    $compare = lc($compare);
+    $result = join(',', sort values %pods);
+    my $undollared = $Qlib_dir;
+    $undollared =~ s/\$/\\\$/g;
+    $undollared =~ s/\-/\\\-/g;
+    $result =~ s/$undollared/pod::/g;
+    my $count = 0;
+    my @result = split(/,/,$result);
+    my @compare = split(/,/,$compare);
+    foreach(@compare) {
+        $count += grep {/$_/} @result;
+    }
+    ok($count/($#result+1)-1,$#compare);
+}
+else {
+    ok($result,$compare);
+}
 
-# File::Find is located in this place since eons
-# and on all platforms, hopefully
 
-print "*** searching for File::Find\n";
+print "### searching for File::Find\n";
 $result = pod_where({ -inc => 1, -verbose => $VERBOSE }, 'File::Find')
   || 'undef - pod not found!';
-print "*** found $result\n";
+print "### found $result\n";
 
 require Config;
-$compare = File::Spec->catfile($Config::Config{privlib},"File","Find.pm");
-ok(_canon($result),_canon($compare));
+if ($^O eq 'VMS') { # privlib is perl_root:[lib] OK but not under mms
+    $compare = "lib.File]Find.pm";
+    $result =~ s/perl_root:\[\-?\.?//i;
+    $result =~ s/\[\-?\.?//i; # needed under `mms test`
+    ok($result,$compare);
+}
+else {
+    $compare = File::Spec->catfile(File::Spec->updir, 'lib','File','Find.pm');
+    ok(_canon($result),_canon($compare));
+}
 
 # Search for a documentation pod rather than a module
-print "*** searching for perlfunc.pod\n";
-$result = pod_where({ -inc => 1, -verbose => $VERBOSE }, 'perlfunc')
-  || 'undef - perlfunc.pod not found!';
-print "*** found $result\n";
+print "### searching for Stuff.pod\n";
+my $search = File::Spec->catdir('pod', 'testpods', 'lib', 'Pod');
+$result = pod_where({ -dirs => [$search], -verbose => $VERBOSE }, 'Stuff')
+  || 'undef - Stuff.pod not found!';
+print "### found $result\n";
 
-$compare =  File::Spec->catfile($Config::Config{privlib},"perlfunc.pod");
+$compare = File::Spec->catfile('pod', 'testpods', 'lib', 'Pod' ,'Stuff.pod');
 ok(_canon($result),_canon($compare));
 
 # make the path as generic as possible