centreon-plugins/apps/selenium/mode/scenario.pm

241 lines
8.3 KiB
Perl
Raw Normal View History

2014-10-15 14:04:43 +02:00
#
2015-07-21 11:51:02 +02:00
# Copyright 2015 Centreon (http://www.centreon.com/)
#
# Centreon is a full-fledged industry-strength solution that meets
# the needs in IT infrastructure and application monitoring for
# service performance.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
2014-10-15 14:04:43 +02:00
package apps::selenium::mode::scenario;
use base qw(centreon::plugins::mode);
use strict;
use warnings;
use Time::HiRes qw(gettimeofday tv_interval);
use XML::XPath;
use XML::XPath::XMLParser;
use WWW::Selenium;
2014-10-15 15:18:56 +02:00
my %handlers = (ALRM => {} );
2014-10-15 14:04:43 +02:00
sub new {
my ($class, %options) = @_;
my $self = $class->SUPER::new(package => __PACKAGE__, %options);
bless $self, $class;
$self->{version} = '1.0';
$options{options}->add_options(arguments =>
{
"selenium-hostname:s" => { name => 'selenium_hostname', default => 'localhost' },
2014-10-15 14:57:06 +02:00
"selenium-port:s" => { name => 'selenium_port', default => '4444' },
"browser:s" => { name => 'browser', default => '*firefox' },
2014-10-15 14:04:43 +02:00
"directory:s" => { name => 'directory', default => '/var/lib/centreon_waa' },
"scenario:s" => { name => 'scenario' },
"warning:s" => { name => 'warning' },
"critical:s" => { name => 'critical' },
2014-10-15 15:18:56 +02:00
"timeout:s" => { name => 'timeout', default => 50 },
2014-10-15 14:04:43 +02:00
});
2014-10-15 15:18:56 +02:00
$self->set_signal_handlers;
2014-10-15 14:04:43 +02:00
return $self;
}
2014-10-15 15:18:56 +02:00
sub set_signal_handlers {
my $self = shift;
$SIG{ALRM} = \&class_handle_ALRM;
$handlers{ALRM}->{$self} = sub { $self->handle_ALRM() };
}
sub class_handle_ALRM {
foreach (keys %{$handlers{ALRM}}) {
&{$handlers{ALRM}->{$_}}();
}
}
sub handle_ALRM {
my $self = shift;
$self->{output}->output_add(severity => 'UNKNOWN',
short_msg => sprintf("Cannot finished scenario execution (timeout received)"));
$self->{output}->display();
$self->{output}->exit();
}
2014-10-15 14:04:43 +02:00
sub check_options {
my ($self, %options) = @_;
$self->SUPER::init(%options);
if (($self->{perfdata}->threshold_validate(label => 'warning', value => $self->{option_results}->{warning})) == 0) {
$self->{output}->add_option_msg(short_msg => "Wrong warning threshold '" . $self->{option_results}->{warning} . "'.");
$self->{output}->option_exit();
}
if (($self->{perfdata}->threshold_validate(label => 'critical', value => $self->{option_results}->{critical})) == 0) {
$self->{output}->add_option_msg(short_msg => "Wrong critical threshold '" . $self->{option_results}->{critical} . "'.");
$self->{output}->option_exit();
}
2014-10-15 15:18:56 +02:00
if (defined($self->{option_results}->{timeout}) && $self->{option_results}->{timeout} =~ /^\d+$/ &&
$self->{option_results}->{timeout} > 0) {
alarm($self->{option_results}->{timeout});
}
2014-10-20 11:41:30 +02:00
if (!defined($self->{option_results}->{scenario})) {
2014-10-20 11:46:21 +02:00
$self->{output}->add_option_msg(short_msg => "Please specify a scenario name" . $self->{option_results}->{scenario} . ".");
$self->{output}->option_exit();
}
2014-10-15 14:04:43 +02:00
}
sub run {
my ($self, %options) = @_;
my $p = XML::Parser->new(NoLWP => 1);
my $filename = $self->{option_results}->{directory} . '/' . $self->{option_results}->{scenario} . '.html';
2014-10-20 11:46:21 +02:00
my $xp = XML::XPath->new(parser => $p, filename => $filename);
2014-10-15 14:04:43 +02:00
my $baseurlNode = $xp->find('/html/head/link[@rel="selenium.base"]');
my $baseurl = $baseurlNode->shift->getAttribute('href');
my $listActionNode = $xp->find('/html/body/table/tbody/tr');
my $sel = WWW::Selenium->new(
host => $self->{option_results}->{selenium_hostname},
port => $self->{option_results}->{selenium_port},
browser => $self->{option_results}->{browser},
browser_url => $baseurl
);
$sel->start;
2014-10-15 16:09:35 +02:00
$self->{output}->output_add(long_msg => "Base URL : " . $baseurl);
2014-10-15 14:04:43 +02:00
my $timing0 = [gettimeofday];
my ($action, $filter, $value);
my $step = $listActionNode->get_nodelist;
2014-10-15 16:01:16 +02:00
my $temp_step = 0;
2014-10-15 14:04:43 +02:00
my $stepOk = 0;
my $exit1 = 'UNKNOWN';
foreach my $actionNode ($listActionNode->get_nodelist) {
($action, $filter, $value) = $xp->find('./td', $actionNode)->get_nodelist;
my $trim_action = centreon::plugins::misc::trim($action->string_value);
my $trim_filter = centreon::plugins::misc::trim($filter->string_value);
my $trim_value = centreon::plugins::misc::trim($value->string_value);
2014-10-15 16:01:16 +02:00
$temp_step++;
2014-10-15 14:04:43 +02:00
if ($trim_action eq 'pause') {
my $sleepTime = 1000;
if ($trim_value =~ /^\d+$/) {
$sleepTime = $trim_value;
}
if ($trim_filter =~ /^\d+$/) {
$sleepTime = $trim_filter;
}
sleep($sleepTime / 1000);
$stepOk++;
2014-10-15 16:01:16 +02:00
$self->{output}->output_add(long_msg => "Step " . $temp_step . " - Pause : " . $sleepTime . "ms");
} elsif ($trim_action eq 'echo'){
next;
2014-10-15 14:04:43 +02:00
} else {
2015-06-22 22:52:27 +02:00
my $exit_command;
eval {
$exit_command = $sel->do_command($trim_action, $trim_filter, $trim_value);
};
2014-10-15 16:01:16 +02:00
$self->{output}->output_add(long_msg => "Step " . $temp_step
2014-10-15 14:04:43 +02:00
. " - Command : '" . $trim_action . "'"
. " , Filter : '" . $trim_filter . "'"
. " , Value : '" . $trim_value . "'");
2015-06-22 22:52:27 +02:00
if (!$@ && $exit_command eq 'OK') {
2014-10-15 14:04:43 +02:00
$exit1 = 'OK';
$stepOk++;
} else {
2015-06-22 22:52:27 +02:00
if ($@) {
$self->{output}->output_add(long_msg => "display: $@");
}
2014-10-15 14:04:43 +02:00
$exit1 = 'CRITICAL';
last;
}
}
}
my $timeelapsed = tv_interval ($timing0, [gettimeofday]);
my $availability = sprintf("%d", $stepOk * 100 / $step);
my $exit2 = $self->{perfdata}->threshold_check(value => $timeelapsed,
2015-06-22 22:52:27 +02:00
threshold => [ { label => 'critical', exit_litteral => 'critical' }, { label => 'warning', exit_litteral => 'warning' } ]);
2014-10-15 14:04:43 +02:00
my $exit = $self->{output}->get_most_critical(status => [ $exit1, $exit2 ]);
$self->{output}->output_add(severity => $exit,
short_msg => sprintf("%d/%d steps (%.3fs)", $stepOk, $step, $timeelapsed));
2014-10-15 14:57:06 +02:00
$self->{output}->perfdata_add(label => "time", unit => 's',
2014-10-15 14:04:43 +02:00
value => sprintf('%.3f', $timeelapsed),
min => 0,
warning => $self->{perfdata}->get_perfdata_for_output(label => 'warning'),
critical => $self->{perfdata}->get_perfdata_for_output(label => 'critical'));
$self->{output}->perfdata_add(label => "steps",
value => sprintf('%d', $stepOk),
min => 0,
max => $step);
2014-10-15 14:57:06 +02:00
$self->{output}->perfdata_add(label => "availability", unit => '%',
2014-10-15 14:04:43 +02:00
value => sprintf('%d', $availability),
min => 0,
max => 100);
$self->{output}->display();
$self->{output}->exit();
}
1;
__END__
=head1 MODE
Check scenario execution
=over 8
=item B<--selenium-hostname>
IP Addr/FQDN of the Selenium server
=item B<--selenium-port>
Port used by Selenium server
=item B<--browser>
Browser used by Selenium server (Default : '*firefox')
=item B<--directory>
Directory where scenarii are stored
=item B<--scenario>
Scenario used by Selenium server (without extension)
2014-10-15 15:18:56 +02:00
=item B<--timeout>
Set global execution timeout (Default: 50)
2014-10-15 14:04:43 +02:00
=item B<--warning>
Threshold warning in seconds (Scenario execution time)
=item B<--critical>
Threshold critical in seconds (Scenario execution response time)
=back
=cut