[nagiosplug] added test case for certificate checs with both ...
Nagios Plugin Development
nagios-plugins at users.sourceforge.net
Mon Jun 25 13:01:13 CEST 2012
Module: nagiosplug
Branch: master
Commit: 181260d636d94c55be2208f6353813cfa00b183a
Author: William Leibzon <william at leibzon.org>
Committer: Sven Nierlein <sven at nierlein.de>
Date: Mon Jun 25 02:05:28 2012 -0700
URL: http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug/nagiosplug;a=commit;h=181260d
added test case for certificate checs with both warning and critical values
---
plugins/tests/check_http.t | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/plugins/tests/check_http.t b/plugins/tests/check_http.t
index 9ae6bbd..8337f52 100755
--- a/plugins/tests/check_http.t
+++ b/plugins/tests/check_http.t
@@ -188,6 +188,10 @@ SKIP: {
is( $result->return_code, 1, "$command -p $port_https -S -C 14000" );
like( $result->output, '/WARNING - Certificate \'Ton Voon\' expires in \d+ day\(s\) \(03/03/2019 21:41\)./', "output ok" );
+ $result = NPTest->testCmd( "$command -p $port_https -S -C 13960,14000" );
+ is( $result->return_code, 1, "$command -p $port_https -S -C 139600,14000" );
+ like( $result->output, '/CRITICAL - Certificate \'Ton Voon\' expires in \d+ day\(s\) \(03/03/2019 21:41\)./', "output ok" );
+
# Expired cert tests
$result = NPTest->testCmd( "$command -p $port_https_expired -S -C 7" );
is( $result->return_code, 2, "$command -p $port_https_expired -S -C 7" );
More information about the Commits
mailing list