summaryrefslogtreecommitdiffstats
path: root/plugins/tests
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2009-03-17 07:39:12 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2009-03-18 07:34:25 (GMT)
commitd41a33a434558189300113c28b26e2d3d681d390 (patch)
tree2966359be8ecb1b7eb8da172e5655f5233d34f8d /plugins/tests
parent9a05e9789017c03d192238c0337bc019838c52d4 (diff)
downloadmonitoring-plugins-d41a33a434558189300113c28b26e2d3d681d390.tar.gz
Add timezone support and fix checks around cert expiration
Diffstat (limited to 'plugins/tests')
-rwxr-xr-xplugins/tests/check_http.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/tests/check_http.t b/plugins/tests/check_http.t
index d7f4148..0a1b0bc 100755
--- a/plugins/tests/check_http.t
+++ b/plugins/tests/check_http.t
@@ -163,18 +163,18 @@ SKIP: {
163 163
164 $result = NPTest->testCmd( "$command -p $port_https -S -C 14" ); 164 $result = NPTest->testCmd( "$command -p $port_https -S -C 14" );
165 is( $result->return_code, 0, "$command -p $port_https -S -C 14" ); 165 is( $result->return_code, 0, "$command -p $port_https -S -C 14" );
166 is( $result->output, 'OK - Certificate will expire on 03/03/2019 21:41.', "output ok" ); 166 is( $result->output, 'OK - Certificate will expire on 03/03/2019 21:41 GMT.', "output ok" );
167 167
168 $result = NPTest->testCmd( "$command -p $port_https -S -C 14000" ); 168 $result = NPTest->testCmd( "$command -p $port_https -S -C 14000" );
169 is( $result->return_code, 1, "$command -p $port_https -S -C 14000" ); 169 is( $result->return_code, 1, "$command -p $port_https -S -C 14000" );
170 like( $result->output, '/WARNING - Certificate expires in \d+ day\(s\) \(03/03/2019 21:41\)./', "output ok" ); 170 like( $result->output, '/WARNING - Certificate expires in \d+ day\(s\) \(03/03/2019 21:41 GMT\)./', "output ok" );
171 171
172 172
173 # Expired cert tests 173 # Expired cert tests
174 $result = NPTest->testCmd( "$command -p $port_https_expired -S -C 7" ); 174 $result = NPTest->testCmd( "$command -p $port_https_expired -S -C 7" );
175 is( $result->return_code, 2, "$command -p $port_https_expired -S -C 7" ); 175 is( $result->return_code, 2, "$command -p $port_https_expired -S -C 7" );
176 is( $result->output, 176 is( $result->output,
177 'CRITICAL - Certificate expired on 03/05/2009 00:13.', 177 'CRITICAL - Certificate expired on 03/05/2009 00:13 GMT.',
178 "output ok" ); 178 "output ok" );
179 179
180} 180}