75 lines
1.3 KiB
Perl
75 lines
1.3 KiB
Perl
#!/usr/bin/perl -w
|
|
#
|
|
# Test that the plugins each refer to environmental variables,
|
|
# not the perl config hash.
|
|
#
|
|
# Steve
|
|
# --
|
|
# $Id: plugin-checks.t,v 1.4 2006-06-13 13:26:00 steve Exp $
|
|
#
|
|
|
|
|
|
use strict;
|
|
use Test::More qw( no_plan );
|
|
|
|
|
|
testPlugins( "debian" );
|
|
testPlugins( "centos4" );
|
|
|
|
|
|
sub testPlugins
|
|
{
|
|
my ( $dist ) = ( @_ );
|
|
|
|
#
|
|
# Make sure there is a hook directory for the named distro
|
|
#
|
|
ok( -d "hooks/$dist/", "There is a hook directory for the distro $dist" );
|
|
|
|
#
|
|
# Make sure the plugins are OK.
|
|
#
|
|
foreach my $file ( glob( "hooks/$dist/*" ) )
|
|
{
|
|
ok( -e $file, "$file" );
|
|
|
|
if ( -f $file )
|
|
{
|
|
#
|
|
# Make sure the file is OK
|
|
#
|
|
my $result = testFile( $file );
|
|
is( $result, 0, " File contains no mention of the config hash" );
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
# Test that the named file contains no mention of '$CONFIG{'xx'};'
|
|
#
|
|
sub testFile
|
|
{
|
|
my ( $file ) = ( @_ );
|
|
|
|
open( FILY, "<", $file ) or die "Failed to open $file - $!";
|
|
|
|
foreach my $line ( <FILY> )
|
|
{
|
|
if ( $line =~ /\$CONFIG{[ \t'"]+(.*)[ \t'"]+}/ )
|
|
{
|
|
close( FILY );
|
|
return $line;
|
|
}
|
|
}
|
|
close( FILY );
|
|
|
|
#
|
|
# Success
|
|
#
|
|
return 0;
|
|
}
|
|
|