Fix for last commit - I accidentaly broke my local Makefile and tests weren't being...
[monitoring-plugins.git] / lib / tests / test_ini.c
blob80396caa5a222359e46fa8f8da702ab836403e40
1 /*****************************************************************************
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 * $Id$
18 *****************************************************************************/
20 #include "common.h"
21 #include "utils_base.h"
22 #include "parse_ini.h"
24 #include "tap.h"
26 void my_free(char *string) {
27 if (string != NULL) {
28 printf("string:\n\t|%s|\n", string);
29 free(string);
33 char*
34 list2str(np_arg_list *optlst)
36 char *optstr=NULL;
37 np_arg_list *optltmp;
39 /* Put everything as a space-separated string */
40 asprintf(&optstr, "");
41 while (optlst) {
42 asprintf(&optstr, "%s%s ", optstr, optlst->arg);
43 optltmp=optlst;
44 optlst=optlst->next;
45 free(optltmp);
47 /* Strip last whitespace */
48 if (strlen(optstr)>1) optstr[strlen(optstr)-1]='\0';
50 return optstr;
53 int
54 main (int argc, char **argv)
56 char *optstr=NULL;
58 plan_tests(12);
60 optstr=list2str(np_get_defaults("section@./config-tiny.ini", "check_disk"));
61 ok( !strcmp(optstr, "--one=two --Foo=Bar --this=Your Mother! --blank"), "config-tiny.ini's section as expected");
62 my_free(optstr);
64 optstr=list2str(np_get_defaults("@./config-tiny.ini", "section"));
65 ok( !strcmp(optstr, "--one=two --Foo=Bar --this=Your Mother! --blank"), "Used default section name, without specific");
66 my_free(optstr);
68 optstr=list2str(np_get_defaults("section_unknown@./config-tiny.ini", "section"));
69 ok( !strcmp(optstr, "--one=two --Foo=Bar --this=Your Mother! --blank"), "Used default section name over specified one");
70 my_free(optstr);
72 optstr=list2str(np_get_defaults("Section Two@./config-tiny.ini", "check_disk"));
73 ok( !strcmp(optstr, "--something else=blah --remove=whitespace"), "config-tiny.ini's Section Two as expected");
74 my_free(optstr);
76 optstr=list2str(np_get_defaults("/path/to/file.txt@./config-tiny.ini", "check_disk"));
77 ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's filename as section name");
78 my_free(optstr);
80 optstr=list2str(np_get_defaults("section2@./config-tiny.ini", "check_disk"));
81 ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's section2 with whitespace before section name");
82 my_free(optstr);
84 optstr=list2str(np_get_defaults("section3@./config-tiny.ini", "check_disk"));
85 ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's section3 with whitespace after section name");
86 my_free(optstr);
88 optstr=list2str(np_get_defaults("check_mysql@./plugin.ini", "check_disk"));
89 ok( !strcmp(optstr, "--username=operator --password=secret"), "plugin.ini's check_mysql as expected");
90 my_free(optstr);
92 optstr=list2str(np_get_defaults("check_mysql2@./plugin.ini", "check_disk"));
93 ok( !strcmp(optstr, "-u=admin -p=secret"), "plugin.ini's check_mysql2 as expected");
94 my_free(optstr);
96 optstr=list2str(np_get_defaults("check space_and_flags@./plugin.ini", "check_disk"));
97 ok( !strcmp(optstr, "--foo=bar -a -b --bar"), "plugin.ini space in stanza and flag arguments");
98 my_free(optstr);
100 optstr=list2str(np_get_defaults("Section Two@./config-dos.ini", "check_disk"));
101 ok( !strcmp(optstr, "--something else=blah --remove=whitespace"), "config-dos.ini's Section Two as expected");
102 my_free(optstr);
104 optstr=list2str(np_get_defaults("section_twice@./plugin.ini", "check_disk"));
105 ok( !strcmp(optstr, "--foo=bar --bar=foo"), "plugin.ini's section_twice defined twice in the file");
106 my_free(optstr);
108 return exit_status();