pacemaker
2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
lib
common
tests
strings
pcmk__starts_with_test.c
Go to the documentation of this file.
1
/*
2
* Copyright 2021 the Pacemaker project contributors
3
*
4
* The version control history for this file may have further details.
5
*
6
* This source code is licensed under the GNU General Public License version 2
7
* or later (GPLv2+) WITHOUT ANY WARRANTY.
8
*/
9
10
#include <
crm_internal.h
>
11
12
#include <
crm/common/unittest_internal.h
>
13
14
static
void
15
bad_input(
void
**state) {
16
assert_false(
pcmk__starts_with
(NULL,
"x"
));
17
assert_false(
pcmk__starts_with
(
"abc"
, NULL));
18
}
19
20
static
void
21
starts_with(
void
**state) {
22
assert_true(
pcmk__starts_with
(
"abc"
,
"a"
));
23
assert_true(
pcmk__starts_with
(
"abc"
,
"ab"
));
24
assert_true(
pcmk__starts_with
(
"abc"
,
"abc"
));
25
26
assert_false(
pcmk__starts_with
(
"abc"
,
"A"
));
27
assert_false(
pcmk__starts_with
(
"abc"
,
"bc"
));
28
29
assert_false(
pcmk__starts_with
(
""
,
"x"
));
30
assert_true(
pcmk__starts_with
(
"xyz"
,
""
));
31
}
32
33
PCMK__UNIT_TEST
(NULL, NULL,
34
cmocka_unit_test(bad_input),
35
cmocka_unit_test(starts_with))
PCMK__UNIT_TEST
PCMK__UNIT_TEST(NULL, NULL, cmocka_unit_test(bad_input), cmocka_unit_test(not_found), cmocka_unit_test(find_attrB), cmocka_unit_test(find_attrA_matching))
crm_internal.h
unittest_internal.h
pcmk__starts_with
bool pcmk__starts_with(const char *str, const char *prefix)
Check whether a string starts with a certain sequence.
Definition:
strings.c:481
Generated on Tue Dec 19 2023 17:32:56 for pacemaker by
1.8.14