Code

Updated link to sfsnapshotgit
[nagiosplug.git] / lib / tests / test_disk.c
index ac9db0056ab1de22471a439a2359059a52a5e4b4..58eb8f1dfad27772a65dc24b9efc982597bb486b 100644 (file)
@@ -1,22 +1,20 @@
-/******************************************************************************
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
- $Id$
-******************************************************************************/
+/*****************************************************************************
+* 
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation, either version 3 of the License, or
+* (at your option) any later version.
+* 
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU General Public License for more details.
+* 
+* You should have received a copy of the GNU General Public License
+* along with this program.  If not, see <http://www.gnu.org/licenses/>.
+* 
+* 
+*****************************************************************************/
 
 #include "common.h"
 #include "utils_disk.h"
@@ -36,14 +34,15 @@ main (int argc, char **argv)
        struct name_list *dummy_mountlist = NULL;
        struct name_list *temp_name;
        struct parameter_list *paths = NULL;
-       struct parameter_list *p;
+       struct parameter_list *p, *prev, *last;
 
        struct mount_entry *dummy_mount_list;
        struct mount_entry *me;
        struct mount_entry **mtail = &dummy_mount_list;
        int cflags = REG_NOSUB | REG_EXTENDED;
+       int found = 0, count = 0;
 
-       plan_tests(29);
+       plan_tests(33);
 
        ok( np_find_name(exclude_filesystem, "/var/log") == FALSE, "/var/log not in list");
        np_add_name(&exclude_filesystem, "/var/log");
@@ -160,6 +159,46 @@ main (int argc, char **argv)
                }
        }
 
+       /* test deleting first element in paths */
+       paths = np_del_parameter(paths, NULL);
+       for (p = paths; p; p = p->name_next) {
+               if (! strcmp(p->name, "/home/groups"))
+                       found = 1;
+       }
+       ok(found == 0, "first element successfully deleted");
+       found = 0;
+       
+       p=paths;
+       while (p) {
+               if (! strcmp(p->name, "/tmp"))
+                       p = np_del_parameter(p, prev);
+               else {
+                       prev = p;
+                       p = p->name_next;
+               }
+       }
+
+       for (p = paths; p; p = p->name_next) {
+               if (! strcmp(p->name, "/tmp"))
+                       found = 1;
+               if (p->name_next)
+                       prev = p;
+               else
+                       last = p;
+       }
+       ok(found == 0, "/tmp element successfully deleted");
+
+       p = np_del_parameter(last, prev);
+       for (p = paths; p; p = p->name_next) {
+               if (! strcmp(p->name, "/home"))
+                       found = 1;
+               last = p;
+               count++;
+       }
+       ok(found == 0, "last (/home) element successfully deleted");
+       ok(count == 2, "two elements remaining");
+
+
        return exit_status();
 }
 
@@ -180,5 +219,6 @@ np_test_mount_entry_regex (struct mount_entry *dummy_mount_list, char *regstr, i
                    desc, regstr, expect, matches);
 
        } else
-               ok ( false, "regex '%s' not compileable", regstr);
+               ok ( false, "regex '%s' not compilable", regstr);
 }
+