pacemaker  2.1.7-0f7f88312f
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 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 
15 static void
16 pcmk__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 
35 PCMK__UNIT_TEST(NULL, NULL,
36  cmocka_unit_test(pcmk__effective_rc_test))
API related to resource agents.
Service active and promoted.
Definition: results.h:178
Service promoted but more likely to fail soon.
Definition: results.h:181
PCMK__UNIT_TEST(NULL, NULL, cmocka_unit_test(bad_input), cmocka_unit_test(not_found), cmocka_unit_test(find_attrB), cmocka_unit_test(find_attrA_matching))
int pcmk__effective_rc(int rc)
Definition: agents.c:71
Service active but more likely to fail soon.
Definition: results.h:180
Success.
Definition: results.h:170
Action is pending.
Definition: results.h:189