summaryrefslogtreecommitdiffstats
path: root/lib/tests/test_opts3.t
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tests/test_opts3.t')
-rwxr-xr-xlib/tests/test_opts3.t23
1 files changed, 14 insertions, 9 deletions
diff --git a/lib/tests/test_opts3.t b/lib/tests/test_opts3.t
index 47ec26b..35b4468 100755
--- a/lib/tests/test_opts3.t
+++ b/lib/tests/test_opts3.t
@@ -8,15 +8,19 @@ if (! -e "./test_opts3") {
8} 8}
9 9
10# array of argument arrays 10# array of argument arrays
11# - first value is the NAGIOS_CONFIG_PATH 11# - First value is the expected return code
12# - 2nd value is the plugin name 12# - 2nd value is the NAGIOS_CONFIG_PATH
13# - 3rc and up are arguments 13# TODO: looks like we look in default path after looking trough this variable - shall we?
14# - 3rd value is the plugin name
15# - 4th and up are arguments
14my @TESTS = ( 16my @TESTS = (
15 ['/nonexistent', 'prog_name', 'arg1', '--extra-opts', '--arg3', 'val2'], 17 [3, '/nonexistent', 'prog_name', 'arg1', '--extra-opts', '--arg3', 'val2'],
16 ['.', 'prog_name', 'arg1', '--extra-opts=missing@./config-opts.ini', '--arg3', 'val2'], 18 [3, '.', 'prog_name', 'arg1', '--extra-opts=missing@./config-opts.ini', '--arg3', 'val2'],
17 ['.', 'prog_name', 'arg1', '--extra-opts', 'missing@./config-opts.ini', '--arg3', 'val2'], 19 [3, '', 'prog_name', 'arg1', '--extra-opts', 'missing@./config-opts.ini', '--arg3', 'val2'],
18 ['.', 'check_missing', 'arg1', '--extra-opts=@./config-opts.ini', '--arg3', 'val2'], 20 [3, '.', 'check_missing', 'arg1', '--extra-opts=@./config-opts.ini', '--arg3', 'val2'],
19 ['.', 'check_missing', 'arg1', '--extra-opts', '--arg3', 'val2'], 21 [3, '.', 'check_missing', 'arg1', '--extra-opts', '--arg3', 'val2'],
22 [0, '/tmp:/var:/nonexistent:.', 'check_tcp', 'arg1', '--extra-opts', '--arg3', 'val2'],
23 [0, '/usr/local/nagios/etc:.:/etc', 'check_missing', 'arg1', '--extra-opts=check_tcp', '--arg3', 'val2'],
20); 24);
21 25
22plan tests => scalar(@TESTS); 26plan tests => scalar(@TESTS);
@@ -24,8 +28,9 @@ plan tests => scalar(@TESTS);
24my $count=1; 28my $count=1;
25 29
26foreach my $args (@TESTS) { 30foreach my $args (@TESTS) {
31 my $rc = shift(@$args);
27 $ENV{"NAGIOS_CONFIG_PATH"} = shift(@$args); 32 $ENV{"NAGIOS_CONFIG_PATH"} = shift(@$args);
28 system {'./test_opts3'} @$args; 33 system {'./test_opts3'} @$args;
29 cmp_ok($?>>8, '==', 3, "Extra-opts die " . $count++); 34 cmp_ok($?>>8, '==', $rc, "Extra-opts die " . $count++);
30} 35}
31 36