cfgfile: support global properties section
[dpdk.git] / test / test / test_cfgfile.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2017 Wind River Systems Inc. All rights reserved.
5  *
6  *   Redistribution and use in source and binary forms, with or without
7  *   modification, are permitted provided that the following conditions
8  *   are met:
9  *
10  *     * Redistributions of source code must retain the above copyright
11  *       notice, this list of conditions and the following disclaimer.
12  *     * Redistributions in binary form must reproduce the above copyright
13  *       notice, this list of conditions and the following disclaimer in
14  *       the documentation and/or other materials provided with the
15  *       distribution.
16  *     * Neither the name of Intel Corporation nor the names of its
17  *       contributors may be used to endorse or promote products derived
18  *       from this software without specific prior written permission.
19  *
20  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <stdio.h>
34 #include <string.h>
35 #include <stdint.h>
36 #include <sys/queue.h>
37
38 #include <rte_cfgfile.h>
39
40 #include "test.h"
41 #include "resource.h"
42
43
44 #define CFG_FILES_ETC "test_cfgfiles/etc"
45
46 REGISTER_LINKED_RESOURCE(test_cfgfiles);
47
48 static int
49 test_cfgfile_setup(void)
50 {
51         const struct resource *r;
52         int ret;
53
54         r = resource_find("test_cfgfiles");
55         TEST_ASSERT_NOT_NULL(r, "missing resource test_cfgfiles");
56
57         ret = resource_untar(r);
58         TEST_ASSERT_SUCCESS(ret, "failed to untar %s", r->name);
59
60         return 0;
61 }
62
63 static int
64 test_cfgfile_cleanup(void)
65 {
66         const struct resource *r;
67         int ret;
68
69         r = resource_find("test_cfgfiles");
70         TEST_ASSERT_NOT_NULL(r, "missing resource test_cfgfiles");
71
72         ret = resource_rm_by_tar(r);
73         TEST_ASSERT_SUCCESS(ret, "Failed to delete resource %s", r->name);
74
75         return 0;
76 }
77
78 static int
79 _test_cfgfile_sample(struct rte_cfgfile *cfgfile)
80 {
81         const char *value;
82         int ret;
83
84         ret = rte_cfgfile_num_sections(cfgfile, NULL, 0);
85         TEST_ASSERT(ret == 2, "Unexpected number of sections: %d", ret);
86
87         ret = rte_cfgfile_has_section(cfgfile, "section1");
88         TEST_ASSERT(ret, "section1 section missing");
89
90         ret = rte_cfgfile_section_num_entries(cfgfile, "section1");
91         TEST_ASSERT(ret == 1, "section1 unexpected number of entries: %d", ret);
92
93         value = rte_cfgfile_get_entry(cfgfile, "section1", "key1");
94         TEST_ASSERT(strcmp("value1", value) == 0,
95                     "key1 unexpected value: %s", value);
96
97         ret = rte_cfgfile_has_section(cfgfile, "section2");
98         TEST_ASSERT(ret, "section2 section missing");
99
100         ret = rte_cfgfile_section_num_entries(cfgfile, "section2");
101         TEST_ASSERT(ret == 2, "section2 unexpected number of entries: %d", ret);
102
103         value = rte_cfgfile_get_entry(cfgfile, "section2", "key2");
104         TEST_ASSERT(strcmp("value2", value) == 0,
105                     "key2 unexpected value: %s", value);
106
107         value = rte_cfgfile_get_entry(cfgfile, "section2", "key3");
108         TEST_ASSERT(strcmp("value3", value) == 0,
109                     "key3 unexpected value: %s", value);
110
111         return 0;
112 }
113
114 static int
115 test_cfgfile_sample1(void)
116 {
117         struct rte_cfgfile *cfgfile;
118         int ret;
119
120         cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/sample1.ini", 0);
121         TEST_ASSERT_NOT_NULL(cfgfile, "Failed to load config file");
122
123         ret = _test_cfgfile_sample(cfgfile);
124         TEST_ASSERT_SUCCESS(ret, "Failed to validate sample file: %d", ret);
125
126         ret = rte_cfgfile_close(cfgfile);
127         TEST_ASSERT_SUCCESS(ret, "Failed to close cfgfile");
128
129         return 0;
130 }
131
132 static int
133 test_cfgfile_invalid_section_header(void)
134 {
135         struct rte_cfgfile *cfgfile;
136
137         cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/invalid_section.ini", 0);
138         TEST_ASSERT_NULL(cfgfile, "Expected failured did not occur");
139
140         return 0;
141 }
142
143 static int
144 test_cfgfile_invalid_key_value_pair(void)
145 {
146         struct rte_cfgfile *cfgfile;
147
148         cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/empty_key_value.ini", 0);
149         TEST_ASSERT_NULL(cfgfile, "Expected failured did not occur");
150
151         return 0;
152 }
153
154 static int
155 test_cfgfile_missing_section(void)
156 {
157         struct rte_cfgfile *cfgfile;
158
159         cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/missing_section.ini", 0);
160         TEST_ASSERT_NULL(cfgfile, "Expected failured did not occur");
161
162         return 0;
163 }
164
165 static int
166 test_cfgfile_global_properties(void)
167 {
168         struct rte_cfgfile *cfgfile;
169         const char *value;
170         int ret;
171
172         cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/missing_section.ini",
173                                    CFG_FLAG_GLOBAL_SECTION);
174         TEST_ASSERT_NOT_NULL(cfgfile, "Failed to load config file");
175
176         ret = rte_cfgfile_num_sections(cfgfile, NULL, 0);
177         TEST_ASSERT(ret == 1, "Unexpected number of sections: %d", ret);
178
179         ret = rte_cfgfile_has_section(cfgfile, "GLOBAL");
180         TEST_ASSERT(ret, "global section missing");
181
182         ret = rte_cfgfile_section_num_entries(cfgfile, "GLOBAL");
183         TEST_ASSERT(ret == 1, "GLOBAL unexpected number of entries: %d", ret);
184
185         value = rte_cfgfile_get_entry(cfgfile, "GLOBAL", "key");
186         TEST_ASSERT(strcmp("value", value) == 0,
187                     "key unexpected value: %s", value);
188
189         ret = rte_cfgfile_close(cfgfile);
190         TEST_ASSERT_SUCCESS(ret, "Failed to close cfgfile");
191
192         return 0;
193 }
194
195 static int
196 test_cfgfile_empty_file(void)
197 {
198         struct rte_cfgfile *cfgfile;
199         int ret;
200
201         cfgfile = rte_cfgfile_load(CFG_FILES_ETC "/empty.ini", 0);
202         TEST_ASSERT_NOT_NULL(cfgfile, "Failed to load config file");
203
204         ret = rte_cfgfile_num_sections(cfgfile, NULL, 0);
205         TEST_ASSERT(ret == 0, "Unexpected number of sections: %d", ret);
206
207         ret = rte_cfgfile_close(cfgfile);
208         TEST_ASSERT_SUCCESS(ret, "Failed to close cfgfile");
209
210         return 0;
211 }
212
213 static int
214 test_cfgfile(void)
215 {
216         if (test_cfgfile_setup())
217                 return -1;
218
219         if (test_cfgfile_sample1())
220                 return -1;
221
222         if (test_cfgfile_invalid_section_header())
223                 return -1;
224
225         if (test_cfgfile_invalid_key_value_pair())
226                 return -1;
227
228         if (test_cfgfile_missing_section())
229                 return -1;
230
231         if (test_cfgfile_global_properties())
232                 return -1;
233
234         if (test_cfgfile_empty_file())
235                 return -1;
236
237         if (test_cfgfile_cleanup())
238                 return -1;
239
240         return 0;
241 }
242
243 REGISTER_TEST_COMMAND(cfgfile_autotest, test_cfgfile);