Code

Adding libtap into distribution to help run C based tests
[nagiosplug.git] / lib / tests / test_ini.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 * $Id$
17
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);
30         }
31 }
33 char*
34 list2str(np_arg_list *optlst)
35 {
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);
46         }
47         /* Strip last whitespace */
48         if (strlen(optstr)>1) optstr[strlen(optstr)-1]='\0';
50         return optstr;
51 }
53 int
54 main (int argc, char **argv)
55 {
56         char *optstr=NULL;
58         plan_tests(11);
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         /*
69          * This check is expected to die - It's commented so we can eventually put
70          * it in a separate file for testing the return value
71          */
72         /* optstr=list2str(np_get_defaults("section_unknown@./config-tiny.ini", "section"));
73         ok( 0, "die if section isn't found");
74         my_free(optstr); */
76         optstr=list2str(np_get_defaults("Section Two@./config-tiny.ini", "check_disk"));
77         ok( !strcmp(optstr, "--something else=blah --remove=whitespace"), "config-tiny.ini's Section Two as expected");
78         my_free(optstr);
80         optstr=list2str(np_get_defaults("/path/to/file.txt@./config-tiny.ini", "check_disk"));
81         ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's filename as section name");
82         my_free(optstr);
84         optstr=list2str(np_get_defaults("section2@./config-tiny.ini", "check_disk"));
85         ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's section2 with whitespace before section name");
86         my_free(optstr);
88         optstr=list2str(np_get_defaults("section3@./config-tiny.ini", "check_disk"));
89         ok( !strcmp(optstr, "--this=that"), "config-tiny.ini's section3 with whitespace after section name");
90         my_free(optstr);
92         optstr=list2str(np_get_defaults("check_mysql@./plugin.ini", "check_disk"));
93         ok( !strcmp(optstr, "--username=operator --password=secret"), "plugin.ini's check_mysql as expected");
94         my_free(optstr);
96         optstr=list2str(np_get_defaults("check_mysql2@./plugin.ini", "check_disk"));
97         ok( !strcmp(optstr, "-u=admin -p=secret"), "plugin.ini's check_mysql2 as expected");
98         my_free(optstr);
100         optstr=list2str(np_get_defaults("check space_and_flags@./plugin.ini", "check_disk"));
101         ok( !strcmp(optstr, "--foo=bar -a -b --bar"), "plugin.ini space in stanza and flag arguments");
102         my_free(optstr);
104         optstr=list2str(np_get_defaults("Section Two@./config-dos.ini", "check_disk"));
105         ok( !strcmp(optstr, "--something else=blah --remove=whitespace"), "config-dos.ini's Section Two as expected");
106         my_free(optstr);
108         optstr=list2str(np_get_defaults("section_twice@./plugin.ini", "check_disk"));
109         ok( !strcmp(optstr, "--foo=bar --bar=foo"), "plugin.ini's section_twice defined twice in the file");
110         my_free(optstr);
112         return exit_status();