]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 163494 - runtests.sh needs a switch to include optional modules
authorbugreport%peshkin.net <>
Mon, 26 Aug 2002 00:19:03 +0000 (00:19 +0000)
committerbugreport%peshkin.net <>
Mon, 26 Aug 2002 00:19:03 +0000 (00:19 +0000)
Tests now detect optional modules and only exclude optional files
if optional module dependencies are not met.
Also major indent cleanup
r=timeless

t/Support/Files.pm

index e68d08ea737ef4450965a6454520d018ea7761d1..2e9e9f3c3f3f33b341ed0947ebd81dc62cc6bc90 100644 (file)
@@ -18,6 +18,7 @@
 # Rights Reserved.
 # 
 # Contributor(s): Zach Lipton <zach@zachlipton.com>
+#                 Joel Peshkin <bugreport@peshkin.net>
 # 
 # Alternatively, the contents of this file may be used under the
 # terms of the GNU General Public License Version 2 or later (the
 
 package Support::Files;
 
+# exclude_deps is a hash of arrays listing the files to be excluded
+# if a module is not available
+#
 @additional_files = ('syncshadowdb','processmail');
-@exclude_files    = ('importxml.pl');
+%exclude_deps = (
+    'XML::Parser' => ['importxml.pl'],
+);
+
 
 # XXX - this file should be rewritten to use File::Find or similar
 $file = '*';
 @files = (glob($file), glob('Bugzilla/*.pm'));
 
+sub have_pkg {
+    my ($pkg) = @_;
+    my ($msg, $vnum, $vstr);
+    no strict 'refs';
+    eval { my $p; ($p = $pkg . ".pm") =~ s!::!/!g; require $p; };
+    return !($@);
+}
+
+@exclude_files    = ();
+foreach $dep (keys(%exclude_deps)) {
+    if (!have_pkg($dep)) {
+        push @exclude_files, @{$exclude_deps{$dep}};
+    }
+}
+
 sub isTestingFile {
-  my ($file) = @_;
-  my $exclude;
-  foreach $exclude (@exclude_files) {
+    my ($file) = @_;
+    my $exclude;
+    foreach $exclude (@exclude_files) {
         if ($file eq $exclude) { return undef; } # get rid of excluded files.
-  }
+    }
 
-  if ($file =~ /\.cgi$|\.pl$|\.pm$/) {
-    return 1;
-  }
-  my $additional;
-  foreach $additional (@additional_files) {
-    if ($file eq $additional) { return 1; }
-  }
-  return undef;
+    if ($file =~ /\.cgi$|\.pl$|\.pm$/) {
+        return 1;
+    }
+    my $additional;
+    foreach $additional (@additional_files) {
+        if ($file eq $additional) { return 1; }
+    }
+    return undef;
 }
 
 foreach $currentfile (@files) {
-        if (isTestingFile($currentfile)) {
-                push(@testitems,$currentfile);
-        }
+    if (isTestingFile($currentfile)) {
+        push(@testitems,$currentfile);
+    }
 }