nagios4/t/615cgierror.t

37 lines
1.1 KiB
Perl
Raw Permalink Normal View History

2017-05-19 22:22:40 +02:00
#!/usr/bin/perl
#
# Check that you get an appropriate error when the CGI config file does not exist
use warnings;
use strict;
use Test::More;
use FindBin qw($Bin);
chdir $Bin or die "Cannot chdir";
my $topdir = "$Bin/..";
my $cgi_dir = "$topdir/cgi";
opendir(DIR, $cgi_dir) or die "Cannot opendir $cgi_dir: $!";
my %cgis = map { ( $_ => 1 ) } grep /\.cgi$/, readdir DIR;
closedir DIR;
# Remove these two because the output is different
2019-04-18 17:09:18 +02:00
my @todos = qw(statuswml.cgi statuswrl.cgi archivejson.cgi statusjson.cgi objectjson.cgi);
2017-05-19 22:22:40 +02:00
TODO: {
local $TODO = "Output is different for these CGIs";
foreach my $cgi (@todos) {
delete $cgis{$cgi};
2017-05-19 23:37:19 +02:00
# my $output = `NAGIOS_CGI_CONFIG=etc/cgi.nonexistent REQUEST_METHOD=GET $cgi_dir/$cgi`;
# like( $output, "/Error: Could not open CGI config file 'etc/cgi.nonexistent' for reading/", "Found error for $cgi" );
2017-05-19 22:22:40 +02:00
}
}
2017-05-19 23:37:19 +02:00
plan tests => scalar keys %cgis;
2017-05-19 22:22:40 +02:00
foreach my $cgi (sort keys %cgis) {
2017-05-19 23:37:19 +02:00
my $output = `NAGIOS_CGI_CONFIG=etc/cgi.nonexistent REQUEST_METHOD=GET $cgi_dir/$cgi`;
like( $output, "/Error: Could not open CGI config file 'etc/cgi.nonexistent' for reading/", "Found error for $cgi" );
2017-05-19 22:22:40 +02:00
}