X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2F00-load.t;h=21b62ebb504c49b36d8ac52e43faf892f9bfc37c;hb=6bc6d0254ba8694303576be7822d5972d8eff306;hp=dc69f9604a0c4ed7675b3ba74dea492984a10adc;hpb=765cebfbeb0af34747622de2200ed6de337a7ed9;p=koha.git diff --git a/t/00-load.t b/t/00-load.t index dc69f9604a..21b62ebb50 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -1,11 +1,37 @@ -# This script is called by the pre-commit git hook to test modules compile +#!/usr/bin/perl + +# This file is part of Koha. +# +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . + +use Modern::Perl; -use strict; -use warnings; use Test::More; use File::Spec; use File::Find; +use t::lib::Mocks; + +=head1 DESCRIPTION + +00-load.t: This script is called by the pre-commit git hook to test modules compile + +=cut + +my $context_module = t::lib::Mocks::mock_dbh; + +# Loop through the C4:: modules my $lib = File::Spec->rel2abs('C4'); find({ bydepth => 1, @@ -13,27 +39,16 @@ find({ wanted => sub { my $m = $_; return unless $m =~ s/[.]pm$//; + $m =~ s{^.*/C4/}{C4/}; $m =~ s{/}{::}g; return if $m =~ /Auth_with_ldap/; # Dont test this, it will fail on use - return if $m =~ /Cache/; # Cache modules are a WIP, add the tests back when we are using them more - return if $m =~ /SIP/; # SIP modules will not load clean - return if $m =~ /C4::VirtualShelves$/; # Requires a DB - return if $m =~ /C4::Auth$/; # DB - return if $m =~ /C4::Tags$/; # DB - return if $m =~ /C4::Service/; # DB - return if $m =~ /C4::Auth_with_cas/; # DB - return if $m =~ /C4::BackgroundJob/; # DB - return if $m =~ /C4::UploadedFile/; # DB - return if $m =~ /C4::Record/; # DB - return if $m =~ /C4::Reports::Guided/; # DB - return if $m =~ /C4::Serials/; # DB - return if $m =~ /C4::VirtualShelves::Page/; # DB - return if $m =~ /C4::Members::Statistics/; # DB + return if $m =~ /SIPServer/; # SIP Server module has old package usage use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); }, }, $lib); +# Loop through the Koha:: modules $lib = File::Spec->rel2abs('Koha'); find( { @@ -44,8 +59,7 @@ find( return unless $m =~ s/[.]pm$//; $m =~ s{^.*/Koha/}{Koha/}; $m =~ s{/}{::}g; - return if $m =~ /Koha::SearchEngine/; # Koha::SearchEngine::* are experimental - return if $m =~ /Koha::Cache::Memcached/; # optional dependency + return if $m =~ /Koha::NorwegianPatronDB/; # uses non-mandatory modules use_ok($m) || BAIL_OUT("***** PROBLEMS LOADING FILE '$m'"); }, }, @@ -54,3 +68,5 @@ find( done_testing(); + +1;