pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
pe_base_name_end_test.c
Go to the documentation of this file.
1/*
2 * Copyright 2022 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 Lesser General Public License
7 * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8 */
9
10#include <crm_internal.h>
11
14
15static void
16bad_args(void **state) {
17 assert_null(pe_base_name_end(NULL));
18 assert_null(pe_base_name_end(""));
19}
20
21static void
22no_suffix(void **state) {
23 assert_string_equal(pe_base_name_end("rsc"), "c");
24 assert_string_equal(pe_base_name_end("rsc0"), "0");
25}
26
27static void
28has_suffix(void **state) {
29 assert_string_equal(pe_base_name_end("rsc:0"), "c:0");
30 assert_string_equal(pe_base_name_end("rsc:100"), "c:100");
31}
32
33PCMK__UNIT_TEST(NULL, NULL,
34 cmocka_unit_test(bad_args),
35 cmocka_unit_test(no_suffix),
36 cmocka_unit_test(has_suffix))
const char * pe_base_name_end(const char *id)
Definition: unpack.c:1607
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)