Startup: Include-Pfade mittels FindBin ermitteln
[kivitendo-erp.git] / t / Support / Files.pm
1 # -*- Mode: perl; indent-tabs-mode: nil -*-
2 #
3 # The contents of this file are subject to the Mozilla Public
4 # License Version 1.1 (the "License"); you may not use this file
5 # except in compliance with the License. You may obtain a copy of
6 # the License at http://www.mozilla.org/MPL/
7 #
8 # Software distributed under the License is distributed on an "AS
9 # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
10 # implied. See the License for the specific language governing
11 # rights and limitations under the License.
12 #
13 # The Original Code are the Bugzilla Tests.
14 #
15 # The Initial Developer of the Original Code is Zach Lipton
16 # Portions created by Zach Lipton are
17 # Copyright (C) 2001 Zach Lipton.  All
18 # Rights Reserved.
19 #
20 # Contributor(s): Zach Lipton <zach@zachlipton.com>
21 #                 Joel Peshkin <bugreport@peshkin.net>
22
23
24 package Support::Files;
25
26 use File::Find;
27
28 # exclude_deps is a hash of arrays listing the files to be excluded
29 # if a module is not available
30 #
31 @additional_files = ();
32 %exclude_deps = (
33     'XML::Twig' => ['importxml.pl'],
34     'Net::LDAP' => ['Bugzilla/Auth/Verify/LDAP.pm'],
35     'Email::Reply' => ['email_in.pl'],
36     'Email::MIME::Attachment::Stripper' => ['email_in.pl']
37 );
38
39
40 @files = glob('*');
41 find(sub { push(@files, $File::Find::name) if $_ =~ /\.pm$/;}, 'SL');
42 find(sub { push(@files, $File::Find::name) if $_ =~ /\.pl$/;}, qw(bin/mozilla sql/Pg-upgrade2));
43 find(sub { push(@files, $File::Find::name) if $_ =~ /\.html$/;}, qw(templates/webpages));
44
45 sub have_pkg {
46     my ($pkg) = @_;
47     my ($msg, $vnum, $vstr);
48     no strict 'refs';
49     eval { my $p; ($p = $pkg . ".pm") =~ s!::!/!g; require $p; };
50     return !($@);
51 }
52
53 @exclude_files    = ();
54 foreach $dep (keys(%exclude_deps)) {
55     if (!have_pkg($dep)) {
56         push @exclude_files, @{$exclude_deps{$dep}};
57     }
58 }
59
60 sub isTestingFile {
61     my ($file) = @_;
62     my $exclude;
63     foreach $exclude (@exclude_files) {
64         if ($file eq $exclude) { return undef; } # get rid of excluded files.
65     }
66
67     if ($file =~ /\.cgi$|\.pl$|\.pm$/) {
68         return 1;
69     }
70     my $additional;
71     foreach $additional (@additional_files) {
72         if ($file eq $additional) { return 1; }
73     }
74     return undef;
75 }
76
77 foreach $currentfile (@files) {
78     if (isTestingFile($currentfile)) {
79         push(@testitems,$currentfile);
80     }
81 }
82
83
84 1;