blob: 3e288b515c4c8898d77fe431f97e4c163f3f7516 [file] [log] [blame]
Radek Krejcie84f12f2018-09-18 14:11:50 +02001/*
2 * @file set.c
3 * @author: Radek Krejci <rkrejci@cesnet.cz>
4 * @brief unit tests for functions from set.c
5 *
6 * Copyright (c) 2018 CESNET, z.s.p.o.
7 *
8 * This source code is licensed under BSD 3-Clause License (the "License").
9 * You may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * https://opensource.org/licenses/BSD-3-Clause
13 */
Radek Krejcib7db73a2018-10-24 14:18:40 +020014#include "common.h"
Radek Krejcie84f12f2018-09-18 14:11:50 +020015
Radek Krejcie84f12f2018-09-18 14:11:50 +020016#include <stdarg.h>
17#include <stddef.h>
18#include <setjmp.h>
19#include <cmocka.h>
20
21#include <string.h>
22
Radek Krejci2d7a47b2019-05-16 13:34:10 +020023#include "../../src/set.h"
Radek Krejcie84f12f2018-09-18 14:11:50 +020024
25#define BUFSIZE 1024
26char logbuf[BUFSIZE] = {0};
27
28static void
29logger(LY_LOG_LEVEL level, const char *msg, const char *path)
30{
31 (void) level; /* unused */
32 (void) path; /* unused */
33
34 strncpy(logbuf, msg, BUFSIZE - 1);
35}
36
37static int
38logger_setup(void **state)
39{
40 (void) state; /* unused */
41
42 ly_set_log_clb(logger, 0);
43
44 return 0;
45}
46
47static void
48test_basics(void **state)
49{
50 (void) state; /* unused */
51
52 struct ly_set *set;
53 char *str;
54 unsigned int u;
55 void *ptr;
56
57 /* creation - everything is empty */
58 set = ly_set_new();
59 assert_non_null(set);
60 assert_int_equal(0, set->count);
61 assert_int_equal(0, set->size);
62 assert_null(set->objs);
63
64 /* add a testing object */
65 str = strdup("test string");
66 assert_non_null(str);
67
68 ly_set_add(set, str, 0);
69 assert_int_not_equal(0, set->size);
70 assert_int_equal(1, set->count);
71 assert_non_null(set->objs);
72 assert_non_null(set->objs[0]);
73
74 /* check the presence of the testing data */
75 assert_int_equal(0, ly_set_contains(set, str));
76 assert_int_equal(-1, ly_set_contains(set, str - 1));
77
78 /* remove data, but keep the set */
79 u = set->size;
80 ptr = set->objs;
81 ly_set_clean(set, free);
82 assert_int_equal(0, set->count);
83 assert_int_equal(u, set->size);
84 assert_ptr_equal(ptr, set->objs);
85
86 /* remove buffer, but keep the set object */
87 ly_set_erase(set, NULL);
88 assert_int_equal(0, set->count);
89 assert_int_equal(0, set->size);
90 assert_ptr_equal(NULL, set->objs);
91
92 /* final cleanup */
93 ly_set_free(set, NULL);
94}
95
96static void
97test_inval(void **state)
98{
99 struct ly_set set;
100 memset(&set, 0, sizeof set);
101
102 ly_set_clean(NULL, NULL);
Radek Krejci0bfec162019-05-02 09:54:25 +0200103 assert_string_equal(logbuf, "");
Radek Krejcie84f12f2018-09-18 14:11:50 +0200104
105 ly_set_erase(NULL, NULL);
Radek Krejci0bfec162019-05-02 09:54:25 +0200106 assert_string_equal(logbuf, "");
Radek Krejcie84f12f2018-09-18 14:11:50 +0200107
108 ly_set_free(NULL, NULL);
Radek Krejci0bfec162019-05-02 09:54:25 +0200109 assert_string_equal(logbuf, "");
Radek Krejcie84f12f2018-09-18 14:11:50 +0200110
Radek Krejci519b0432018-09-18 17:04:57 +0200111 assert_null(ly_set_dup(NULL, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200112 assert_string_equal(logbuf, "Invalid argument set (ly_set_dup()).");
113
114 assert_int_equal(-1, ly_set_add(NULL, NULL, 0));
115 assert_string_equal(logbuf, "Invalid argument set (ly_set_add()).");
116 assert_int_equal(-1, ly_set_add(&set, NULL, 0));
117 assert_string_equal(logbuf, "Invalid argument object (ly_set_add()).");
118
Radek Krejci519b0432018-09-18 17:04:57 +0200119 assert_int_equal(-1, ly_set_merge(NULL, NULL, 0, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200120 assert_string_equal(logbuf, "Invalid argument trg (ly_set_merge()).");
Radek Krejci519b0432018-09-18 17:04:57 +0200121 assert_int_equal(0, ly_set_merge(&set, NULL, 0, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200122 assert_string_equal(logbuf, "Invalid argument src (ly_set_merge()).");
123
Radek Krejci820d2262018-09-20 12:15:31 +0200124 assert_int_equal(LY_EINVAL, ly_set_rm_index(NULL, 0, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200125 assert_string_equal(logbuf, "Invalid argument set (ly_set_rm_index()).");
Radek Krejci820d2262018-09-20 12:15:31 +0200126 assert_int_equal(LY_EINVAL, ly_set_rm_index(&set, 1, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200127 assert_string_equal(logbuf, "Invalid argument index (ly_set_rm_index()).");
128
Radek Krejci820d2262018-09-20 12:15:31 +0200129 assert_int_equal(LY_EINVAL, ly_set_rm(NULL, NULL, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200130 assert_string_equal(logbuf, "Invalid argument set (ly_set_rm()).");
Radek Krejci820d2262018-09-20 12:15:31 +0200131 assert_int_equal(LY_EINVAL, ly_set_rm(&set, NULL, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200132 assert_string_equal(logbuf, "Invalid argument object (ly_set_rm()).");
Radek Krejci820d2262018-09-20 12:15:31 +0200133 assert_int_equal(LY_EINVAL, ly_set_rm(&set, &state, NULL));
Radek Krejcie84f12f2018-09-18 14:11:50 +0200134 assert_string_equal(logbuf, "Invalid argument object (ly_set_rm()).");
135}
136
Radek Krejci519b0432018-09-18 17:04:57 +0200137static void
138test_duplication(void **state)
139{
140 (void) state; /* unused */
141
142 struct ly_set *orig, *new;
143 char *str;
144
145 orig = ly_set_new();
146 assert_non_null(orig);
147
148 /* add a testing object */
149 str = strdup("test string");
150 assert_non_null(str);
151 assert_int_equal(0, ly_set_add(orig, str, 0));
152
153 /* duplicate the set - without duplicator, so the new set will point to the same string */
154 new = ly_set_dup(orig, NULL);
155 assert_non_null(new);
156 assert_ptr_not_equal(orig, new);
157 assert_int_equal(orig->count, new->count);
158 assert_ptr_equal(orig->objs[0], new->objs[0]);
159
160 ly_set_free(new, NULL);
161
162 /* duplicate the set - with duplicator, so the new set will point to a different buffer with the same content */
163 new = ly_set_dup(orig, (void*(*)(void*))strdup);
164 assert_non_null(new);
165 assert_ptr_not_equal(orig, new);
166 assert_int_equal(orig->count, new->count);
167 assert_ptr_not_equal(orig->objs[0], new->objs[0]);
168 assert_string_equal(orig->objs[0], new->objs[0]);
169
170 /* cleanup */
171 ly_set_free(new, free);
172 ly_set_free(orig, free);
173}
174
175static void
176test_add(void **state)
177{
178 (void) state; /* unused */
179
180 unsigned int u, i;
181 char *str = "test string";
182 struct ly_set set;
183 memset(&set, 0, sizeof set);
184
185 /* add a testing object */
186 assert_int_equal(0, ly_set_add(&set, str, 0));
187
188 /* test avoiding data duplicities */
189 assert_int_equal(0, ly_set_add(&set, str, 0));
190 assert_int_equal(1, set.count);
191 assert_int_equal(1, ly_set_add(&set, str, LY_SET_OPT_USEASLIST));
192 assert_int_equal(2, set.count);
193
194 /* test array resizing */
195 u = set.size;
196 for (i = 2; i <= u; ++i) {
197 assert_int_equal(i, ly_set_add(&set, str, LY_SET_OPT_USEASLIST));
198 }
199 assert_true(u != set.size);
200
201 /* cleanup */
202 ly_set_erase(&set, NULL);
203}
204
205static void
206test_merge(void **state)
207{
208 (void) state; /* unused */
209
210 char *str1, *str2;
211 struct ly_set one, two;
212 memset(&one, 0, sizeof one);
213 memset(&two, 0, sizeof two);
214
215 str1 = strdup("string1");
216 str2 = strdup("string2");
217
218 /* fill first set
219 * - str1 is the same as in two, so it must not be freed! */
220 assert_int_equal(0, ly_set_add(&one, str1, 0));
221
222 /* fill second set */
223 assert_int_equal(0, ly_set_add(&two, str1, 0));
224 assert_int_equal(1, ly_set_add(&two, str2, 0));
225
226 /* merge with checking duplicities - only one item is added into one;
227 * also without duplicating data, so it must not be freed at the end */
228 assert_int_equal(1, ly_set_merge(&one, &two, 0, NULL));
229 assert_ptr_equal(one.objs[1], two.objs[1]);
230
231 /* clean and re-fill one (now duplicating str1, to allow testing duplicator) */
232 ly_set_clean(&one, NULL);
233 assert_int_equal(0, ly_set_add(&one, strdup(str1), 0));
234
235 /* merge without checking duplicities - two items are added into one;
236 * here also with duplicator */
237 assert_int_equal(2, ly_set_merge(&one, &two, LY_SET_OPT_USEASLIST, (void*(*)(void*))strdup));
238 assert_ptr_not_equal(one.objs[1], two.objs[0]);
239 assert_string_equal(one.objs[1], two.objs[0]);
240
241 /* cleanup */
242 ly_set_erase(&one, free);
243 ly_set_erase(&two, free);
244}
245
246static void
247test_rm(void **state)
248{
249 (void) state; /* unused */
250
251 char *str1, *str2, *str3;
252 struct ly_set set;
253 memset(&set, 0, sizeof set);
254
255 /* fill the set */
256 assert_int_equal(0, ly_set_add(&set, "string1", 0));
Radek Krejci820d2262018-09-20 12:15:31 +0200257 assert_int_equal(1, ly_set_add(&set, strdup("string2"), 0));
Radek Krejci519b0432018-09-18 17:04:57 +0200258 assert_int_equal(2, ly_set_add(&set, "string3", 0));
259
260 /* remove by index ... */
261 /* ... in the middle ... */
Radek Krejci820d2262018-09-20 12:15:31 +0200262 assert_int_equal(LY_SUCCESS, ly_set_rm_index(&set, 1, free));
Radek Krejci519b0432018-09-18 17:04:57 +0200263 assert_int_equal(2, set.count);
264 assert_string_not_equal("string2", set.objs[0]);
265 assert_string_not_equal("string2", set.objs[1]);
266 /* ... last .. */
Radek Krejci820d2262018-09-20 12:15:31 +0200267 assert_int_equal(LY_SUCCESS, ly_set_rm_index(&set, 1, NULL));
Radek Krejci519b0432018-09-18 17:04:57 +0200268 assert_int_equal(1, set.count);
269 assert_string_not_equal("string3", set.objs[0]);
270 /* ... first .. */
Radek Krejci820d2262018-09-20 12:15:31 +0200271 assert_int_equal(LY_SUCCESS, ly_set_rm_index(&set, 0, NULL));
Radek Krejci519b0432018-09-18 17:04:57 +0200272 assert_int_equal(0, set.count);
273
274 /* fill the set */
275 assert_int_equal(0, ly_set_add(&set, str1 = "string1", 0));
276 assert_int_equal(1, ly_set_add(&set, str2 = "string2", 0));
Radek Krejci820d2262018-09-20 12:15:31 +0200277 assert_int_equal(2, ly_set_add(&set, str3 = strdup("string3"), 0));
Radek Krejci519b0432018-09-18 17:04:57 +0200278
279 /* remove by pointer ... */
280 /* ... in the middle ... */
Radek Krejci820d2262018-09-20 12:15:31 +0200281 assert_int_equal(LY_SUCCESS, ly_set_rm(&set, str2, NULL));
Radek Krejci519b0432018-09-18 17:04:57 +0200282 assert_int_equal(2, set.count);
283 assert_string_not_equal("string2", set.objs[0]);
284 assert_string_not_equal("string2", set.objs[1]);
Radek Krejci820d2262018-09-20 12:15:31 +0200285 /* ... last (with destructor) .. */
286 assert_int_equal(LY_SUCCESS, ly_set_rm(&set, str3, free));
Radek Krejci519b0432018-09-18 17:04:57 +0200287 assert_int_equal(1, set.count);
288 assert_string_not_equal("string3", set.objs[0]);
289 /* ... first .. */
Radek Krejci820d2262018-09-20 12:15:31 +0200290 assert_int_equal(LY_SUCCESS, ly_set_rm(&set, str1, NULL));
Radek Krejci519b0432018-09-18 17:04:57 +0200291 assert_int_equal(0, set.count);
292
293 /* cleanup */
294 ly_set_erase(&set, NULL);
295}
296
Radek Krejcie84f12f2018-09-18 14:11:50 +0200297int main(void)
298{
299 const struct CMUnitTest tests[] = {
300 cmocka_unit_test(test_basics),
Radek Krejci519b0432018-09-18 17:04:57 +0200301 cmocka_unit_test(test_duplication),
302 cmocka_unit_test(test_add),
303 cmocka_unit_test(test_merge),
304 cmocka_unit_test(test_rm),
Radek Krejcie84f12f2018-09-18 14:11:50 +0200305 cmocka_unit_test_setup(test_inval, logger_setup),
306 };
307
308 return cmocka_run_group_tests(tests, NULL, NULL);
309}