Bug 8435: DBRev 3.13.00.038
[koha.git] / t / 00-load.t
1 # This script is called by the pre-commit git hook to test modules compile
2
3 use strict;
4 use warnings;
5 use Test::More;
6 use File::Spec;
7 use File::Find;
8
9 my $lib = File::Spec->rel2abs('C4');
10 find({
11     bydepth => 1,
12     no_chdir => 1,
13     wanted => sub {
14         my $m = $_;
15         return unless $m =~ s/[.]pm$//;
16         $m =~ s{^.*/C4/}{C4/};
17         $m =~ s{/}{::}g;
18         return if $m =~ /Auth_with_ldap/; # Dont test this, it will fail on use
19         return if $m =~ /SIP/; # SIP modules will not load clean
20         return if $m =~ /C4::VirtualShelves$/; # Requires a DB
21         return if $m =~ /C4::Auth$/; # DB
22         return if $m =~ /C4::ILSDI::Services/; # DB
23         return if $m =~ /C4::Tags$/; # DB
24         return if $m =~ /C4::Service/; # DB
25         return if $m =~ /C4::Auth_with_cas/; # DB
26         return if $m =~ /C4::BackgroundJob/; # DB
27         return if $m =~ /C4::UploadedFile/; # DB
28         return if $m =~ /C4::Reports::Guided/; # DB
29         return if $m =~ /C4::VirtualShelves::Page/; # DB
30         return if $m =~ /C4::Members::Statistics/; # DB
31         use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'");
32     },
33 }, $lib);
34
35 $lib = File::Spec->rel2abs('Koha');
36 find(
37     {
38         bydepth  => 1,
39         no_chdir => 1,
40         wanted   => sub {
41             my $m = $_;
42             return unless $m =~ s/[.]pm$//;
43             $m =~ s{^.*/Koha/}{Koha/};
44             $m =~ s{/}{::}g;
45             return if $m =~ /Koha::SearchEngine/; # Koha::SearchEngine::* are experimental
46             use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'");
47         },
48     },
49     $lib
50 );
51
52
53 done_testing();