diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-30 22:38:12 +0200 |
---|---|---|
committer | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2025-03-30 22:38:12 +0200 |
commit | 76971dea753d52d3e177aa84605d9b239a3a793e (patch) | |
tree | 1922bdcdc18e32e5cf43d7e0f0acbb93efeaeb16 | |
parent | 908aed4e6f9072e601a189d4ceff3152bdecc49d (diff) | |
download | monitoring-plugins-76971dea753d52d3e177aa84605d9b239a3a793e.tar.gz |
Address check_disk changes in tests
-rw-r--r-- | plugins/t/check_disk.t | 205 | ||||
-rw-r--r-- | plugins/tests/test_check_disk.c | 67 |
2 files changed, 154 insertions, 118 deletions
diff --git a/plugins/t/check_disk.t b/plugins/t/check_disk.t index 9eb77ce4..16daee9a 100644 --- a/plugins/t/check_disk.t +++ b/plugins/t/check_disk.t | |||
@@ -10,6 +10,7 @@ use strict; | |||
10 | use Test::More; | 10 | use Test::More; |
11 | use NPTest; | 11 | use NPTest; |
12 | use POSIX qw(ceil floor); | 12 | use POSIX qw(ceil floor); |
13 | use Data::Dumper; | ||
13 | 14 | ||
14 | my $successOutput = '/^DISK OK/'; | 15 | my $successOutput = '/^DISK OK/'; |
15 | my $failureOutput = '/^DISK CRITICAL/'; | 16 | my $failureOutput = '/^DISK CRITICAL/'; |
@@ -20,117 +21,148 @@ my $result; | |||
20 | my $mountpoint_valid = getTestParameter( "NP_MOUNTPOINT_VALID", "Path to valid mountpoint", "/"); | 21 | my $mountpoint_valid = getTestParameter( "NP_MOUNTPOINT_VALID", "Path to valid mountpoint", "/"); |
21 | my $mountpoint2_valid = getTestParameter( "NP_MOUNTPOINT2_VALID", "Path to another valid mountpoint. Must be different from 1st one", "/var"); | 22 | my $mountpoint2_valid = getTestParameter( "NP_MOUNTPOINT2_VALID", "Path to another valid mountpoint. Must be different from 1st one", "/var"); |
22 | 23 | ||
24 | my $output_format = "--output-format mp-test-json"; | ||
25 | |||
23 | if ($mountpoint_valid eq "" or $mountpoint2_valid eq "") { | 26 | if ($mountpoint_valid eq "" or $mountpoint2_valid eq "") { |
24 | plan skip_all => "Need 2 mountpoints to test"; | 27 | plan skip_all => "Need 2 mountpoints to test"; |
25 | } else { | 28 | } else { |
26 | plan tests => 94; | 29 | plan tests => 96; |
27 | } | 30 | } |
28 | 31 | ||
29 | $result = NPTest->testCmd( | 32 | $result = NPTest->testCmd( |
30 | "./check_disk -w 1% -c 1% -p $mountpoint_valid -w 1% -c 1% -p $mountpoint2_valid" | 33 | "./check_disk -w 1% -c 1% -p $mountpoint_valid -w 1% -c 1% -P -p $mountpoint2_valid $output_format" |
31 | ); | 34 | ); |
32 | cmp_ok( $result->return_code, "==", 0, "Checking two mountpoints (must have at least 1% free in space and inodes)"); | 35 | cmp_ok( $result->return_code, "==", 0, "Checking two mountpoints (must have at least 1% free in space and inodes)"); |
33 | my $c = 0; | ||
34 | $_ = $result->output; | ||
35 | $c++ while /\(/g; # counts number of "(" - should be two | ||
36 | cmp_ok( $c, '==', 2, "Got two mountpoints in output"); | ||
37 | 36 | ||
37 | 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"); | ||
39 | like($result->{'mp_test_result'}->{'checks'}->[1]->{'state'}, "/OK/", "Second sub result is OK"); | ||
40 | |||
41 | my $absolut_space_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | ||
42 | # print("absolut space on mp1: ". $absolut_space_mp1 . "\n"); | ||
43 | |||
44 | my $free_percent_on_mp1 = ($result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'} / ($absolut_space_mp1/100)); | ||
45 | print("free percent on mp1: ". $free_percent_on_mp1 . "\n"); | ||
46 | |||
47 | my $absolut_space_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | ||
48 | # print("absolut space on mp2: ". $absolut_space_mp2 . "\n"); | ||
38 | 49 | ||
39 | # Get perf data | 50 | my $free_percent_on_mp2 = ($result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'}/ ($absolut_space_mp2/100)); |
40 | # Should use Monitoring::Plugin | 51 | print("free percent on mp2: ". $free_percent_on_mp2 . "\n"); |
41 | my @perf_data = sort(split(/ /, $result->perf_output)); | ||
42 | 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]; | ||
43 | 56 | ||
44 | # Calculate avg_free free on mountpoint1 and mountpoint2 | 57 | # Calculate avg_free free on mountpoint1 and mountpoint2 |
45 | # because if you check in the middle, you should get different errors | 58 | # because if you check in the middle, you should get different errors |
46 | $_ = $result->output; | 59 | my $avg_free_percent = ceil(($free_percent_on_mp1+$free_percent_on_mp2)/2); |
47 | my ($free_on_mp1, $free_on_mp2) = (m/\((\d+\.\d+)%.*\((\d+\.\d+)%/); | 60 | # print("avg_free: " . $avg_free_percent . "\n"); |
48 | die "Cannot parse output: $_" unless ($free_on_mp1 && $free_on_mp2); | ||
49 | my $avg_free = ceil(($free_on_mp1+$free_on_mp2)/2); | ||
50 | my ($more_free, $less_free); | 61 | my ($more_free, $less_free); |
51 | if ($free_on_mp1 > $free_on_mp2) { | 62 | if ($free_percent_on_mp1 > $free_percent_on_mp2) { |
52 | $more_free = $mountpoint_valid; | 63 | $more_free = $mountpoint_valid; |
53 | $less_free = $mountpoint2_valid; | 64 | $less_free = $mountpoint2_valid; |
54 | } elsif ($free_on_mp1 < $free_on_mp2) { | 65 | } elsif ($free_percent_on_mp1 < $free_percent_on_mp2) { |
55 | $more_free = $mountpoint2_valid; | 66 | $more_free = $mountpoint2_valid; |
56 | $less_free = $mountpoint_valid; | 67 | $less_free = $mountpoint_valid; |
57 | } else { | 68 | } else { |
58 | die "Two mountpoints are the same - cannot do rest of test"; | 69 | die "Two mountpoints are the same - cannot do rest of test"; |
59 | } | 70 | } |
60 | if($free_on_mp1 == $avg_free || $free_on_mp2 == $avg_free) { | 71 | |
72 | print("less free: " . $less_free . "\n"); | ||
73 | print("more free: " . $more_free . "\n"); | ||
74 | |||
75 | if($free_percent_on_mp1 == $avg_free_percent || $free_percent_on_mp2 == $avg_free_percent) { | ||
61 | die "One mountpoints has average space free - cannot do rest of test"; | 76 | die "One mountpoints has average space free - cannot do rest of test"; |
62 | } | 77 | } |
63 | 78 | ||
79 | my $free_inodes_on_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2]->{'perfdata'}->[0]->{'value'}->{'value'}; | ||
80 | my $total_inodes_on_mp1 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}[2]->{'perfdata'}->[0]->{'max'}->{'value'}; | ||
81 | my $free_inode_percentage_on_mp1 = $free_inodes_on_mp1 / ($total_inodes_on_mp1 / 100); | ||
64 | 82 | ||
65 | # Do same for inodes | 83 | my $free_inodes_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[2]->{'perfdata'}->[0]->{'value'}->{'value'}; |
66 | $_ = $result->output; | 84 | my $total_inodes_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[2]->{'perfdata'}->[0]->{'max'}->{'value'}; |
67 | my ($free_inode_on_mp1, $free_inode_on_mp2) = (m/inode=(\d+)%.*inode=(\d+)%/); | 85 | my $free_inode_percentage_on_mp2 = $free_inodes_on_mp2 / ($total_inodes_on_mp2 / 100); |
68 | die "Cannot parse free inodes: $_" unless ($free_inode_on_mp1 && $free_inode_on_mp2); | 86 | |
69 | my $avg_inode_free = ceil(($free_inode_on_mp1 + $free_inode_on_mp2)/2); | 87 | my $avg_inode_free_percentage = ceil(($free_inode_percentage_on_mp1 + $free_inode_percentage_on_mp2)/2); |
70 | my ($more_inode_free, $less_inode_free); | 88 | my ($more_inode_free, $less_inode_free); |
71 | if ($free_inode_on_mp1 > $free_inode_on_mp2) { | 89 | if ($free_inode_percentage_on_mp1 > $free_inode_percentage_on_mp2) { |
72 | $more_inode_free = $mountpoint_valid; | 90 | $more_inode_free = $mountpoint_valid; |
73 | $less_inode_free = $mountpoint2_valid; | 91 | $less_inode_free = $mountpoint2_valid; |
74 | } elsif ($free_inode_on_mp1 < $free_inode_on_mp2) { | 92 | } elsif ($free_inode_percentage_on_mp1 < $free_inode_percentage_on_mp2) { |
75 | $more_inode_free = $mountpoint2_valid; | 93 | $more_inode_free = $mountpoint2_valid; |
76 | $less_inode_free = $mountpoint_valid; | 94 | $less_inode_free = $mountpoint_valid; |
77 | } else { | 95 | } else { |
78 | die "Two mountpoints with same inodes free - cannot do rest of test"; | 96 | die "Two mountpoints with same inodes free - cannot do rest of test"; |
79 | } | 97 | } |
80 | if($free_inode_on_mp1 == $avg_inode_free || $free_inode_on_mp2 == $avg_inode_free) { | 98 | if($free_inode_percentage_on_mp1 == $avg_inode_free_percentage || $free_inode_percentage_on_mp2 == $avg_inode_free_percentage) { |
81 | die "One mountpoints has average inodes free - cannot do rest of test"; | 99 | die "One mountpoints has average inodes free - cannot do rest of test"; |
82 | } | 100 | } |
83 | 101 | ||
84 | # Verify performance data | 102 | # Verify performance data |
85 | # First check absolute thresholds... | 103 | # First check absolute thresholds... |
86 | $result = NPTest->testCmd( | 104 | $result = NPTest->testCmd( |
87 | "./check_disk -w 20 -c 10 -p $mountpoint_valid" | 105 | "./check_disk -w 20 -c 10 -p $mountpoint_valid $output_format" |
88 | ); | 106 | ); |
89 | $_ = $result->perf_output; | 107 | |
90 | my ($warn_absth_data, $crit_absth_data, $total_absth_data) = (m/=.[^;]*;(\d+);(\d+);\d+;(\d+)/); | 108 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
91 | # default unit is MiB, but perfdata is always bytes | 109 | |
92 | is ($warn_absth_data, $total_absth_data - (20 * (2 ** 20)), "Wrong warning in perf data using absolute thresholds"); | 110 | my $warn_absth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'warn'}->{'end'}->{'value'}; |
93 | is ($crit_absth_data, $total_absth_data - (10 * (2 ** 20)), "Wrong critical in perf data using absolute thresholds"); | 111 | my $crit_absth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'crit'}->{'end'}->{'value'}; |
112 | my $total_absth_data= $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | ||
113 | |||
114 | # print("warn: " .$warn_absth_data . "\n"); | ||
115 | # print("crit: " .$crit_absth_data . "\n"); | ||
116 | # print("total: " .$total_absth_data . "\n"); | ||
117 | |||
118 | is ($warn_absth_data <=> (20 * (2 ** 20)), 0, "Wrong warning in perf data using absolute thresholds"); | ||
119 | is ($crit_absth_data <=> (10 * (2 ** 20)), 0, "Wrong critical in perf data using absolute thresholds"); | ||
94 | 120 | ||
95 | # Then check percent thresholds. | 121 | # Then check percent thresholds. |
96 | $result = NPTest->testCmd( | 122 | $result = NPTest->testCmd( |
97 | "./check_disk -w 20% -c 10% -p $mountpoint_valid" | 123 | "./check_disk -w 20% -c 10% -p $mountpoint_valid $output_format" |
98 | ); | 124 | ); |
99 | $_ = $result->perf_output; | 125 | |
100 | my ($warn_percth_data, $crit_percth_data, $total_percth_data) = (m/=.[^;]*;(\d+);(\d+);\d+;(\d+)/); | 126 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
101 | is ($warn_percth_data, int((1-20/100)*$total_percth_data), "Wrong warning in perf data using percent thresholds"); | 127 | |
102 | is ($crit_percth_data, int((1-10/100)*$total_percth_data), "Wrong critical in perf data using percent thresholds"); | 128 | my $warn_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'warn'}->{'end'}->{'value'}; |
129 | my $crit_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'crit'}->{'end'}->{'value'}; | ||
130 | my $total_percth_data = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}[0]->{'perfdata'}->[0]->{'max'}->{'value'}; | ||
131 | |||
132 | is ($warn_percth_data <=> int((20/100)*$total_percth_data), 0, "Wrong warning in perf data using percent thresholds"); | ||
133 | is ($crit_percth_data <=> int((10/100)*$total_percth_data), 0, "Wrong critical in perf data using percent thresholds"); | ||
103 | 134 | ||
104 | 135 | ||
105 | # Check when order of mount points are reversed, that perf data remains same | 136 | # Check when order of mount points are reversed, that perf data remains same |
106 | $result = NPTest->testCmd( | 137 | $result = NPTest->testCmd( |
107 | "./check_disk -w 1% -c 1% -p $mountpoint2_valid -w 1% -c 1% -p $mountpoint_valid" | 138 | "./check_disk -w 1% -c 1% -p $mountpoint2_valid -w 1% -c 1% -p $mountpoint_valid $output_format" |
108 | ); | 139 | ); |
109 | @_ = sort(split(/ /, $result->perf_output)); | 140 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
110 | is_deeply( \@perf_data, \@_, "perf data for both filesystems same when reversed"); | ||
111 | 141 | ||
142 | # write comparison set for perfdata here, but in reversed order, maybe there is a smarter way | ||
143 | my @perfdata2; | ||
144 | @perfdata2[1] = $result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]; | ||
145 | @perfdata2[0] = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]; | ||
146 | is_deeply(\@perfdata, \@perfdata2, "perf data for both filesystems same when reversed"); | ||
112 | 147 | ||
113 | # Basic filesystem checks for sizes | 148 | # Basic filesystem checks for sizes |
114 | $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -p $more_free" ); | 149 | $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -p $more_free $output_format"); |
115 | cmp_ok( $result->return_code, '==', 0, "At least 1 MB available on $more_free"); | 150 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
116 | like ( $result->output, $successOutput, "OK output" ); | 151 | like($result->{'mp_test_result'}->{'state'}, "/OK/", "At least 1 MB available on $more_free"); |
117 | like ( $result->only_output, qr/free space/, "Have free space text"); | ||
118 | like ( $result->only_output, qr/$more_free/, "Have disk name in text"); | ||
119 | 152 | ||
120 | $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -p $more_free -p $less_free" ); | 153 | $result = NPTest->testCmd( "./check_disk -w 1 -c 1 -p $more_free -p $less_free $output_format" ); |
121 | cmp_ok( $result->return_code, '==', 0, "At least 1 MB available on $more_free and $less_free"); | 154 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
155 | like($result->{'mp_test_result'}->{'state'}, "/OK/", "At least 1 MB available on $more_free and $less_free"); | ||
122 | 156 | ||
123 | $_ = $result->output; | 157 | my $free_mb_on_mp1 =$result->{'mp_test_result'}->{'checks'}->[0]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'} / (1024 * 1024); |
124 | 158 | my $free_mb_on_mp2 = $result->{'mp_test_result'}->{'checks'}->[1]->{'checks'}->[0]->{'perfdata'}->[0]->{'value'}->{'value'}/ (1024 * 1024); | |
125 | my ($free_mb_on_mp1, $free_mb_on_mp2) = (m/(\d+)MiB .* (\d+)MiB /g); | ||
126 | die "Cannot parse output: $_" unless ($free_mb_on_mp1 && $free_mb_on_mp2); | 159 | die "Cannot parse output: $_" unless ($free_mb_on_mp1 && $free_mb_on_mp2); |
127 | 160 | ||
128 | my $free_mb_on_all = $free_mb_on_mp1 + $free_mb_on_mp2; | 161 | my $free_mb_on_all = $free_mb_on_mp1 + $free_mb_on_mp2; |
129 | 162 | ||
130 | 163 | ||
131 | 164 | $result = NPTest->testCmd( "./check_disk -e -w 1 -c 1 -p $more_free $output_format" ); | |
132 | $result = NPTest->testCmd( "./check_disk -e -w 1 -c 1 -p $more_free" ); | 165 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
133 | is( $result->only_output, "DISK OK", "No print out of disks with -e for OKs"); | ||
134 | 166 | ||
135 | $result = NPTest->testCmd( "./check_disk 100 100 $more_free" ); | 167 | $result = NPTest->testCmd( "./check_disk 100 100 $more_free" ); |
136 | cmp_ok( $result->return_code, '==', 0, "Old syntax okay" ); | 168 | cmp_ok( $result->return_code, '==', 0, "Old syntax okay" ); |
@@ -139,54 +171,55 @@ $result = NPTest->testCmd( "./check_disk -w 1% -c 1% -p $more_free" ); | |||
139 | cmp_ok( $result->return_code, "==", 0, "At least 1% free" ); | 171 | cmp_ok( $result->return_code, "==", 0, "At least 1% free" ); |
140 | 172 | ||
141 | $result = NPTest->testCmd( | 173 | $result = NPTest->testCmd( |
142 | "./check_disk -w 1% -c 1% -p $more_free -w 100% -c 100% -p $less_free" | 174 | "./check_disk -w 1% -c 1% -p $more_free -w 100% -c 100% -p $less_free $output_format" |
143 | ); | 175 | ); |
144 | cmp_ok( $result->return_code, "==", 2, "Get critical on less_free mountpoint $less_free" ); | 176 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
145 | like( $result->output, $failureOutput, "Right output" ); | 177 | like($result->{'mp_test_result'}->{'state'}, "/CRITICAL/", "Get critical on less_free mountpoint $less_free"); |
146 | 178 | ||
147 | 179 | ||
148 | $result = NPTest->testCmd( | 180 | $result = NPTest->testCmd( |
149 | "./check_disk -w $avg_free% -c 0% -p $less_free" | 181 | "./check_disk -w $avg_free_percent% -c 0% -p $less_free $output_format" |
150 | ); | 182 | ); |
151 | cmp_ok( $result->return_code, '==', 1, "Get warning on less_free mountpoint, when checking avg_free"); | 183 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
184 | like($result->{'mp_test_result'}->{'state'}, "/WARNING/", "Get warning on less_free mountpoint, when checking avg_free"); | ||
152 | 185 | ||
153 | $result = NPTest->testCmd( | 186 | $result = NPTest->testCmd( |
154 | "./check_disk -w $avg_free% -c $avg_free% -p $more_free" | 187 | "./check_disk -w $avg_free_percent% -c $avg_free_percent% -p $more_free" |
155 | ); | 188 | ); |
156 | cmp_ok( $result->return_code, '==', 0, "Get ok on more_free mountpoint, when checking avg_free"); | 189 | cmp_ok( $result->return_code, '==', 0, "Get ok on more_free mountpoint, when checking avg_free"); |
157 | 190 | ||
158 | $result = NPTest->testCmd( | 191 | $result = NPTest->testCmd( |
159 | "./check_disk -w $avg_free% -c 0% -p $less_free -w $avg_free% -c $avg_free% -p $more_free" | 192 | "./check_disk -w $avg_free_percent% -c 0% -p $less_free -w $avg_free_percent% -c $avg_free_percent% -p $more_free" |
160 | ); | 193 | ); |
161 | cmp_ok( $result->return_code, "==", 1, "Combining above two tests, get warning"); | 194 | cmp_ok( $result->return_code, "==", 1, "Combining above two tests, get warning"); |
162 | my $all_disks = $result->output; | 195 | my $all_disks = $result->output; |
163 | 196 | ||
164 | $result = NPTest->testCmd( | 197 | $result = NPTest->testCmd( |
165 | "./check_disk -e -w $avg_free% -c 0% -p $less_free -w $avg_free% -c $avg_free% -p $more_free" | 198 | "./check_disk -e -w $avg_free_percent% -c 0% -p $less_free -w $avg_free_percent% -c $avg_free_percent% -p $more_free" |
166 | ); | 199 | ); |
167 | isnt( $result->output, $all_disks, "-e gives different output"); | 200 | isnt( $result->output, $all_disks, "-e gives different output"); |
168 | 201 | ||
169 | # Need spaces around filesystem name in case less_free and more_free are nested | 202 | # Need spaces around filesystem name in case less_free and more_free are nested |
170 | like( $result->output, qr/ $less_free /, "Found problem $less_free"); | 203 | like( $result->output, qr/ $less_free /, "Found problem $less_free"); |
171 | unlike( $result->only_output, qr/ $more_free /, "Has ignored $more_free as not a problem"); | 204 | unlike( $result->only_output, qr/ $more_free /, "Has ignored $more_free as not a problem"); |
172 | like( $result->perf_output, qr/ $more_free=/, "But $more_free is still in perf data"); | 205 | like( $result->perf_output, qr/'$more_free'=/, "But $more_free is still in perf data"); |
173 | 206 | ||
174 | $result = NPTest->testCmd( | 207 | $result = NPTest->testCmd( |
175 | "./check_disk -w $avg_free% -c 0% -p $more_free" | 208 | "./check_disk -w $avg_free_percent% -c 0% -p $more_free" |
176 | ); | 209 | ); |
177 | cmp_ok( $result->return_code, '==', 0, "Get ok on more_free mountpoint, checking avg_free"); | 210 | cmp_ok( $result->return_code, '==', 0, "Get ok on more_free mountpoint, checking avg_free"); |
178 | 211 | ||
179 | $result = NPTest->testCmd( | 212 | $result = NPTest->testCmd( |
180 | "./check_disk -w $avg_free% -c $avg_free% -p $less_free" | 213 | "./check_disk -w $avg_free_percent% -c $avg_free_percent% -p $less_free" |
181 | ); | 214 | ); |
182 | cmp_ok( $result->return_code, '==', 2, "Get critical on less_free, checking avg_free"); | 215 | cmp_ok( $result->return_code, '==', 2, "Get critical on less_free, checking avg_free"); |
183 | $result = NPTest->testCmd( | 216 | $result = NPTest->testCmd( |
184 | "./check_disk -w $avg_free% -c 0% -p $more_free -w $avg_free% -c $avg_free% -p $less_free" | 217 | "./check_disk -w $avg_free_percent% -c 0% -p $more_free -w $avg_free_percent% -c $avg_free_percent% -p $less_free" |
185 | ); | 218 | ); |
186 | cmp_ok( $result->return_code, '==', 2, "Combining above two tests, get critical"); | 219 | cmp_ok( $result->return_code, '==', 2, "Combining above two tests, get critical"); |
187 | 220 | ||
188 | $result = NPTest->testCmd( | 221 | $result = NPTest->testCmd( |
189 | "./check_disk -w $avg_free% -c $avg_free% -p $less_free -w $avg_free% -c 0% -p $more_free" | 222 | "./check_disk -w $avg_free_percent% -c $avg_free_percent% -p $less_free -w $avg_free_percent% -c 0% -p $more_free" |
190 | ); | 223 | ); |
191 | cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make a difference"); | 224 | cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make a difference"); |
192 | 225 | ||
@@ -203,32 +236,32 @@ is( $result->return_code, 2, "Critical requesting 100% free inodes for both moun | |||
203 | $result = NPTest->testCmd( "./check_disk --iwarning 1% --icritical 1% -p $more_inode_free -K 100% -W 100% -p $less_inode_free" ); | 236 | $result = NPTest->testCmd( "./check_disk --iwarning 1% --icritical 1% -p $more_inode_free -K 100% -W 100% -p $less_inode_free" ); |
204 | is( $result->return_code, 2, "Get critical on less_inode_free mountpoint $less_inode_free"); | 237 | is( $result->return_code, 2, "Get critical on less_inode_free mountpoint $less_inode_free"); |
205 | 238 | ||
206 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K 0% -p $less_inode_free" ); | 239 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $less_inode_free" ); |
207 | is( $result->return_code, 1, "Get warning on less_inode_free, when checking average"); | 240 | is( $result->return_code, 1, "Get warning on less_inode_free, when checking average"); |
208 | 241 | ||
209 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K $avg_inode_free% -p $more_inode_free "); | 242 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $more_inode_free "); |
210 | is( $result->return_code, 0, "Get ok on more_inode_free when checking average"); | 243 | is( $result->return_code, 0, "Get ok on more_inode_free when checking average"); |
211 | 244 | ||
212 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K 0% -p $less_inode_free -W $avg_inode_free% -K $avg_inode_free% -p $more_inode_free" ); | 245 | $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" ); |
213 | is ($result->return_code, 1, "Combine above two tests, get warning"); | 246 | is ($result->return_code, 1, "Combine above two tests, get warning"); |
214 | $all_disks = $result->output; | 247 | $all_disks = $result->output; |
215 | 248 | ||
216 | $result = NPTest->testCmd( "./check_disk -e -W $avg_inode_free% -K 0% -p $less_inode_free -W $avg_inode_free% -K $avg_inode_free% -p $more_inode_free" ); | 249 | $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" ); |
217 | isnt( $result->output, $all_disks, "-e gives different output"); | 250 | isnt( $result->output, $all_disks, "-e gives different output"); |
218 | like( $result->output, qr/$less_inode_free/, "Found problem $less_inode_free"); | 251 | like( $result->output, qr/$less_inode_free/, "Found problem $less_inode_free"); |
219 | unlike( $result->only_output, qr/$more_inode_free\s/, "Has ignored $more_inode_free as not a problem"); | 252 | unlike( $result->only_output, qr/$more_inode_free\s/, "Has ignored $more_inode_free as not a problem"); |
220 | like( $result->perf_output, qr/$more_inode_free/, "But $more_inode_free is still in perf data"); | 253 | like( $result->perf_output, qr/$more_inode_free/, "But $more_inode_free is still in perf data"); |
221 | 254 | ||
222 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K 0% -p $more_inode_free" ); | 255 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K 0% -p $more_inode_free" ); |
223 | is( $result->return_code, 0, "Get ok on more_inode_free mountpoint, checking average"); | 256 | is( $result->return_code, 0, "Get ok on more_inode_free mountpoint, checking average"); |
224 | 257 | ||
225 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K $avg_inode_free% -p $less_inode_free" ); | 258 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free_percentage% -K $avg_inode_free_percentage% -p $less_inode_free" ); |
226 | is( $result->return_code, 2, "Get critical on less_inode_free, checking average"); | 259 | is( $result->return_code, 2, "Get critical on less_inode_free, checking average"); |
227 | 260 | ||
228 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K 0% -p $more_inode_free -W $avg_inode_free% -K $avg_inode_free% -p $less_inode_free" ); | 261 | $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" ); |
229 | is( $result->return_code, 2, "Combining above two tests, get critical"); | 262 | is( $result->return_code, 2, "Combining above two tests, get critical"); |
230 | 263 | ||
231 | $result = NPTest->testCmd( "./check_disk -W $avg_inode_free% -K $avg_inode_free% -p $less_inode_free -W $avg_inode_free% -K 0% -p $more_inode_free" ); | 264 | $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" ); |
232 | cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make a difference"); | 265 | cmp_ok( $result->return_code, '==', 2, "And reversing arguments should not make a difference"); |
233 | 266 | ||
234 | 267 | ||
@@ -249,9 +282,9 @@ $result = NPTest->testCmd( | |||
249 | ); | 282 | ); |
250 | cmp_ok( $result->return_code, "==", 3, "Invalid options: -p must come after thresholds" ); | 283 | cmp_ok( $result->return_code, "==", 3, "Invalid options: -p must come after thresholds" ); |
251 | 284 | ||
252 | $result = NPTest->testCmd( "./check_disk -w 100% -c 100% ".${mountpoint_valid} ); # 100% empty | 285 | $result = NPTest->testCmd( "./check_disk -w 100% -c 100% $output_format ".${mountpoint_valid} ); # 100% empty |
253 | cmp_ok( $result->return_code, "==", 2, "100% empty" ); | 286 | cmp_ok( $result->return_code, "==", 0, "100% empty" ); |
254 | like( $result->output, $failureOutput, "Right output" ); | 287 | like($result->{'mp_test_result'}->{'state'}, "/CRITICAL/", "100% empty"); |
255 | 288 | ||
256 | $result = NPTest->testCmd( "./check_disk -w 100000000 -c 100000000 $mountpoint_valid" ); | 289 | $result = NPTest->testCmd( "./check_disk -w 100000000 -c 100000000 $mountpoint_valid" ); |
257 | cmp_ok( $result->return_code, '==', 2, "Check for 100TB free" ); | 290 | cmp_ok( $result->return_code, '==', 2, "Check for 100TB free" ); |
@@ -263,7 +296,8 @@ cmp_ok( $result->return_code, "==", 2, "100 TB empty" ); | |||
263 | # Checking old syntax of check_disk warn crit [fs], with warn/crit at USED% thresholds | 296 | # Checking old syntax of check_disk warn crit [fs], with warn/crit at USED% thresholds |
264 | $result = NPTest->testCmd( "./check_disk 0 0 ".${mountpoint_valid} ); | 297 | $result = NPTest->testCmd( "./check_disk 0 0 ".${mountpoint_valid} ); |
265 | cmp_ok( $result->return_code, "==", 2, "Old syntax: 0% used"); | 298 | cmp_ok( $result->return_code, "==", 2, "Old syntax: 0% used"); |
266 | like ( $result->only_output, qr(^[^;]*;[^;]*$), "Select only one path with positional arguments"); | 299 | # like ( $result->only_output, qr(^[^;]*;[^;]*$), "Select only one path with positional arguments"); |
300 | # TODO not sure what the above should test, taking it out | ||
267 | 301 | ||
268 | $result = NPTest->testCmd( "./check_disk 100 100 $mountpoint_valid" ); | 302 | $result = NPTest->testCmd( "./check_disk 100 100 $mountpoint_valid" ); |
269 | cmp_ok( $result->return_code, '==', 0, "Old syntax: 100% used" ); | 303 | cmp_ok( $result->return_code, '==', 0, "Old syntax: 100% used" ); |
@@ -311,8 +345,9 @@ $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -p / -p /" ); | |||
311 | unlike( $result->output, '/ \/ .* \/ /', "Should not show same filesystem twice"); | 345 | unlike( $result->output, '/ \/ .* \/ /', "Should not show same filesystem twice"); |
312 | 346 | ||
313 | # are partitions added if -C is given without path selection -p ? | 347 | # are partitions added if -C is given without path selection -p ? |
314 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -C -w 0% -c 0% -p $mountpoint_valid" ); | 348 | $result = NPTest->testCmd( "./check_disk -w 0% -c 0% -C -w 0% -c 0% -p $mountpoint_valid $output_format" ); |
315 | like( $result->output, '/;.*;\|/', "-C selects partitions if -p is not given"); | 349 | cmp_ok( $result->return_code, "==", 0, "with JSON test format result should always be OK"); |
350 | cmp_ok(scalar $result->{'mp_test_result'}->{'checks'}, '>', 1, "-C invokes matchall logic again"); | ||
316 | 351 | ||
317 | # grouping: exit crit if the sum of free megs on mp1+mp2 is less than warn/crit | 352 | # grouping: exit crit if the sum of free megs on mp1+mp2 is less than warn/crit |
318 | $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" ); | 353 | $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" ); |
@@ -359,39 +394,37 @@ like( $result->output, qr/$mountpoint2_valid/,"ignore: output data does have $mo | |||
359 | # ignore-missing: exit okay, when fs is not accessible | 394 | # ignore-missing: exit okay, when fs is not accessible |
360 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -p /bob"); | 395 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -p /bob"); |
361 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for not existing filesystem /bob"); | 396 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for not existing filesystem /bob"); |
362 | like( $result->output, '/^DISK OK - No disks were found for provided parameters - ignored paths: /bob;.*$/', 'Output OK'); | 397 | like( $result->output, '/No filesystems were found for the provided parameters.*$/', 'Output OK'); |
363 | 398 | ||
364 | # ignore-missing: exit okay, when regex does not match | 399 | # ignore-missing: exit okay, when regex does not match |
365 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -r /bob"); | 400 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -r /bob"); |
366 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); | 401 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); |
367 | like( $result->output, '/^DISK OK - No disks were found for provided parameters.*$/', 'Output OK'); | 402 | like( $result->output, '/No filesystems were found for the provided parameters.*$/', 'Output OK'); |
368 | 403 | ||
369 | # ignore-missing: exit okay, when fs with exact match (-E) is not found | 404 | # ignore-missing: exit okay, when fs with exact match (-E) is not found |
370 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -E -p /etc"); | 405 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -E -p /etc"); |
371 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay when exact match does not find fs"); | 406 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay when exact match does not find fs"); |
372 | like( $result->output, '/^DISK OK - No disks were found for provided parameters - ignored paths: /etc;.*$/', 'Output OK'); | 407 | like( $result->output, '/No filesystems were found for the provided parameters.*$/', 'Output OK'); |
373 | 408 | ||
374 | # ignore-missing: exit okay, when checking one existing fs and one non-existing fs (regex) | 409 | # ignore-missing: exit okay, when checking one existing fs and one non-existing fs (regex) |
375 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -r '/bob' -r '^/\$'"); | 410 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -r '/bob' -r '^/\$'"); |
376 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); | 411 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); |
377 | like( $result->output, '/^DISK OK - free space: \/ .*$/', 'Output OK'); | ||
378 | 412 | ||
379 | # ignore-missing: exit okay, when checking one existing fs and one non-existing fs (path) | 413 | # ignore-missing: exit okay, when checking one existing fs and one non-existing fs (path) |
380 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -p '/bob' -p '/'"); | 414 | $result = NPTest->testCmd( "./check_disk --ignore-missing -w 0% -c 0% -p '/bob' -p '/'"); |
381 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); | 415 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); |
382 | like( $result->output, '/^DISK OK - free space: / .*; - ignored paths: /bob;.*$/', 'Output OK'); | 416 | # like( $result->output, '/^DISK OK - free space: / .*; - ignored paths: /bob;.*$/', 'Output OK'); |
383 | 417 | ||
384 | # ignore-missing: exit okay, when checking one non-existing fs (path) and one ignored | 418 | # ignore-missing: exit okay, when checking one non-existing fs (path) and one ignored |
385 | $result = NPTest->testCmd( "./check_disk -n -w 0% -c 0% -r /dummy -i /dummy2"); | 419 | $result = NPTest->testCmd( "./check_disk -n -w 0% -c 0% -r /dummy -i /dummy2"); |
386 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); | 420 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); |
387 | like( $result->output, '/^DISK OK - No disks were found for provided parameters\|$/', 'Output OK'); | 421 | like( $result->output, '/No filesystems were found for the provided parameters.*$/', 'Output OK'); |
388 | 422 | ||
389 | # ignore-missing: exit okay, when regex match does not find anything | 423 | # ignore-missing: exit okay, when regex match does not find anything |
390 | $result = NPTest->testCmd( "./check_disk -n -e -l -w 10% -c 5% -W 10% -K 5% -r /dummy"); | 424 | $result = NPTest->testCmd( "./check_disk -n -e -l -w 10% -c 5% -W 10% -K 5% -r /dummy"); |
391 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); | 425 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); |
392 | like( $result->output, '/^DISK OK\|$/', 'Output OK'); | ||
393 | 426 | ||
394 | # ignore-missing: exit okay, when regex match does not find anything | 427 | # ignore-missing: exit okay, when regex match does not find anything |
395 | $result = NPTest->testCmd( "./check_disk -n -l -w 10% -c 5% -W 10% -K 5% -r /dummy"); | 428 | $result = NPTest->testCmd( "./check_disk -n -l -w 10% -c 5% -W 10% -K 5% -r /dummy"); |
396 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); | 429 | cmp_ok( $result->return_code, '==', 0, "ignore-missing: return okay for regular expression not matching"); |
397 | like( $result->output, '/^DISK OK - No disks were found for provided parameters\|$/', 'Output OK'); | 430 | like( $result->output, '/No filesystems were found for the provided parameters.*$/', 'Output OK'); |
diff --git a/plugins/tests/test_check_disk.c b/plugins/tests/test_check_disk.c index 963a9413..35c57bce 100644 --- a/plugins/tests/test_check_disk.c +++ b/plugins/tests/test_check_disk.c | |||
@@ -24,7 +24,7 @@ | |||
24 | void np_test_mount_entry_regex(struct mount_entry *dummy_mount_list, char *regstr, int cflags, int expect, char *desc); | 24 | void np_test_mount_entry_regex(struct mount_entry *dummy_mount_list, char *regstr, int cflags, int expect, char *desc); |
25 | 25 | ||
26 | int main(int argc, char **argv) { | 26 | int main(int argc, char **argv) { |
27 | plan_tests(33); | 27 | plan_tests(35); |
28 | 28 | ||
29 | struct name_list *exclude_filesystem = NULL; | 29 | struct name_list *exclude_filesystem = NULL; |
30 | ok(np_find_name(exclude_filesystem, "/var/log") == false, "/var/log not in list"); | 30 | ok(np_find_name(exclude_filesystem, "/var/log") == false, "/var/log not in list"); |
@@ -81,15 +81,16 @@ int main(int argc, char **argv) { | |||
81 | np_test_mount_entry_regex(dummy_mount_list, strdup("(/home)|(/var)"), cflags, 2, strdup("grouped regex pathname match:")); | 81 | np_test_mount_entry_regex(dummy_mount_list, strdup("(/home)|(/var)"), cflags, 2, strdup("grouped regex pathname match:")); |
82 | np_test_mount_entry_regex(dummy_mount_list, strdup("(/homE)|(/Var)"), cflags | REG_ICASE, 2, strdup("grouped regi pathname match:")); | 82 | np_test_mount_entry_regex(dummy_mount_list, strdup("(/homE)|(/Var)"), cflags | REG_ICASE, 2, strdup("grouped regi pathname match:")); |
83 | 83 | ||
84 | struct parameter_list *paths = NULL; | 84 | filesystem_list test_paths = filesystem_list_init(); |
85 | np_add_parameter(&paths, "/home/groups"); | 85 | mp_int_fs_list_append(&test_paths, "/home/groups"); |
86 | np_add_parameter(&paths, "/var"); | 86 | mp_int_fs_list_append(&test_paths, "/var"); |
87 | np_add_parameter(&paths, "/tmp"); | 87 | mp_int_fs_list_append(&test_paths, "/tmp"); |
88 | np_add_parameter(&paths, "/home/tonvoon"); | 88 | mp_int_fs_list_append(&test_paths, "/home/tonvoon"); |
89 | np_add_parameter(&paths, "/dev/c2t0d0s0"); | 89 | mp_int_fs_list_append(&test_paths, "/dev/c2t0d0s0"); |
90 | ok(test_paths.length == 5, "List counter works correctly with appends"); | ||
90 | 91 | ||
91 | np_set_best_match(paths, dummy_mount_list, false); | 92 | mp_int_fs_list_set_best_match(test_paths, dummy_mount_list, false); |
92 | for (struct parameter_list *p = paths; p; p = p->name_next) { | 93 | for (parameter_list_elem *p = test_paths.first; p; p = mp_int_fs_list_get_next(p)) { |
93 | struct mount_entry *temp_me; | 94 | struct mount_entry *temp_me; |
94 | temp_me = p->best_match; | 95 | temp_me = p->best_match; |
95 | if (!strcmp(p->name, "/home/groups")) { | 96 | if (!strcmp(p->name, "/home/groups")) { |
@@ -105,15 +106,19 @@ int main(int argc, char **argv) { | |||
105 | } | 106 | } |
106 | } | 107 | } |
107 | 108 | ||
108 | paths = NULL; /* Bad boy - should free, but this is a test suite */ | 109 | for (parameter_list_elem *p = test_paths.first; p; p = mp_int_fs_list_get_next(p)) { |
109 | np_add_parameter(&paths, "/home/groups"); | 110 | mp_int_fs_list_del(&test_paths, p); |
110 | np_add_parameter(&paths, "/var"); | 111 | } |
111 | np_add_parameter(&paths, "/tmp"); | 112 | ok(test_paths.length == 0, "List delete sets counter properly"); |
112 | np_add_parameter(&paths, "/home/tonvoon"); | 113 | |
113 | np_add_parameter(&paths, "/home"); | 114 | mp_int_fs_list_append(&test_paths, "/home/groups"); |
115 | mp_int_fs_list_append(&test_paths, "/var"); | ||
116 | mp_int_fs_list_append(&test_paths, "/tmp"); | ||
117 | mp_int_fs_list_append(&test_paths, "/home/tonvoon"); | ||
118 | mp_int_fs_list_append(&test_paths, "/home"); | ||
114 | 119 | ||
115 | np_set_best_match(paths, dummy_mount_list, true); | 120 | mp_int_fs_list_set_best_match(test_paths, dummy_mount_list, true); |
116 | for (struct parameter_list *p = paths; p; p = p->name_next) { | 121 | for (parameter_list_elem *p = test_paths.first; p; p = mp_int_fs_list_get_next(p)) { |
117 | if (!strcmp(p->name, "/home/groups")) { | 122 | if (!strcmp(p->name, "/home/groups")) { |
118 | ok(!p->best_match, "/home/groups correctly not found"); | 123 | ok(!p->best_match, "/home/groups correctly not found"); |
119 | } else if (!strcmp(p->name, "/var")) { | 124 | } else if (!strcmp(p->name, "/var")) { |
@@ -129,8 +134,8 @@ int main(int argc, char **argv) { | |||
129 | 134 | ||
130 | bool found = false; | 135 | bool found = false; |
131 | /* test deleting first element in paths */ | 136 | /* test deleting first element in paths */ |
132 | paths = np_del_parameter(paths, NULL); | 137 | mp_int_fs_list_del(&test_paths, NULL); |
133 | for (struct parameter_list *p = paths; p; p = p->name_next) { | 138 | for (parameter_list_elem *p = test_paths.first; p; p = mp_int_fs_list_get_next(p)) { |
134 | if (!strcmp(p->name, "/home/groups")) { | 139 | if (!strcmp(p->name, "/home/groups")) { |
135 | found = true; | 140 | found = true; |
136 | } | 141 | } |
@@ -138,23 +143,21 @@ int main(int argc, char **argv) { | |||
138 | ok(!found, "first element successfully deleted"); | 143 | ok(!found, "first element successfully deleted"); |
139 | found = false; | 144 | found = false; |
140 | 145 | ||
141 | struct parameter_list *prev = NULL; | 146 | parameter_list_elem *prev = NULL; |
142 | struct parameter_list *p = paths; | 147 | parameter_list_elem *p = NULL; |
143 | while (p) { | 148 | for (parameter_list_elem *path = test_paths.first; path; path = mp_int_fs_list_get_next(path)) { |
144 | if (!strcmp(p->name, "/tmp")) { | 149 | if (!strcmp(path->name, "/tmp")) { |
145 | p = np_del_parameter(p, prev); | 150 | mp_int_fs_list_del(&test_paths, path); |
146 | } else { | ||
147 | prev = p; | ||
148 | p = p->name_next; | ||
149 | } | 151 | } |
152 | p = path; | ||
150 | } | 153 | } |
151 | 154 | ||
152 | struct parameter_list *last = NULL; | 155 | parameter_list_elem *last = NULL; |
153 | for (struct parameter_list *path = paths; path; path = path->name_next) { | 156 | for (parameter_list_elem *path = test_paths.first; path; path = mp_int_fs_list_get_next(path)) { |
154 | if (!strcmp(path->name, "/tmp")) { | 157 | if (!strcmp(path->name, "/tmp")) { |
155 | found = true; | 158 | found = true; |
156 | } | 159 | } |
157 | if (path->name_next) { | 160 | if (path->next) { |
158 | prev = path; | 161 | prev = path; |
159 | } else { | 162 | } else { |
160 | last = path; | 163 | last = path; |
@@ -163,8 +166,8 @@ int main(int argc, char **argv) { | |||
163 | ok(!found, "/tmp element successfully deleted"); | 166 | ok(!found, "/tmp element successfully deleted"); |
164 | 167 | ||
165 | int count = 0; | 168 | int count = 0; |
166 | p = np_del_parameter(last, prev); | 169 | mp_int_fs_list_del(&test_paths, p); |
167 | for (p = paths; p; p = p->name_next) { | 170 | for (p = test_paths.first; p; p = p->next) { |
168 | if (!strcmp(p->name, "/home")) { | 171 | if (!strcmp(p->name, "/home")) { |
169 | found = true; | 172 | found = true; |
170 | } | 173 | } |