pacemaker 3.0.1-16e74fc4da
Scalable High-Availability cluster resource manager
Loading...
Searching...
No Matches
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 General Public License version 2
7 * or later (GPLv2+) 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:1914
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)