pacemaker
2.1.7-0f7f88312f
Scalable High-Availability cluster resource manager
lib
common
tests
actions
pcmk_is_probe_test.c
Go to the documentation of this file.
1
/*
2
* Copyright 2021 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
12
#include <
crm/common/unittest_internal.h
>
13
14
static
void
15
is_probe_test(
void
**state)
16
{
17
assert_false(
pcmk_is_probe
(NULL, 0));
18
assert_false(
pcmk_is_probe
(
""
, 0));
19
assert_false(
pcmk_is_probe
(
"blahblah"
, 0));
20
assert_false(
pcmk_is_probe
(
"monitor"
, 1));
21
assert_true(
pcmk_is_probe
(
"monitor"
, 0));
22
}
23
24
PCMK__UNIT_TEST
(NULL, NULL,
25
cmocka_unit_test(is_probe_test))
pcmk_is_probe
bool pcmk_is_probe(const char *task, guint interval)
Definition:
actions.c:496
PCMK__UNIT_TEST
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))
crm_internal.h
unittest_internal.h
Generated on Tue Dec 19 2023 17:32:56 for pacemaker by
1.8.14