Page Menu
Home
ClusterLabs Projects
Search
Configure Global Search
Log In
Files
F7988983
pcmk__str_any_of_test.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
pcmk__str_any_of_test.c
View Options
/*
* Copyright 2020-2021 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU Lesser General Public License
* version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
*/
#include <crm_internal.h>
#include <crm/common/unittest_internal.h>
static void
empty_input_list(void **state) {
assert_false(pcmk__strcase_any_of("xxx", NULL));
assert_false(pcmk__str_any_of("xxx", NULL));
assert_false(pcmk__strcase_any_of("", NULL));
assert_false(pcmk__str_any_of("", NULL));
}
static void
empty_string(void **state) {
assert_false(pcmk__strcase_any_of("", "xxx", "yyy", NULL));
assert_false(pcmk__str_any_of("", "xxx", "yyy", NULL));
assert_false(pcmk__strcase_any_of(NULL, "xxx", "yyy", NULL));
assert_false(pcmk__str_any_of(NULL, "xxx", "yyy", NULL));
}
static void
in_list(void **state) {
assert_true(pcmk__strcase_any_of("xxx", "aaa", "bbb", "xxx", NULL));
assert_true(pcmk__str_any_of("xxx", "aaa", "bbb", "xxx", NULL));
assert_true(pcmk__strcase_any_of("XXX", "aaa", "bbb", "xxx", NULL));
}
static void
not_in_list(void **state) {
assert_false(pcmk__strcase_any_of("xxx", "aaa", "bbb", NULL));
assert_false(pcmk__str_any_of("xxx", "aaa", "bbb", NULL));
assert_false(pcmk__str_any_of("AAA", "aaa", "bbb", NULL));
}
PCMK__UNIT_TEST(NULL, NULL,
cmocka_unit_test(empty_input_list),
cmocka_unit_test(empty_string),
cmocka_unit_test(in_list),
cmocka_unit_test(not_in_list))
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sat, Oct 25, 2:07 AM (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2610784
Default Alt Text
pcmk__str_any_of_test.c (1 KB)
Attached To
Mode
rP Pacemaker
Attached
Detach File
Event Timeline
Log In to Comment