pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
crm_meta_name_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
13#include <crm/msg_xml.h>
14
15static void
16empty_params(void **state)
17{
18 assert_null(crm_meta_name(NULL));
19}
20
21static void
22standard_usage(void **state)
23{
24 char *s = NULL;
25
27 assert_string_equal(s, "CRM_meta_notify");
28 free(s);
29
31 assert_string_equal(s, "CRM_meta_resource_stickiness");
32 free(s);
33
34 s = crm_meta_name("blah");
35 assert_string_equal(s, "CRM_meta_blah");
36 free(s);
37}
38
39PCMK__UNIT_TEST(NULL, NULL,
40 cmocka_unit_test(empty_params),
41 cmocka_unit_test(standard_usage))
char * crm_meta_name(const char *field)
Definition: utils.c:468
#define XML_RSC_ATTR_NOTIFY
Definition: msg_xml.h:238
#define XML_RSC_ATTR_STICKINESS
Definition: msg_xml.h:239
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)