2 Unix SMB/CIFS implementation.
6 Copyright (C) Jelmer Vernooij 2005
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "torture/torture.h"
25 #include "param/param.h"
27 struct test_list_element
{
28 const char *list_as_string
;
29 const char *separators
;
33 const struct test_list_element test_lists_strings
[] = {
39 .list_as_string
= "foo",
40 .list
= { "foo", NULL
}
43 .list_as_string
= "foo bar",
44 .list
= { "foo", "bar", NULL
}
47 .list_as_string
= "foo bar",
48 .list
= { "foo bar", NULL
},
52 .list_as_string
= "\"foo bar\"",
53 .list
= { "\"foo", "bar\"", NULL
}
56 .list_as_string
= "\"foo bar\",comma\ttab",
57 .list
= { "\"foo", "bar\"", "comma", "tab", NULL
}
60 .list_as_string
= "\"foo bar\",comma;semicolon",
61 .list
= { "\"foo bar\",comma", "semicolon", NULL
},
66 const struct test_list_element test_lists_shell_strings
[] = {
72 .list_as_string
= "foo",
73 .list
= { "foo", NULL
}
76 .list_as_string
= "foo bar",
77 .list
= { "foo", "bar", NULL
}
80 .list_as_string
= "foo bar",
81 .list
= { "foo bar", NULL
},
85 .list_as_string
= "\"foo bar\"",
86 .list
= { "foo bar", NULL
}
89 .list_as_string
= "foo bar \"bla \"",
90 .list
= { "foo", "bar", "bla ", NULL
}
93 .list_as_string
= "foo \"\" bla",
94 .list
= { "foo", "", "bla", NULL
},
97 .list_as_string
= "bla \"\"\"\" blie",
98 .list
= { "bla", "", "", "blie", NULL
},
102 static bool test_lists_shell(struct torture_context
*tctx
, const void *data
)
104 const struct test_list_element
*element
= data
;
106 char **ret1
, **ret2
, *tmp
;
108 TALLOC_CTX
*mem_ctx
= tctx
;
110 ret1
= str_list_make_shell(mem_ctx
, element
->list_as_string
, element
->separators
);
112 torture_assert(tctx
, ret1
, "str_list_make_shell() must not return NULL");
113 tmp
= str_list_join_shell(mem_ctx
, (const char **) ret1
, element
->separators
? *element
->separators
: ' ');
114 ret2
= str_list_make_shell(mem_ctx
, tmp
, element
->separators
);
116 if ((ret1
== NULL
|| ret2
== NULL
) && ret2
!= ret1
) {
120 for (j
= 0; ret1
[j
] && ret2
[j
]; j
++) {
121 if (strcmp(ret1
[j
], ret2
[j
]) != 0) {
127 if (ret1
[j
] || ret2
[j
])
131 torture_assert(tctx
, match
, talloc_asprintf(tctx
,
132 "str_list_{make,join}_shell: Error double parsing, first run:\n%s\nSecond run: \n%s", element
->list_as_string
, tmp
));
133 torture_assert(tctx
, str_list_equal((const char * const *) ret1
,
135 talloc_asprintf(tctx
,
136 "str_list_make_shell(%s) failed to create correct list",
137 element
->list_as_string
));
142 static bool test_list_make(struct torture_context
*tctx
, const void *data
)
144 const struct test_list_element
*element
= data
;
147 result
= str_list_make(tctx
, element
->list_as_string
, element
->separators
);
148 torture_assert(tctx
, result
, "str_list_make() must not return NULL");
149 torture_assert(tctx
, str_list_equal((const char * const *) result
,
151 talloc_asprintf(tctx
,
152 "str_list_make(%s) failed to create correct list",
153 element
->list_as_string
));
157 static bool test_list_copy(struct torture_context
*tctx
)
160 const char *list
[] = { "foo", "bar", NULL
};
161 const char *empty_list
[] = { NULL
};
162 const char **null_list
= NULL
;
164 result
= (const char **)str_list_copy(tctx
, list
);
165 torture_assert_int_equal(tctx
, str_list_length(result
), 2, "list length");
166 torture_assert_str_equal(tctx
, result
[0], "foo", "element 0");
167 torture_assert_str_equal(tctx
, result
[1], "bar", "element 1");
168 torture_assert_str_equal(tctx
, result
[2], NULL
, "element 2");
170 result
= (const char **)str_list_copy(tctx
, empty_list
);
171 torture_assert_int_equal(tctx
, str_list_length(result
), 0, "list length");
172 torture_assert_str_equal(tctx
, result
[0], NULL
, "element 0");
174 result
= (const char **)str_list_copy(tctx
, null_list
);
175 torture_assert(tctx
, result
== NULL
, "result NULL");
180 static bool test_list_make_empty(struct torture_context
*tctx
)
184 result
= str_list_make_empty(tctx
);
185 torture_assert(tctx
, result
, "str_list_make_empty() must not return NULL");
186 torture_assert(tctx
, result
[0] == NULL
, "first element in str_list_make_empty() result must be NULL");
188 result
= str_list_make(tctx
, NULL
, NULL
);
189 torture_assert(tctx
, result
, "str_list_make() must not return NULL");
190 torture_assert(tctx
, result
[0] == NULL
, "first element in str_list_make(ctx, NULL, NULL) result must be NULL");
192 result
= str_list_make(tctx
, "", NULL
);
193 torture_assert(tctx
, result
, "str_list_make() must not return NULL");
194 torture_assert(tctx
, result
[0] == NULL
, "first element in str_list_make(ctx, "", NULL) result must be NULL");
199 static bool test_list_make_single(struct torture_context
*tctx
)
203 result
= str_list_make_single(tctx
, "foo");
205 torture_assert(tctx
, result
, "str_list_make_single() must not return NULL");
206 torture_assert_str_equal(tctx
, result
[0], "foo", "element 0");
207 torture_assert(tctx
, result
[1] == NULL
, "second element in result must be NULL");
212 static bool test_list_copy_const(struct torture_context
*tctx
)
215 const char *list
[] = {
222 result
= str_list_copy_const(tctx
, list
);
223 torture_assert(tctx
, result
, "str_list_copy() must not return NULL");
224 torture_assert(tctx
, str_list_equal(result
, list
),
225 "str_list_copy() failed");
230 static bool test_list_length(struct torture_context
*tctx
)
232 const char *list
[] = {
239 const char *list2
[] = {
242 torture_assert_int_equal(tctx
, str_list_length(list
), 4,
243 "str_list_length() failed");
245 torture_assert_int_equal(tctx
, str_list_length(list2
), 0,
246 "str_list_length() failed");
248 torture_assert_int_equal(tctx
, str_list_length(NULL
), 0,
249 "str_list_length() failed");
254 static bool test_list_add(struct torture_context
*tctx
)
256 const char **result
, **result2
;
257 const char *list
[] = {
264 result
= (const char **) str_list_make(tctx
, "element_0, element_1, element_2", NULL
);
265 torture_assert(tctx
, result
, "str_list_make() must not return NULL");
266 result2
= str_list_add((const char **) result
, "element_3");
267 torture_assert(tctx
, result2
, "str_list_add() must not return NULL");
268 torture_assert(tctx
, str_list_equal(result2
, list
),
269 "str_list_add() failed");
274 static bool test_list_add_const(struct torture_context
*tctx
)
276 const char **result
, **result2
;
277 const char *list
[] = {
284 result
= (const char **) str_list_make(tctx
, "element_0, element_1, element_2", NULL
);
285 torture_assert(tctx
, result
, "str_list_make() must not return NULL");
286 result2
= str_list_add_const(result
, "element_3");
287 torture_assert(tctx
, result2
, "str_list_add_const() must not return NULL");
288 torture_assert(tctx
, str_list_equal(result2
, list
),
289 "str_list_add() failed");
294 static bool test_list_remove(struct torture_context
*tctx
)
297 const char *list
[] = {
303 result
= (const char **) str_list_make(tctx
, "element_0, element_1, element_2, element_3", NULL
);
304 torture_assert(tctx
, result
, "str_list_make() must not return NULL");
305 str_list_remove(result
, "element_2");
306 torture_assert(tctx
, str_list_equal(result
, list
),
307 "str_list_remove() failed");
312 static bool test_list_check(struct torture_context
*tctx
)
314 const char *list
[] = {
320 torture_assert(tctx
, str_list_check(list
, "element_1"),
321 "str_list_check() failed");
326 static bool test_list_check_ci(struct torture_context
*tctx
)
328 const char *list
[] = {
334 torture_assert(tctx
, str_list_check_ci(list
, "ELEMENT_1"),
335 "str_list_check_ci() failed");
340 static bool test_list_unique(struct torture_context
*tctx
)
343 const char *list
[] = {
349 const char *list_dup
[] = {
360 result
= (const char **) str_list_copy(tctx
, list_dup
);
361 /* We must copy the list, as str_list_unique does a talloc_realloc() on it's parameter */
362 result
= str_list_unique(result
);
363 torture_assert(tctx
, result
, "str_list_unique() must not return NULL");
365 torture_assert(tctx
, str_list_equal(list
, result
),
366 "str_list_unique() failed");
371 static bool test_list_unique_2(struct torture_context
*tctx
)
376 const char **list
= (const char **)str_list_make_empty(tctx
);
377 const char **list_dup
= (const char **)str_list_make_empty(tctx
);
379 count
= lpcfg_parm_int(tctx
->lp_ctx
, NULL
, "list_unique", "count", 9);
380 num_dups
= lpcfg_parm_int(tctx
->lp_ctx
, NULL
, "list_unique", "dups", 7);
381 torture_comment(tctx
, "test_list_unique_2() with %d elements and %d dups\n", count
, num_dups
);
383 for (i
= 0; i
< count
; i
++) {
384 list
= str_list_add_const(list
, (const char *)talloc_asprintf(tctx
, "element_%03d", i
));
387 for (i
= 0; i
< num_dups
; i
++) {
388 list_dup
= str_list_append(list_dup
, list
);
391 result
= (const char **)str_list_copy(tctx
, list_dup
);
392 /* We must copy the list, as str_list_unique does a talloc_realloc() on it's parameter */
393 result
= str_list_unique(result
);
394 torture_assert(tctx
, result
, "str_list_unique() must not return NULL");
396 torture_assert(tctx
, str_list_equal(list
, result
),
397 "str_list_unique() failed");
402 static bool test_list_append(struct torture_context
*tctx
)
405 const char *list
[] = {
411 const char *list2
[] = {
417 const char *list_combined
[] = {
426 result
= (const char **) str_list_copy(tctx
, list
);
427 torture_assert(tctx
, result
, "str_list_copy() must not return NULL");
428 result
= str_list_append(result
, list2
);
429 torture_assert(tctx
, result
, "str_list_append() must not return NULL");
430 torture_assert(tctx
, str_list_equal(list_combined
, result
),
431 "str_list_unique() failed");
436 static bool test_list_append_const(struct torture_context
*tctx
)
439 const char *list
[] = {
445 const char *list2
[] = {
451 const char *list_combined
[] = {
460 result
= (const char **) str_list_copy(tctx
, list
);
461 torture_assert(tctx
, result
, "str_list_copy() must not return NULL");
462 result
= str_list_append_const(result
, list2
);
463 torture_assert(tctx
, result
, "str_list_append_const() must not return NULL");
464 torture_assert(tctx
, str_list_equal(list_combined
, result
),
465 "str_list_unique() failed");
470 struct torture_suite
*torture_local_util_strlist(TALLOC_CTX
*mem_ctx
)
472 struct torture_suite
*suite
= torture_suite_create(mem_ctx
, "strlist");
475 for (i
= 0; i
< ARRAY_SIZE(test_lists_shell_strings
); i
++) {
477 name
= talloc_asprintf(suite
, "lists_shell(%s)",
478 test_lists_shell_strings
[i
].list_as_string
);
479 torture_suite_add_simple_tcase_const(suite
, name
,
480 test_lists_shell
, &test_lists_shell_strings
[i
]);
483 for (i
= 0; i
< ARRAY_SIZE(test_lists_strings
); i
++) {
485 name
= talloc_asprintf(suite
, "list_make(%s)",
486 test_lists_strings
[i
].list_as_string
);
487 torture_suite_add_simple_tcase_const(suite
, name
,
488 test_list_make
, &test_lists_strings
[i
]);
491 torture_suite_add_simple_test(suite
, "list_copy", test_list_copy
);
492 torture_suite_add_simple_test(suite
, "make_empty", test_list_make_empty
);
493 torture_suite_add_simple_test(suite
, "make_single", test_list_make_single
);
494 torture_suite_add_simple_test(suite
, "list_copy_const", test_list_copy_const
);
495 torture_suite_add_simple_test(suite
, "list_length", test_list_length
);
496 torture_suite_add_simple_test(suite
, "list_add", test_list_add
);
497 torture_suite_add_simple_test(suite
, "list_add_const", test_list_add_const
);
498 torture_suite_add_simple_test(suite
, "list_remove", test_list_remove
);
499 torture_suite_add_simple_test(suite
, "list_check", test_list_check
);
500 torture_suite_add_simple_test(suite
, "list_check_ci", test_list_check_ci
);
501 torture_suite_add_simple_test(suite
, "list_unique", test_list_unique
);
502 torture_suite_add_simple_test(suite
, "list_unique_2", test_list_unique_2
);
503 torture_suite_add_simple_test(suite
, "list_append", test_list_append
);
504 torture_suite_add_simple_test(suite
, "list_append_const", test_list_append_const
);