Code

Update libtool
[nagiosplug.git] / lib / tests / test_ini1.c
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.
12
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/>.
15
16
17 *****************************************************************************/
19 #include "common.h"
20 #include "utils_base.h"
21 #include "parse_ini.h"
23 #include "tap.h"
25 void my_free(char *string) {
26         if (string != NULL) {
27                 printf("string:\n\t|%s|\n", string);
28                 free(string);
29         }
30 }
32 char*
33 list2str(np_arg_list *optlst)
34 {
35         char *optstr=NULL;
36         np_arg_list *optltmp;
38         /* Put everything as a space-separated string */
39         asprintf(&optstr, "");
40         while (optlst) {
41                 asprintf(&optstr, "%s%s ", optstr, optlst->arg);
42                 optltmp=optlst;
43                 optlst=optlst->next;
44                 free(optltmp);
45         }
46         /* Strip last whitespace */
47         if (strlen(optstr)>1) optstr[strlen(optstr)-1]='\0';
49         return optstr;
50 }
52 int
53 main (int argc, char **argv)
54 {
55         char *optstr=NULL;
57         plan_tests(12);
59         optstr=list2str(np_get_defaults("section@./config-tiny.ini", "check_disk"));
60         ok( !strcmp(optstr, "--one=two --Foo=Bar --this=Your Mother! --blank"), "config-tiny.ini's section as expected");
61         my_free(optstr);
63         optstr=list2str(np_get_defaults("@./config-tiny.ini", "section"));
64         ok( !strcmp(optstr, "--one=two --Foo=Bar --this=Your Mother! --blank"), "Used default section name, without specific");
65         my_free(optstr);
67         optstr=list2str(np_get_defaults("Section Two@./config-tiny.ini", "check_disk"));
68         ok( !strcmp(optstr, "--something else=blah --remove=whitespace"), "config-tiny.ini's Section Two as expected");
69         my_free(optstr);
71         optstr=list2str(np_get_defaults("/path/to/file.txt@./config-tiny.ini", "check_disk"));
72         ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's filename as section name");
73         my_free(optstr);
75         optstr=list2str(np_get_defaults("section2@./config-tiny.ini", "check_disk"));
76         ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's section2 with whitespace before section name");
77         my_free(optstr);
79         optstr=list2str(np_get_defaults("section3@./config-tiny.ini", "check_disk"));
80         ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's section3 with whitespace after section name");
81         my_free(optstr);
83         optstr=list2str(np_get_defaults("check_mysql@./plugin.ini", "check_disk"));
84         ok( !strcmp(optstr, "--username=operator --password=secret"), "plugin.ini's check_mysql as expected");
85         my_free(optstr);
87         optstr=list2str(np_get_defaults("check_mysql2@./plugin.ini", "check_disk"));
88         ok( !strcmp(optstr, "-u=admin -p=secret"), "plugin.ini's check_mysql2 as expected");
89         my_free(optstr);
91         optstr=list2str(np_get_defaults("check space_and_flags@./plugin.ini", "check_disk"));
92         ok( !strcmp(optstr, "--foo=bar -a -b --bar"), "plugin.ini space in stanza and flag arguments");
93         my_free(optstr);
95         optstr=list2str(np_get_defaults("Section Two@./config-dos.ini", "check_disk"));
96         ok( !strcmp(optstr, "--something else=blah --remove=whitespace"), "config-dos.ini's Section Two as expected");
97         my_free(optstr);
99         optstr=list2str(np_get_defaults("section_twice@./plugin.ini", "check_disk"));
100         ok( !strcmp(optstr, "--foo=bar --bar=foo"), "plugin.ini's section_twice defined twice in the file");
101         my_free(optstr);
103         optstr=list2str(np_get_defaults("tcp_long_lines@plugins.ini", "check_tcp"));
104         ok( !strcmp(optstr, "--escape --send=Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda --expect=Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda Foo bar BAZ yadda yadda yadda --jail"), "Long options");
105         my_free(optstr);
107         return exit_status();