1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
#!/usr/bin/perl -w
#
# ~/check_logfiles/test/040eventlog.t
#
# Test that all the Perl modules we require are available.
#
use strict;
use Test::More;
use Cwd;
use lib "../plugins-scripts";
use Nagios::CheckLogfiles::Test;
use constant TESTDIR => ".";
use Data::Dumper;
sub sleep_until_next_minute {
my($sec, $min, $hour, $mday, $mon, $year) = (localtime)[0, 1, 2, 3, 4, 5];
while ($sec < 59) {
sleep 1;
($sec, $min, $hour, $mday, $mon, $year) = (localtime)[0, 1, 2, 3, 4, 5];
}
sleep 2;
# now it is ~ hh:00, hh:01
}
if ($^O !~ /MSWin/) {
diag("this is not a windows machine");
plan skip_all => 'Test only relevant on Windows';
} elsif ($^O eq "cygwin") {
diag("this is a windows machine, but cygwin. this worked in former times, afte
r vista you have to use native windows for the tests");
plan skip_all => 'Test only relevant on Windows';
} else {
plan tests => 7;
}
my $cl = Nagios::CheckLogfiles::Test->new({
protocolsdir => TESTDIR."/var/tmp",
seekfilesdir => TESTDIR."/var/tmp",
searches => [
{
tag => "ssh",
type => "eventlog",
criticalpatterns => '.*',
eventlog => {
eventlog => "application",
include => {
EventType => 'Error',
Source => 'check_logfiles',
},
exclude => {
EventID => '13,23',
},
}
}
] });
my $ssh = $cl->get_search_by_tag("ssh");
if ($^O !~ /MSWin|cygwin/) {
diag("windows only");
foreach (1..7) {ok(1)};
exit 0;
}
$ssh->delete_seekfile();
$ssh->trace("deleted seekfile");
# 1 logfile will be created. there is no seekfile. position at the end of file
# and remember this as starting point for the next run.
$ssh->trace(sprintf "+----------------------- test %d ------------------", 1);
sleep_until_next_minute();
$ssh->trace("initial run");
$cl->run(); # cleanup
diag("1st run");
$cl->reset();
diag("cleanup");
$ssh->trace(sprintf "+----------------------- test %d ------------------", 7);
$ssh->logger(undef, undef, 1, "Firewall problem1", undef, {
EventType => 'Error',
EventID => '0010',
});
$ssh->logger(undef, undef, 1, "Firewall problem2", undef, {
EventType => 'Error',
EventID => '0011',
});
$ssh->logger(undef, undef, 1, "DVD problem1", undef, {
EventType => 'Error',
EventID => '0012',
Source => 'DVD', # block
});
$ssh->logger(undef, undef, 1, "Firewall problem3", undef, {
EventType => 'Error',
EventID => '23', # block
});
$cl->run();
diag($cl->has_result());
diag($cl->{exitmessage});
ok($cl->expect_result(0, 0, 0, 0, 0)); #1
# 2 now find the two criticals 1xFWproblem1 1xFWproblem2
$ssh->trace(sprintf "+----------------------- test %d ------------------", 2);
$cl->reset();
sleep_until_next_minute();
# these events were created in the current minute and are ignored by the run()
$ssh->logger(undef, undef, 1, "Fireball 2hihi");
$ssh->logger(undef, undef, 1, "Fireball 3hihi");
$ssh->logger(undef, undef, 1, "Firewall problem1");
$cl->run();
diag($cl->has_result());
diag($cl->{exitmessage}.'|'.$cl->{perfdata});
ok($cl->expect_result(0, 0, 2, 0, 2)); #2
sleep 2;
$cl->reset();
diag("now commandline");
$ssh->trace(sprintf "+----------------------- test %d ------------------", 7);
$ssh->logger(undef, undef, 1, "Firewall problem1", undef, {
EventType => 'Error',
EventID => '0010',
});
$ssh->logger(undef, undef, 1, "Firewall problem2", undef, {
EventType => 'Error',
EventID => '0011',
});
$ssh->logger(undef, undef, 1, "DVD problem1", undef, {
EventType => 'Error',
EventID => '0012',
Source => 'DVD', # block
});
$ssh->logger(undef, undef, 1, "Firewall problem3", undef, {
EventType => 'Error',
EventID => '23', # block
});
# run commandline
my $cmd = sprintf "perl ../plugins-scripts/check_logfiles --tag %s --seekfilesdir %s --criticalpattern \".*\" --type \"eventlog:eventlog=application,include,EventType=Error,Source=check_logfiles,exclude,eventid=13,eventid=23\"",
"ssh", TESTDIR."/var/tmp";
diag($cmd);
my $result = `$cmd`;
diag($result);
ok($result =~ /OK - no errors or warnings/);
ok(($? >> 8) == 0);
# 2 now find the two criticals 1xFWproblem1 1xFWproblem2
$ssh->trace(sprintf "+----------------------- test %d ------------------", 2);
$cl->reset();
sleep_until_next_minute();
$ssh->logger(undef, undef, 1, "Fireball 2hihi");
$ssh->logger(undef, undef, 1, "Fireball 3hihi");
$ssh->logger(undef, undef, 1, "Firewall problem1");
# run commandline
$result = `$cmd`;
diag($result);
ok($result =~ /CRITICAL - \(2 errors in/);
ok(($? >> 8) == 2);
|