pacemaker 2.1.5-a3f44794f94
Scalable High-Availability cluster resource manager
pcmk__effective_rc_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/common/agents.h>
14
15static void
16pcmk__effective_rc_test(void **state) {
17 /* All other PCMK_OCF_* values after UNKNOWN are deprecated and no longer used,
18 * so probably not worth testing them.
19 */
20 assert_int_equal(PCMK_OCF_OK, pcmk__effective_rc(PCMK_OCF_OK));
24
25 /* There's nothing that says pcmk__effective_rc is restricted to PCMK_OCF_*
26 * values. That's just how it's used. Let's check some values outside
27 * that range just to be sure.
28 */
29 assert_int_equal(-1, pcmk__effective_rc(-1));
30 assert_int_equal(255, pcmk__effective_rc(255));
31 assert_int_equal(INT_MAX, pcmk__effective_rc(INT_MAX));
32 assert_int_equal(INT_MIN, pcmk__effective_rc(INT_MIN));
33}
34
35PCMK__UNIT_TEST(NULL, NULL,
36 cmocka_unit_test(pcmk__effective_rc_test))
API related to resource agents.
int pcmk__effective_rc(int rc)
Definition: agents.c:71
@ PCMK_OCF_RUNNING_PROMOTED
Service active and promoted.
Definition: results.h:172
@ PCMK_OCF_DEGRADED_PROMOTED
Service promoted but more likely to fail soon.
Definition: results.h:175
@ PCMK_OCF_DEGRADED
Service active but more likely to fail soon.
Definition: results.h:174
@ PCMK_OCF_OK
Success.
Definition: results.h:164
@ PCMK_OCF_UNKNOWN
Action is pending.
Definition: results.h:183
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)