diff options
Diffstat (limited to 'plugins/t')
| -rw-r--r-- | plugins/t/check_curl.t | 115 | ||||
| -rw-r--r-- | plugins/t/check_disk.t | 202 |
2 files changed, 228 insertions, 89 deletions
diff --git a/plugins/t/check_curl.t b/plugins/t/check_curl.t index 2c2fafde..0f4d0de7 100644 --- a/plugins/t/check_curl.t +++ b/plugins/t/check_curl.t | |||
| @@ -13,7 +13,7 @@ use vars qw($tests $has_ipv6); | |||
| 13 | BEGIN { | 13 | BEGIN { |
| 14 | use NPTest; | 14 | use NPTest; |
| 15 | $has_ipv6 = NPTest::has_ipv6(); | 15 | $has_ipv6 = NPTest::has_ipv6(); |
| 16 | $tests = $has_ipv6 ? 55 : 53; | 16 | $tests = $has_ipv6 ? 57 : 92; |
| 17 | plan tests => $tests; | 17 | plan tests => $tests; |
| 18 | } | 18 | } |
| 19 | 19 | ||
| @@ -25,7 +25,13 @@ my $plugin = 'check_http'; | |||
| 25 | $plugin = 'check_curl' if $0 =~ m/check_curl/mx; | 25 | $plugin = 'check_curl' if $0 =~ m/check_curl/mx; |
| 26 | 26 | ||
| 27 | my $host_tcp_http = getTestParameter("NP_HOST_TCP_HTTP", "A host providing the HTTP Service (a web server)", "localhost"); | 27 | my $host_tcp_http = getTestParameter("NP_HOST_TCP_HTTP", "A host providing the HTTP Service (a web server)", "localhost"); |
| 28 | my $host_tcp_http_subdomain = getTestParameter("NP_HOST_TCP_HTTP_SUBDOMAIN", "A host that is served under a subdomain name", "subdomain1.localhost.com"); | ||
| 29 | my $host_tcp_http_ipv4 = getTestParameter("NP_HOST_TCP_HTTP_IPV4", "An IPv6 address providing a HTTP Service (a web server)", "127.0.0.1"); | ||
| 30 | my $host_tcp_http_ipv4_cidr_1 = getTestParameter("NP_HOST_TCP_HTTP_IPV4_CIDR_1", "A CIDR that the provided IPv4 address is in."); | ||
| 31 | my $host_tcp_http_ipv4_cidr_2 = getTestParameter("NP_HOST_TCP_HTTP_IPV4_CIDR_2", "A CIDR that the provided IPv4 address is in."); | ||
| 28 | my $host_tcp_http_ipv6 = getTestParameter("NP_HOST_TCP_HTTP_IPV6", "An IPv6 address providing a HTTP Service (a web server)", "::1"); | 32 | my $host_tcp_http_ipv6 = getTestParameter("NP_HOST_TCP_HTTP_IPV6", "An IPv6 address providing a HTTP Service (a web server)", "::1"); |
| 33 | my $host_tcp_http_ipv6_cidr_1 = getTestParameter("NP_HOST_TCP_HTTP_IPV6_CIDR_1", "A CIDR that the provided IPv6 address is in."); | ||
| 34 | my $host_tcp_http_ipv6_cidr_2 = getTestParameter("NP_HOST_TCP_HTTP_IPV6_CIDR_2", "A CIDR that the provided IPv6 address is in."); | ||
| 29 | my $host_tls_http = getTestParameter("NP_HOST_TLS_HTTP", "A host providing the HTTPS Service (a tls web server)", "localhost"); | 35 | my $host_tls_http = getTestParameter("NP_HOST_TLS_HTTP", "A host providing the HTTPS Service (a tls web server)", "localhost"); |
| 30 | my $host_tls_cert = getTestParameter("NP_HOST_TLS_CERT", "the common name of the certificate.", "localhost"); | 36 | my $host_tls_cert = getTestParameter("NP_HOST_TLS_CERT", "the common name of the certificate.", "localhost"); |
| 31 | my $host_nonresponsive = getTestParameter("NP_HOST_NONRESPONSIVE", "The hostname of system not responsive to network requests", "10.0.0.1"); | 37 | my $host_nonresponsive = getTestParameter("NP_HOST_NONRESPONSIVE", "The hostname of system not responsive to network requests", "10.0.0.1"); |
| @@ -222,3 +228,110 @@ SKIP: { | |||
| 222 | $res = NPTest->testCmd( "./$plugin -H monitoring-plugins.org --extended-perfdata" ); | 228 | $res = NPTest->testCmd( "./$plugin -H monitoring-plugins.org --extended-perfdata" ); |
| 223 | like ( $res->output, '/\'time_connect\'=[\d\.]+/', 'Extended Performance Data Output OK' ); | 229 | like ( $res->output, '/\'time_connect\'=[\d\.]+/', 'Extended Performance Data Output OK' ); |
| 224 | } | 230 | } |
| 231 | SKIP: { | ||
| 232 | skip "No internet access", 2 if $internet_access eq "no"; | ||
| 233 | |||
| 234 | # Proxy tests | ||
| 235 | # These are the proxy tests that require a working proxy server | ||
| 236 | # The debian container in the github workflow runs a squid proxy server at port 3128 | ||
| 237 | # Test that dont require one, like argument/environment variable parsing are in plugins/tests/check_curl.t | ||
| 238 | |||
| 239 | # Test if proxy works | ||
| 240 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 241 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used, there are no preventative measures "); | ||
| 242 | is( $res->return_code, 0, "Using proxy http://$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 243 | |||
| 244 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv4 --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 245 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used, there are no preventative measures "); | ||
| 246 | is( $res->return_code, 0, "Using proxy http://$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http_ipv4 works" ); | ||
| 247 | |||
| 248 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv6 --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 249 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used, there are no preventative measures "); | ||
| 250 | is( $res->return_code, 0, "Using proxy http://$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http_ipv6 works" ); | ||
| 251 | |||
| 252 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http2 --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 253 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used, there are no preventative measures "); | ||
| 254 | is( $res->return_code, 0, "Using proxy http://$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http2 works" ); | ||
| 255 | |||
| 256 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http_subdomain --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 257 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used, there are no preventative measures "); | ||
| 258 | is( $res->return_code, 0, "Using proxy http://$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http_subdomain works" ); | ||
| 259 | |||
| 260 | $res = NPTest->testCmd( "./$plugin -H $host_tls_http --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 261 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used, there are no preventative measures "); | ||
| 262 | is( $res->return_code, 0, "Using proxy http://$host_tcp_proxy:$port_tcp_proxy to connect to $host_tls_http works" ); | ||
| 263 | |||
| 264 | # Noproxy '*' should prevent using proxy in any setting, even if its specified | ||
| 265 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http_subdomain --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy \"\*\" -v" ); | ||
| 266 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since noproxy has \"\*\" "); | ||
| 267 | is( $res->return_code, 0, "Should reach $host_tcp_http_subdomain with or without proxy." ); | ||
| 268 | |||
| 269 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv4 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy \"\*\" -v" ); | ||
| 270 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since noproxy has \"\*\" "); | ||
| 271 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv4 with or without proxy." ); | ||
| 272 | |||
| 273 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv6 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy \"\*\" -v" ); | ||
| 274 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since noproxy has \"\*\" "); | ||
| 275 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv6 with or without proxy." ); | ||
| 276 | |||
| 277 | # Noproxy domain should prevent using proxy for subdomains of that domain | ||
| 278 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http_subdomain --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http -v" ); | ||
| 279 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since subdomain: $host_tcp_http_subdomain is under a noproxy domain: $host_tcp_http"); | ||
| 280 | is( $res->return_code, 0, "Should reach $host_tcp_http_subdomain with or without proxy." ); | ||
| 281 | |||
| 282 | # Noproxy should prevent using IP matches if an IP is found directly | ||
| 283 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv4 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http_ipv4 -v" ); | ||
| 284 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since IP address: $host_tcp_http_ipv4 is added into noproxy: $host_tcp_http_ipv4"); | ||
| 285 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv4 with or without proxy." ); | ||
| 286 | |||
| 287 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv6 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http_ipv6 -v" ); | ||
| 288 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since IP address: $host_tcp_http_ipv6 is added into noproxy: $host_tcp_http_ipv6"); | ||
| 289 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv6 with or without proxy." ); | ||
| 290 | |||
| 291 | # Noproxy should prevent using IP matches if a CIDR region that contains that Ip is used directly. | ||
| 292 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv4 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http_ipv4_cidr_1 -v" ); | ||
| 293 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since IP address: $host_tcp_http_ipv4 is inside CIDR range: $host_tcp_http_ipv4_cidr_1"); | ||
| 294 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv4 with or without proxy." ); | ||
| 295 | |||
| 296 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv4 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http_ipv4_cidr_2 -v" ); | ||
| 297 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since IP address: $host_tcp_http_ipv4 is inside CIDR range: $host_tcp_http_ipv4_cidr_2"); | ||
| 298 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv4 with or without proxy." ); | ||
| 299 | |||
| 300 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv6 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http_ipv6_cidr_1 -v " ); | ||
| 301 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since IP address: $host_tcp_http_ipv6 is inside CIDR range: $host_tcp_http_ipv6_cidr_1"); | ||
| 302 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv6 with or without proxy." ); | ||
| 303 | |||
| 304 | $res = NPTest->testCmd( "./$plugin -I $host_tcp_http_ipv6 --proxy http://$host_tcp_proxy:$port_tcp_proxy --noproxy $host_tcp_http_ipv6_cidr_2 -v" ); | ||
| 305 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used since IP address: $host_tcp_http_ipv6 is inside CIDR range: $host_tcp_http_ipv6_cidr_2"); | ||
| 306 | is( $res->return_code, 0, "Should reach $host_tcp_http_ipv6 with or without proxy." ); | ||
| 307 | |||
| 308 | # Noproxy should discern over different types of proxy schemes | ||
| 309 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy http://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 310 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used for resolving hostname, and is using scheme http "); | ||
| 311 | is( $res->return_code, 0, "Using proxy http:$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 312 | |||
| 313 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy https://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 314 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used for resolving hostname, and is using scheme https"); | ||
| 315 | # Squid is not configured for https | ||
| 316 | # is( $res->return_code, 0, "Using proxy https:$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 317 | |||
| 318 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy socks4://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 319 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used for resolving hostname, and is using scheme socks4"); | ||
| 320 | # Squid is not configured for socks4 | ||
| 321 | # is( $res->return_code, 0, "Using proxy socks4:$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 322 | |||
| 323 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy socks4a://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 324 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used for resolving hostname, and is using scheme socks4a"); | ||
| 325 | # Squid is not configured for socks4a | ||
| 326 | # is( $res->return_code, 0, "Using proxy socks4a:$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 327 | |||
| 328 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy socks5://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 329 | like($res->output, qr/^\* have local name resolution: true/m, "proxy is not used for resolving hostname, and is using scheme socks5"); | ||
| 330 | # Squid is not configured for socks5 | ||
| 331 | # is( $res->return_code, 0, "Using proxy socks5:$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 332 | |||
| 333 | $res = NPTest->testCmd( "./$plugin -H $host_tcp_http --proxy socks5h://$host_tcp_proxy:$port_tcp_proxy -v" ); | ||
| 334 | like($res->output, qr/^\* have local name resolution: false/m, "proxy is used for resolving hostname, and is using scheme socks5h"); | ||
| 335 | # Squid is not configured for socks5h | ||
| 336 | # is( $res->return_code, 0, "Using proxy socks5h:$host_tcp_proxy:$port_tcp_proxy to connect to $host_tcp_http works" ); | ||
| 337 | } | ||
diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t index 0f62fb2b..ba149842 100644 --- a/plugins/t/check_disk.t +++ b/plugins/t/check_disk.t | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | # TODO: Add in tests for perf data. Need to beef up Monitoring::Plugin::Performance to cater for max, min, etc | 7 | # TODO: Add in tests for perf data. Need to beef up Monitoring::Plugin::Performance to cater for max, min, etc |
| 8 | 8 | ||
| 9 | use strict; | 9 | use strict; |
| 10 | use warnings; | ||
| 10 | use Test::More; | 11 | use Test::More; |
| 11 | use NPTest; | 12 | use NPTest; |
| 12 | use POSIX qw(ceil floor); | 13 | use POSIX qw(ceil floor); |
| @@ -26,7 +27,7 @@ my $output_format = "--output-format mp-test-json"; | |||
| 26 | if ($mountpoint_valid eq "" or $mountpoint2_valid eq "") { | 27 | if ($mountpoint_valid eq "" or $mountpoint2_valid eq "") { |
| 27 | plan skip_all => "Need 2 mountpoints to test"; | 28 | plan skip_all => "Need 2 mountpoints to test"; |
| 28 | } else { | 29 | } else { |
| 29 | plan tests => 97; | 30 | plan tests => 96; |
| 30 | } | 31 | } |
| 31 | 32 | ||
| 32 | $result = NPTest->testCmd( | 33 | $result = NPTest->testCmd( |
| @@ -34,25 +35,30 @@ $result = NPTest->testCmd( | |||
| 34 | ); | 35 | ); |
| 35 | cmp_ok( $result->return_code, "==", 0, "Checking two mountpoints (must have at least 1% free in space and inodes)"); | 36 | cmp_ok( $result->return_code, "==", 0, "Checking two mountpoints (must have at least 1% free in space and inodes)"); |
| 36 | 37 | ||
| 38 | my $result_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]; | ||
| 39 | my $result_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]; | ||
| 40 | |||
| 37 | like($result->{'mp_test_result'}->{'state'}, "/OK/", "Main result is OK"); | 41 | like($result->{'mp_test_result'}->{'state'}, "/OK/", "Main result is OK"); |
| 38 | like($result->{'mp_test_result'}->{'checks'}->[0]->{'state'}, "/OK/", "First sub result is OK"); | 42 | like($result_mp2->{'state'}, "/OK/", "First sub result is OK"); |
| 39 | like($result->{'mp_test_result'}->{'checks'}->[1]->{'state'}, "/OK/", "Second sub result is OK"); | 43 | like($result_mp1->{'state'}, "/OK/", "Second sub result is OK"); |
| 44 | |||
| 45 | my @perfdata; | ||
| 46 | @perfdata[0] = $result_mp2->{'checks'}->[0]->{'perfdata'}->[0]; | ||
| 47 | @perfdata[1] = $result_mp1->{'checks'}->[0]->{'perfdata'}->[0]; | ||
| 40 | 48 | ||
| 41 | my $absolut_space_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | 49 | my $absolut_space_mp1 = $perfdata[1]->{'max'}->{'value'}; |
| 42 | # print("absolute space on mp1: ". $absolut_space_mp1 . "\n"); | 50 | # print("absolute space on mp1: ". $absolut_space_mp1 . "\n"); |
| 51 | my $absolut_used_space_mp1 = $perfdata[1]->{'value'}->{'value'}; | ||
| 43 | 52 | ||
| 44 | my $free_percent_on_mp1 = ($result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'} / ($absolut_space_mp1/100)); | 53 | my $free_percent_on_mp1 = ($absolut_space_mp1 - $absolut_used_space_mp1) / ($absolut_space_mp1/100); |
| 45 | print("free percent on mp1: ". $free_percent_on_mp1 . "\n"); | 54 | # print("free percent on mp1: ". $free_percent_on_mp1 . "\n"); |
| 46 | 55 | ||
| 47 | my $absolut_space_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | 56 | my $absolut_space_mp2 = $perfdata[0]->{'max'}->{'value'}; |
| 48 | # print("absolute space on mp2: ". $absolut_space_mp2 . "\n"); | 57 | # print("absolute space on mp2: ". $absolut_space_mp2 . "\n"); |
| 58 | my $absolut_used_space_mp2 = $perfdata[0]->{'value'}->{'value'}; | ||
| 49 | 59 | ||
| 50 | my $free_percent_on_mp2 = ($result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'}/ ($absolut_space_mp2/100)); | 60 | my $free_percent_on_mp2 = (($absolut_space_mp2 - $absolut_used_space_mp2)/ ($absolut_space_mp2/100)); |
| 51 | print("free percent on mp2: ". $free_percent_on_mp2 . "\n"); | 61 | # print("free percent on mp2: ". $free_percent_on_mp2 . "\n"); |
| 52 | |||
| 53 | my @perfdata; | ||
| 54 | @perfdata[0] = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]; | ||
| 55 | @perfdata[1] = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]; | ||
| 56 | 62 | ||
| 57 | # Decrease precision of numbers since the the fs might be modified between the two runs | 63 | # Decrease precision of numbers since the the fs might be modified between the two runs |
| 58 | $perfdata[0]->{'value'}->{'value'} = int($perfdata[0]->{'value'}->{'value'} / 1000000); | 64 | $perfdata[0]->{'value'}->{'value'} = int($perfdata[0]->{'value'}->{'value'} / 1000000); |
| @@ -73,35 +79,56 @@ if ($free_percent_on_mp1 > $free_percent_on_mp2) { | |||
| 73 | die "Two mountpoints are the same - cannot do rest of test"; | 79 | die "Two mountpoints are the same - cannot do rest of test"; |
| 74 | } | 80 | } |
| 75 | 81 | ||
| 76 | print("less free: " . $less_free . "\n"); | 82 | # print("less free: " . $less_free . "\n"); |
| 77 | print("more free: " . $more_free . "\n"); | 83 | # print("more free: " . $more_free . "\n"); |
| 78 | 84 | ||
| 79 | if($free_percent_on_mp1 == $avg_free_percent || $free_percent_on_mp2 == $avg_free_percent) { | 85 | if($free_percent_on_mp1 == $avg_free_percent || $free_percent_on_mp2 == $avg_free_percent) { |
| 80 | die "One mountpoints has average space free - cannot do rest of test"; | 86 | die "One mountpoints has average space free - cannot do rest of test"; |
| 81 | } | 87 | } |
| 82 | 88 | ||
| 83 | my $free_inodes_on_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2]->{'perfdata'}->[0]->{'value'}->{'value'}; | 89 | # TODO enable inode checks later when there is enough nerves for Perl |
| 84 | my $total_inodes_on_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2]->{'perfdata'}->[0]->{'max'}->{'value'}; | 90 | # my $have_inodes = 1; |
| 85 | my $free_inode_percentage_on_mp1 = $free_inodes_on_mp1 / ($total_inodes_on_mp1 / 100); | 91 | # my $more_inode_free; |
| 86 | 92 | # my $less_inode_free; | |
| 87 | my $free_inodes_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[2]->{'perfdata'}->[0]->{'value'}->{'value'}; | 93 | # my $avg_inode_free_percentage; |
| 88 | my $total_inodes_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[2]->{'perfdata'}->[0]->{'max'}->{'value'}; | 94 | |
| 89 | my $free_inode_percentage_on_mp2 = $free_inodes_on_mp2 / ($total_inodes_on_mp2 / 100); | 95 | # # Do we have an inode reading? might not be if the filesystem does not have a fixed number of inodes |
| 90 | 96 | # if ($result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2] && $result->{'mp_test_result'}->{'checks'}->[0]) { | |
| 91 | my $avg_inode_free_percentage = ceil(($free_inode_percentage_on_mp1 + $free_inode_percentage_on_mp2)/2); | 97 | # my $used_inodes_on_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2]->{'perfdata'}->[0]->{'value'}->{'value'}; |
| 92 | my ($more_inode_free, $less_inode_free); | 98 | # my $total_inodes_on_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2]->{'perfdata'}->[0]->{'max'}->{'value'}; |
| 93 | if ($free_inode_percentage_on_mp1 > $free_inode_percentage_on_mp2) { | 99 | |
| 94 | $more_inode_free = $mountpoint_valid; | 100 | # my $free_inodes_on_mp1 = $total_inodes_on_mp1 - $used_inodes_on_mp1; |
| 95 | $less_inode_free = $mountpoint2_valid; | 101 | # my $free_inode_percentage_on_mp1 = $free_inodes_on_mp1 / ($total_inodes_on_mp1 / 100); |
| 96 | } elsif ($free_inode_percentage_on_mp1 < $free_inode_percentage_on_mp2) { | 102 | |
| 97 | $more_inode_free = $mountpoint2_valid; | 103 | # # print("free inodes on mp1: " . $free_inodes_on_mp1 . "\n"); |
| 98 | $less_inode_free = $mountpoint_valid; | 104 | # # print("total inodes on mp1: " . $total_inodes_on_mp1 . "\n"); |
| 99 | } else { | 105 | # # print("free inode percentage on mp1: " . $free_inode_percentage_on_mp1 . "\n"); |
| 100 | die "Two mountpoints with same inodes free - cannot do rest of test"; | 106 | |
| 101 | } | 107 | # my $used_inodes_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[2]->{'perfdata'}->[0]->{'value'}->{'value'}; |
| 102 | if($free_inode_percentage_on_mp1 == $avg_inode_free_percentage || $free_inode_percentage_on_mp2 == $avg_inode_free_percentage) { | 108 | # my $total_inodes_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[2]->{'perfdata'}->[0]->{'max'}->{'value'}; |
| 103 | die "One mountpoints has average inodes free - cannot do rest of test"; | 109 | # my $free_inodes_on_mp2 = $total_inodes_on_mp2 - $used_inodes_on_mp2; |
| 104 | } | 110 | # my $free_inode_percentage_on_mp2 = $free_inodes_on_mp2 / ($total_inodes_on_mp2 / 100); |
| 111 | |||
| 112 | # # print("free inodes on mp2: " . $free_inodes_on_mp2 . "\n"); | ||
| 113 | # # print("total inodes on mp2: " . $total_inodes_on_mp2 . "\n"); | ||
| 114 | # # print("free inode percentage on mp2: " . $free_inode_percentage_on_mp2 . "\n"); | ||
| 115 | |||
| 116 | # my $avg_inode_free_percentage = ceil(($free_inode_percentage_on_mp1 + $free_inode_percentage_on_mp2)/2); | ||
| 117 | # if ($free_inode_percentage_on_mp1 > $free_inode_percentage_on_mp2) { | ||
| 118 | # $more_inode_free = $mountpoint_valid; | ||
| 119 | # $less_inode_free = $mountpoint2_valid; | ||
| 120 | # } elsif ($free_inode_percentage_on_mp1 < $free_inode_percentage_on_mp2) { | ||
| 121 | # $more_inode_free = $mountpoint2_valid; | ||
| 122 | # $less_inode_free = $mountpoint_valid; | ||
| 123 | # } else { | ||
| 124 | # die "Two mountpoints with same inodes free - cannot do rest of test"; | ||
| 125 | # } | ||
| 126 | # if($free_inode_percentage_on_mp1 == $avg_inode_free_percentage || $free_inode_percentage_on_mp2 == $avg_inode_free_percentage) { | ||
| 127 | # die "One mountpoints has average inodes free - cannot do rest of test"; | ||
| 128 | # } | ||
| 129 | # } else { | ||
| 130 | # $have_inodes = 0; | ||
| 131 | # } | ||
| 105 | 132 | ||
| 106 | # Verify performance data | 133 | # Verify performance data |
| 107 | # First check absolute thresholds... | 134 | # First check absolute thresholds... |
| @@ -133,8 +160,8 @@ my $warn_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[ | |||
| 133 | my $crit_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'crit'}->{'end'}->{'value'}; | 160 | my $crit_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'crit'}->{'end'}->{'value'}; |
| 134 | my $total_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | 161 | my $total_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'max'}->{'value'}; |
| 135 | 162 | ||
| 136 | print("warn_percth_data: " . $warn_percth_data . "\n"); | 163 | # print("warn_percth_data: " . $warn_percth_data . "\n"); |
| 137 | print("crit_percth_data: " . $crit_percth_data . "\n"); | 164 | # print("crit_percth_data: " . $crit_percth_data . "\n"); |
| 138 | 165 | ||
| 139 | is (int($warn_percth_data), int((20/100)*$total_percth_data), "Wrong warning in perf data using percent thresholds. Got " . $warn_percth_data . " with total " . $total_percth_data); | 166 | is (int($warn_percth_data), int((20/100)*$total_percth_data), "Wrong warning in perf data using percent thresholds. Got " . $warn_percth_data . " with total " . $total_percth_data); |
| 140 | is (int($crit_percth_data), int((10/100)*$total_percth_data), "Wrong critical in perf data using percent thresholds. Got " . $crit_percth_data . " with total " . $total_percth_data); | 167 | is (int($crit_percth_data), int((10/100)*$total_percth_data), "Wrong critical in perf data using percent thresholds. Got " . $crit_percth_data . " with total " . $total_percth_data); |
| @@ -150,6 +177,18 @@ cmp_ok( $result->return_code, "==", 0, "with JSON test format result should alwa | |||
| 150 | my @perfdata2; | 177 | my @perfdata2; |
| 151 | @perfdata2[0] = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]; | 178 | @perfdata2[0] = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]; |
| 152 | @perfdata2[1] = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]; | 179 | @perfdata2[1] = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]; |
| 180 | |||
| 181 | my $free_on_mp1 = ($perfdata2[1]->{'max'}->{'value'} - $perfdata2[1]->{'value'}->{'value'}); | ||
| 182 | my $free_on_mp2 = ($perfdata2[0]->{'max'}->{'value'} - $perfdata2[0]->{'value'}->{'value'}); | ||
| 183 | # print "free on mp1: " . $free_on_mp1 . "\n"; | ||
| 184 | # print "free on mp2: " . $free_on_mp2 . "\n"; | ||
| 185 | # Either one of those should not be zero | ||
| 186 | die "Cannot parse output: $_" unless (defined($free_on_mp1) && defined($free_on_mp2)); | ||
| 187 | |||
| 188 | my $free_on_all = $free_on_mp1 + $free_on_mp2; | ||
| 189 | |||
| 190 | # print "free on all: " . $free_on_all . "\n"; | ||
| 191 | |||
| 153 | # Decrease precision of numbers since the the fs might be modified between the two runs | 192 | # Decrease precision of numbers since the the fs might be modified between the two runs |
| 154 | $perfdata2[0]->{'value'}->{'value'} = int($perfdata2[0]->{'value'}->{'value'} / 1000000); | 193 | $perfdata2[0]->{'value'}->{'value'} = int($perfdata2[0]->{'value'}->{'value'} / 1000000); |
| 155 | $perfdata2[1]->{'value'}->{'value'} = int($perfdata2[1]->{'value'}->{'value'} / 1000000); | 194 | $perfdata2[1]->{'value'}->{'value'} = int($perfdata2[1]->{'value'}->{'value'} / 1000000); |
| @@ -164,12 +203,6 @@ $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -p $more_free -p $less_free $ | |||
| 164 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); | 203 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
| 165 | like($result->{'mp_test_result'}->{'state'}, "/OK/", "At least 1 MB available on $more_free and $less_free"); | 204 | like($result->{'mp_test_result'}->{'state'}, "/OK/", "At least 1 MB available on $more_free and $less_free"); |
| 166 | 205 | ||
| 167 | my $free_mb_on_mp1 =$result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'} / (1024 * 1024); | ||
| 168 | my $free_mb_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'}/ (1024 * 1024); | ||
| 169 | die "Cannot parse output: $_" unless ($free_mb_on_mp1 && $free_mb_on_mp2); | ||
| 170 | |||
| 171 | my $free_mb_on_all = $free_mb_on_mp1 + $free_mb_on_mp2; | ||
| 172 | |||
| 173 | 206 | ||
| 174 | $result = NPTest->testCmd( "./check_disk -e -w 1 -c 1 -p $more_free $output_format" ); | 207 | $result = NPTest->testCmd( "./check_disk -e -w 1 -c 1 -p $more_free $output_format" ); |
| 175 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); | 208 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
| @@ -237,55 +270,45 @@ cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make | |||
| 237 | 270 | ||
| 238 | 271 | ||
| 239 | # Basic inode checks for sizes | 272 | # Basic inode checks for sizes |
| 273 | SKIP: { | ||
| 274 | skip "No inode data", 14 if 1 eq 1; | ||
| 240 | 275 | ||
| 241 | $result = NPTest->testCmd( "./check_disk --icritical 1% --iwarning 1% -p $more_inode_free" ); | 276 | # $result = NPTest->testCmd( "./check_disk --icritical 1% --iwarning 1% -p $more_inode_free" ); |
| 242 | is( $result->return_code, 0, "At least 1% free on inodes for both mountpoints"); | 277 | # is( $result->return_code, 0, "At least 1% free on inodes for both mountpoints"); |
| 243 | |||
| 244 | $result = NPTest->testCmd( "./check_disk -K 100% -W 100% -p $less_inode_free" ); | ||
| 245 | is( $result->return_code, 2, "Critical requesting 100% free inodes for both mountpoints"); | ||
| 246 | |||
| 247 | $result = NPTest->testCmd( "./check_disk --iwarning 1% --icritical 1% -p $more_inode_free -K 100% -W 100% -p $less_inode_free" ); | ||
| 248 | is( $result->return_code, 2, "Get critical on less_inode_free mountpoint $less_inode_free"); | ||
| 249 | |||
| 250 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $less_inode_free" ); | ||
| 251 | is( $result->return_code, 1, "Get warning on less_inode_free, when checking average"); | ||
| 252 | |||
| 253 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free "); | ||
| 254 | is( $result->return_code, 0, "Get ok on more_inode_free when checking average"); | ||
| 255 | 278 | ||
| 256 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $less_inode_free -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free" ); | 279 | # $result = NPTest->testCmd( "./check_disk -K 100% -W 100% -p $less_inode_free" ); |
| 257 | is ($result->return_code, 1, "Combine above two tests, get warning"); | 280 | # is( $result->return_code, 2, "Critical requesting 100% free inodes for both mountpoints"); |
| 258 | $all_disks = $result->output; | ||
| 259 | 281 | ||
| 260 | $result = NPTest->testCmd( "./check_disk -e -W $avg_inode_free_percentage% -K 0% -p $less_inode_free -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free" ); | 282 | # $result = NPTest->testCmd( "./check_disk --iwarning 1% --icritical 1% -p $more_inode_free -K 100% -W 100% -p $less_inode_free" ); |
| 261 | isnt( $result->output, $all_disks, "-e gives different output"); | 283 | # is( $result->return_code, 2, "Get critical on less_inode_free mountpoint $less_inode_free"); |
| 262 | like( $result->output, qr/$less_inode_free/, "Found problem $less_inode_free"); | ||
| 263 | unlike( $result->only_output, qr/$more_inode_free\s/, "Has ignored $more_inode_free as not a problem"); | ||
| 264 | like( $result->perf_output, qr/$more_inode_free/, "But $more_inode_free is still in perf data"); | ||
| 265 | |||
| 266 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $more_inode_free" ); | ||
| 267 | is( $result->return_code, 0, "Get ok on more_inode_free mountpoint, checking average"); | ||
| 268 | |||
| 269 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free" ); | ||
| 270 | is( $result->return_code, 2, "Get critical on less_inode_free, checking average"); | ||
| 271 | 284 | ||
| 272 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $more_inode_free -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free" ); | 285 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $less_inode_free" ); |
| 273 | is( $result->return_code, 2, "Combining above two tests, get critical"); | 286 | # is( $result->return_code, 1, "Get warning on less_inode_free, when checking average"); |
| 274 | 287 | ||
| 275 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free -W $avg_inode_free_percentage% -K 0% -p $more_inode_free" ); | 288 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free "); |
| 276 | cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make a difference"); | 289 | # is( $result->return_code, 0, "Get ok on more_inode_free when checking average"); |
| 277 | 290 | ||
| 291 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $less_inode_free -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free" ); | ||
| 292 | # is ($result->return_code, 1, "Combine above two tests, get warning"); | ||
| 293 | # $all_disks = $result->output; | ||
| 278 | 294 | ||
| 295 | # $result = NPTest->testCmd( "./check_disk -e -W $avg_inode_free_percentage% -K 0% -p $less_inode_free -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free" ); | ||
| 296 | # isnt( $result->output, $all_disks, "-e gives different output"); | ||
| 297 | # like( $result->output, qr/$less_inode_free/, "Found problem $less_inode_free"); | ||
| 298 | # unlike( $result->only_output, qr/$more_inode_free\s/, "Has ignored $more_inode_free as not a problem"); | ||
| 299 | # like( $result->perf_output, qr/$more_inode_free/, "But $more_inode_free is still in perf data"); | ||
| 279 | 300 | ||
| 301 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $more_inode_free" ); | ||
| 302 | # is( $result->return_code, 0, "Get ok on more_inode_free mountpoint, checking average"); | ||
| 280 | 303 | ||
| 304 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free" ); | ||
| 305 | # is( $result->return_code, 2, "Get critical on less_inode_free, checking average"); | ||
| 281 | 306 | ||
| 307 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $more_inode_free -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free" ); | ||
| 308 | # is( $result->return_code, 2, "Combining above two tests, get critical"); | ||
| 282 | 309 | ||
| 283 | TODO: { | 310 | # $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free -W $avg_inode_free_percentage% -K 0% -p $more_inode_free" ); |
| 284 | local $TODO = "Invalid percent figures"; | 311 | # cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make a difference"); |
| 285 | $result = NPTest->testCmd( | ||
| 286 | "./check_disk -w 10% -c 15% -p $mountpoint_valid" | ||
| 287 | ); | ||
| 288 | cmp_ok( $result->return_code, '==', 3, "Invalid command line options" ); | ||
| 289 | } | 312 | } |
| 290 | 313 | ||
| 291 | $result = NPTest->testCmd( | 314 | $result = NPTest->testCmd( |
| @@ -360,20 +383,23 @@ $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -C -w 0% -c 0% -p $mountpoi | |||
| 360 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); | 383 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
| 361 | cmp_ok(scalar $result->{'mp_test_result'}->{'checks'}, '>', 1, "-C invokes matchall logic again"); | 384 | cmp_ok(scalar $result->{'mp_test_result'}->{'checks'}, '>', 1, "-C invokes matchall logic again"); |
| 362 | 385 | ||
| 386 | my $value_below = ($free_on_all - (10**6)) % (10**5) * (10**5); | ||
| 387 | my $value_above = $free_on_all + (10**6) % (10**5) * (10**5); | ||
| 388 | |||
| 363 | # grouping: exit crit if the sum of free megs on mp1+mp2 is less than warn/crit | 389 | # grouping: exit crit if the sum of free megs on mp1+mp2 is less than warn/crit |
| 364 | $result = NPTest->testCmd( "./check_disk -w ". ($free_mb_on_all + 1) ." -c ". ($free_mb_on_all + 1) ." -g group -p $mountpoint_valid -p $mountpoint2_valid" ); | 390 | $result = NPTest->testCmd( "./check_disk -u Bytes -w ". $value_above ." -c ". $value_above ." -g group -p $mountpoint_valid -p $mountpoint2_valid" ); |
| 365 | cmp_ok( $result->return_code, '==', 2, "grouping: exit crit if the sum of free megs on mp1+mp2 is less than warn/crit\nInstead received: " . $result->output); | 391 | cmp_ok( $result->return_code, '==', 2, "grouping: exit crit if the sum of free megs on mp1+mp2 is less than warn/crit"); |
| 366 | 392 | ||
| 367 | # grouping: exit warning if the sum of free megs on mp1+mp2 is between -w and -c | 393 | # grouping: exit warning if the sum of free megs on mp1+mp2 is between -w and -c |
| 368 | $result = NPTest->testCmd( "./check_disk -w ". ($free_mb_on_all + 1) ." -c ". ($free_mb_on_all - 1) ." -g group -p $mountpoint_valid -p $mountpoint2_valid" ); | 394 | $result = NPTest->testCmd( "./check_disk -u Bytes -w ". $value_above ." -c ". $value_below ." -g group -p $mountpoint_valid -p $mountpoint2_valid" ); |
| 369 | cmp_ok( $result->return_code, '==', 1, "grouping: exit warning if the sum of free megs on mp1+mp2 is between -w and -c "); | 395 | cmp_ok( $result->return_code, '==', 1, "grouping: exit warning if the sum of free megs on mp1+mp2 is between -w and -c "); |
| 370 | 396 | ||
| 371 | # grouping: exit ok if the sum of free megs on mp1+mp2 is more than warn/crit | 397 | # grouping: exit ok if the sum of free megs on mp1+mp2 is more than warn/crit |
| 372 | $result = NPTest->testCmd( "./check_disk -w ". ($free_mb_on_all - 1) ." -c ". ($free_mb_on_all - 1) ." -g group -p $mountpoint_valid -p $mountpoint2_valid" ); | 398 | $result = NPTest->testCmd( "./check_disk -u Bytes -w ". $value_below ." -c ". $value_below ." -g group -p $mountpoint_valid -p $mountpoint2_valid" ); |
| 373 | cmp_ok( $result->return_code, '==', 0, "grouping: exit ok if the sum of free megs on mp1+mp2 is more than warn/crit"); | 399 | cmp_ok( $result->return_code, '==', 0, "grouping: exit ok if the sum of free megs on mp1+mp2 is more than warn/crit"); |
| 374 | 400 | ||
| 375 | # grouping: exit unknown if group name is given after -p | 401 | # grouping: exit unknown if group name is given after -p |
| 376 | $result = NPTest->testCmd( "./check_disk -w ". ($free_mb_on_all - 1) ." -c ". ($free_mb_on_all - 1) ." -p $mountpoint_valid -g group -p $mountpoint2_valid" ); | 402 | $result = NPTest->testCmd( "./check_disk -u Bytes -w ". $value_below ." -c ". $value_below ." -p $mountpoint_valid -g group -p $mountpoint2_valid" ); |
| 377 | cmp_ok( $result->return_code, '==', 3, "Invalid options: -p must come after groupname"); | 403 | cmp_ok( $result->return_code, '==', 3, "Invalid options: -p must come after groupname"); |
| 378 | 404 | ||
| 379 | # regex: exit unknown if given regex is not compilable | 405 | # regex: exit unknown if given regex is not compilable |
