summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Nierlein <sven@nierlein.org>2017-05-04 21:19:51 (GMT)
committerGitHub <noreply@github.com>2017-05-04 21:19:51 (GMT)
commitb3d39e605ef7ce7da056721c4e2e140966be3530 (patch)
tree4145f3c9b5a3fd8346001752d3687522a7c56b7f
parentd0e03032f14179c64d1735d6b6fb88c4eeca2b01 (diff)
parent9326543c2e65b986e7537465ee52f0ec44639338 (diff)
downloadmonitoring-plugins-b3d39e6.tar.gz
Merge pull request #1474 from odenbach/vport
Added tests for virtual port behaviour. Separated from all other test…
-rwxr-xr-xplugins/tests/check_http.t41
1 files changed, 39 insertions, 2 deletions
diff --git a/plugins/tests/check_http.t b/plugins/tests/check_http.t
index 1bc0ecb..d6d31de 100755
--- a/plugins/tests/check_http.t
+++ b/plugins/tests/check_http.t
@@ -20,6 +20,7 @@ use FindBin qw($Bin);
20$ENV{'LC_TIME'} = "C"; 20$ENV{'LC_TIME'} = "C";
21 21
22my $common_tests = 70; 22my $common_tests = 70;
23my $virtual_port_tests = 8;
23my $ssl_only_tests = 8; 24my $ssl_only_tests = 8;
24# Check that all dependent modules are available 25# Check that all dependent modules are available
25eval "use HTTP::Daemon 6.01;"; 26eval "use HTTP::Daemon 6.01;";
@@ -33,7 +34,7 @@ if ($@) {
33 plan skip_all => "Missing required module for test: $@"; 34 plan skip_all => "Missing required module for test: $@";
34} else { 35} else {
35 if (-x "./check_http") { 36 if (-x "./check_http") {
36 plan tests => $common_tests * 2 + $ssl_only_tests; 37 plan tests => $common_tests * 2 + $ssl_only_tests + $virtual_port_tests;
37 } else { 38 } else {
38 plan skip_all => "No check_http compiled"; 39 plan skip_all => "No check_http compiled";
39 } 40 }
@@ -158,6 +159,11 @@ sub run_server {
158 $c->send_basic_header; 159 $c->send_basic_header;
159 $c->send_header('foo'); 160 $c->send_header('foo');
160 $c->send_crlf; 161 $c->send_crlf;
162 } elsif ($r->url->path eq "/virtual_port") {
163 # return sent Host header
164 $c->send_basic_header;
165 $c->send_crlf;
166 $c->send_response(HTTP::Response->new( 200, 'OK', undef, $r->header ('Host')));
161 } else { 167 } else {
162 $c->send_error(HTTP::Status->RC_FORBIDDEN); 168 $c->send_error(HTTP::Status->RC_FORBIDDEN);
163 } 169 }
@@ -207,6 +213,37 @@ SKIP: {
207 213
208} 214}
209 215
216my $cmd;
217# check virtual port behaviour
218#
219# http without virtual port
220$cmd = "$command -p $port_http -u /virtual_port -r ^127.0.0.1:$port_http\$";
221$result = NPTest->testCmd( $cmd );
222is( $result->return_code, 0, $cmd);
223like( $result->output, '/^HTTP OK: HTTP/1.1 200 OK - \d+ bytes in [\d\.]+ second/', "Output correct: ".$result->output );
224
225# http with virtual port
226$cmd = "$command:80 -p $port_http -u /virtual_port -r ^127.0.0.1\$";
227$result = NPTest->testCmd( $cmd );
228is( $result->return_code, 0, $cmd);
229like( $result->output, '/^HTTP OK: HTTP/1.1 200 OK - \d+ bytes in [\d\.]+ second/', "Output correct: ".$result->output );
230
231SKIP: {
232 skip "HTTP::Daemon::SSL not installed", 4 if ! exists $servers->{https};
233 # https without virtual port
234 $cmd = "$command -p $port_https --ssl -u /virtual_port -r ^127.0.0.1:$port_https\$";
235 $result = NPTest->testCmd( $cmd );
236 is( $result->return_code, 0, $cmd);
237 like( $result->output, '/^HTTP OK: HTTP/1.1 200 OK - \d+ bytes in [\d\.]+ second/', "Output correct: ".$result->output );
238
239 # https with virtual port
240 $cmd = "$command:443 -p $port_https --ssl -u /virtual_port -r ^127.0.0.1\$";
241 $result = NPTest->testCmd( $cmd );
242 is( $result->return_code, 0, $cmd);
243 like( $result->output, '/^HTTP OK: HTTP/1.1 200 OK - \d+ bytes in [\d\.]+ second/', "Output correct: ".$result->output );
244}
245
246
210sub run_common_tests { 247sub run_common_tests {
211 my ($opts) = @_; 248 my ($opts) = @_;
212 my $command = $opts->{command}; 249 my $command = $opts->{command};
@@ -392,7 +429,7 @@ sub run_common_tests {
392 429
393 # Test an external address - timeout 430 # Test an external address - timeout
394 SKIP: { 431 SKIP: {
395 skip "This doesn't seems to work all the time", 1 unless ($ENV{HTTP_EXTERNAL}); 432 skip "This doesn't seem to work all the time", 1 unless ($ENV{HTTP_EXTERNAL});
396 $cmd = "$command -f follow -u /redir_external -t 5"; 433 $cmd = "$command -f follow -u /redir_external -t 5";
397 eval { 434 eval {
398 $result = NPTest->testCmd( $cmd, 2 ); 435 $result = NPTest->testCmd( $cmd, 2 );