pacemaker 3.0.1-16e74fc4da
Scalable High-Availability cluster resource manager
Loading...
Searching...
No Matches
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 General Public License version 2
7 * or later (GPLv2+) 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:63
@ PCMK_OCF_RUNNING_PROMOTED
Service active and promoted.
Definition results.h:188
@ PCMK_OCF_DEGRADED_PROMOTED
Service promoted but more likely to fail soon.
Definition results.h:191
@ PCMK_OCF_DEGRADED
Service active but more likely to fail soon.
Definition results.h:190
@ PCMK_OCF_OK
Success.
Definition results.h:174
@ PCMK_OCF_UNKNOWN
Action is pending.
Definition results.h:199
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)