From d9a999de7b182a6dd257f8b6d83067070f51e4c3 Mon Sep 17 00:00:00 2001 From: RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> Date: Tue, 31 Oct 2023 01:50:46 +0100 Subject: Enhance tests to check wheter the option validation works diff --git a/plugins/t/check_users.t b/plugins/t/check_users.t index 9ebc2fc..21c3e53 100644 --- a/plugins/t/check_users.t +++ b/plugins/t/check_users.t @@ -13,10 +13,11 @@ use Test; use NPTest; use vars qw($tests); -BEGIN {$tests = 8; plan tests => $tests} +BEGIN {$tests = 12; plan tests => $tests} my $successOutput = '/^USERS OK - [0-9]+ users currently logged in/'; my $failureOutput = '/^USERS CRITICAL - [0-9]+ users currently logged in/'; +my $wrongOptionOutput = '/Usage:/'; my $t; @@ -24,6 +25,8 @@ $t += checkCmd( "./check_users 1000 1000", 0, $successOutput ); $t += checkCmd( "./check_users 0 0", 2, $failureOutput ); $t += checkCmd( "./check_users -w 0:1000 -c 0:1000", 0, $successOutput ); $t += checkCmd( "./check_users -w 0:0 -c 0:0", 2, $failureOutput ); +$t += checkCmd( "./check_users -w 0:1000", 3, $wrongOptionOutput); +$t += checkCmd( "./check_users", 3, $wrongOptionOutput); exit(0) if defined($Test::Harness::VERSION); exit($tests - $t); -- cgit v0.10-9-g596f