X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Fsbin%2Frt-test-dependencies;h=d6e018a9fcd9aadf0936cf15d68f5cfccdc89e2a;hb=e70abd21bab68b23488f7ef1ee2e693a3b365691;hp=a1fed190b30d8445a78f1ec0ceb8a6299f9887bd;hpb=b4b0c7e72d7eaee2fbfc7022022c9698323203dd;p=freeside.git diff --git a/rt/sbin/rt-test-dependencies b/rt/sbin/rt-test-dependencies index a1fed190b..d6e018a9f 100644 --- a/rt/sbin/rt-test-dependencies +++ b/rt/sbin/rt-test-dependencies @@ -60,7 +60,7 @@ GetOptions( \%args, 'v|verbose', 'install', 'with-MYSQL', 'with-POSTGRESQL|with-pg|with-pgsql', 'with-SQLITE', - 'with-ORACLE', 'with-FASTCGI', + 'with-ORACLE', 'with-FASTCGI', 'with-FASTCGI-SERVER', 'with-SPEEDYCGI', 'with-MODPERL1', 'with-MODPERL2', 'with-DEV', 'with-STANDALONE', @@ -147,7 +147,8 @@ sub conclude { for my $name ( keys %$missing ) { my $module = $missing->{$name}; my $version = $module->{version}; - print_found( $name . ( $version ? " >= $version" : "" ), + my $error = $module->{error}; + print_found( $name . ( $version && !$error ? " >= $version" : "" ), 0, $module->{error} ); } } @@ -172,11 +173,12 @@ The following switches will tell the tool to check for specific dependencies --with-oracle Database interface for Oracle --with-sqlite Database interface and driver for SQLite (unsupported) - --with-standalone Libraries needed to support the standalone simple pure perl server - --with-fastcgi Libraries needed to support the fastcgi handler - --with-speedycgi Libraries needed to support the speedycgi handler - --with-modperl1 Libraries needed to support the modperl 1 handler - --with-modperl2 Libraries needed to support the modperl 2 handler + --with-standalone Libraries needed to support the standalone simple pure perl server + --with-fastcgi-server Libraries needed to support the external fastcgi server + --with-fastcgi Libraries needed to support the fastcgi handler + --with-speedycgi Libraries needed to support the speedycgi handler + --with-modperl1 Libraries needed to support the modperl 1 handler + --with-modperl2 Libraries needed to support the modperl 2 handler --with-dev Tools needed for RT development @@ -295,6 +297,7 @@ Test::Builder 0.77 # needed to fix TODO test IPC::Run3 Test::MockTime HTTP::Server::Simple::Mason 0.13 +Log::Dispatch::Perl . $deps{'FASTCGI'} = [ text_to_hash( << '.') ]; @@ -303,6 +306,16 @@ FCGI CGI::Fast . +$deps{'FASTCGI-SERVER'} = [ text_to_hash( << '.') ]; +CGI 3.38 +CGI::Fast +FCGI::ProcManager +File::Basename +File::Spec +Getopt::Long +Pod::Usage +. + $deps{'SPEEDYCGI'} = [ text_to_hash( << '.') ]; CGI 3.38 CGI::SpeedyCGI @@ -367,8 +380,11 @@ GD::Graph GD::Text . -if ($args{'download'}) { +my %AVOID = ( + 'DBD::Oracle' => [qw(1.23)], +); +if ($args{'download'}) { download_mods(); } @@ -392,7 +408,8 @@ foreach my $type (sort grep $args{$_}, keys %args) { if ( $args{'install'} ) { for my $module (keys %missing) { resolve_dep($module, $missing{$module}{version}); - delete $missing{$module} if test_dep($module, $missing{$module}{version}); + delete $missing{$module} + if test_dep($module, $missing{$module}{version}, $AVOID{$module}); } } @@ -408,8 +425,8 @@ sub test_deps { while(@deps) { my $module = shift @deps; my $version = shift @deps; - my($test, $error) = test_dep($module, $version); - my $msg = $module . ($version ? " >= $version" : ''); + my($test, $error) = test_dep($module, $version, $AVOID{$module}); + my $msg = $module . ($version && !$error ? " >= $version" : ''); print_found($msg, $test, $error); $missing{$module} = { version => $version, error => $error } unless $test; @@ -421,23 +438,32 @@ sub test_deps { sub test_dep { my $module = shift; my $version = shift; + my $avoid = shift; if ( $args{'list-deps'} ) { print $module, ': ', $version || 0, "\n"; } else { eval "use $module $version ()"; - if ($@) { - my $error = $@; + if ( my $error = $@ ) { + return 0 unless wantarray; + $error =~ s/\n(.*)$//s; $error =~ s/at \(eval \d+\) line \d+\.$//; - undef $error unless $error =~ /this is only/; + undef $error if $error =~ /this is only/; return ( 0, $error ); } - else { - return 1; + + if ( $avoid ) { + my $version = $module->VERSION; + if ( grep $version eq $_, @$avoid ) { + return 0 unless wantarray; + return (0, "It's known that there are problems with RT and version '$version' of '$module' module. If it's the latest available version of the module then you have to downgrade manually."); + } } + + return 1; } }