From 181260d636d94c55be2208f6353813cfa00b183a Mon Sep 17 00:00:00 2001 From: William Leibzon Date: Mon, 25 Jun 2012 02:05:28 -0700 Subject: added test case for certificate checs with both warning and critical values 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" ); -- cgit v0.10-9-g596f