File: 040wevtutilfilt.t

package info (click to toggle)
monitoring-plugins-check-logfiles 4.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,992 kB
  • sloc: perl: 19,492; sh: 3,422; makefile: 72; awk: 41
file content (176 lines) | stat: -rw-r--r-- 5,087 bytes parent folder | download | duplicates (2)
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
#!/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 ne "cygwin") and ($^O !~ /MSWin/)) {
  diag("this is not a windows machine");
  plan skip_all => 'Test only relevant on Windows';
} else {
  plan tests => 4;
}

use Nagios::CheckLogfiles::Search::Eventlog;

my $cl = Nagios::CheckLogfiles::Test->new({
	protocolsdir => TESTDIR."/var/tmp",
	seekfilesdir => TESTDIR."/var/tmp",
	searches => [
	    {
	      tag => "ssh",
	      type => "wevtutil",
              criticalpatterns => '.*',
              eventlog => {
              	eventlog => "application",
                include => {
                  EventType => 'Error',
                  Source => 'EventCreate',
                },
                exclude => {
                  EventID => '13,23',
                },
              }
	    }
	]    });

$cl->make_windows_plugin();

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.
$cl->run(); # cleanup
$ssh->delete_seekfile();
$ssh->logger(undef, undef, 1, "Event examine info", undef, { 
  EventType => 'Information',
  EventID => '0001',
});
$ssh->logger(undef, undef, 1, "Event examine warning", undef, { 
  EventType => 'Warning',
  EventID => '0001',
});
$ssh->logger(undef, undef, 1, "Event examine error", undef, { 
  EventType => 'Error',
  EventID => '0001',
});
$ssh->logger(undef, undef, 1, "Event examine success", undef, { 
  EventType => 'Success',
  EventID => '0001',
});
$ssh->trace(sprintf "+----------------------- test %d ------------------", 1);
sleep_until_next_minute();
$ssh->trace("initial run");
diag("now look at four levels");
$cl->run(); # cleanup
diag("1st run");
$cl->reset();
diag("cleanup");
$ssh->trace(sprintf "+----------------------- test %d ------------------", 7);
sleep_until_next_minute();
$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 => '0013',
  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 => '0013',
  Source => 'DVD',   # block
});
$ssh->logger(undef, undef, 1, "Firewall problem3", undef, {
  EventType => 'Error',
  EventID => '23',   # block
});
# run commandline
sleep 2;
my $cmd = sprintf "perl ../plugins-scripts/check_logfiles --tag %s --seekfilesdir %s --criticalpattern \".*\" --type \"wevtutil:eventlog=application,include,EventType=Error,Source=EventCreate,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
my $result = `$cmd`;
diag($result);
ok($result =~ /CRITICAL - \(2 errors in/);
ok(($? >> 8) == 2);
$cl->remove_windows_plugin();