pacemaker
3.0.0-d8340737c4
Scalable High-Availability cluster resource manager
lib
common
tests
probes
pcmk_is_probe_test.c
Go to the documentation of this file.
1
/*
2
* Copyright 2021-2024 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/probes.h
>
13
#include <
crm/common/unittest_internal.h
>
14
15
static
void
16
is_probe_test(
void
**state)
17
{
18
assert_false(
pcmk_is_probe
(NULL, 0));
19
assert_false(
pcmk_is_probe
(
""
, 0));
20
assert_false(
pcmk_is_probe
(
"blahblah"
, 0));
21
assert_false(
pcmk_is_probe
(
"monitor"
, 1));
22
assert_true(
pcmk_is_probe
(
"monitor"
, 0));
23
}
24
25
PCMK__UNIT_TEST
(NULL, NULL,
26
cmocka_unit_test(is_probe_test))
probes.h
Scheduler API for probes.
PCMK__UNIT_TEST
#define PCMK__UNIT_TEST(group_setup, group_teardown,...)
Definition:
unittest_internal.h:203
crm_internal.h
pcmk_is_probe
bool pcmk_is_probe(const char *task, guint interval)
Check whether an action name and interval represent a probe.
Definition:
probes.c:31
unittest_internal.h
Generated on Wed Jan 8 2025 16:55:39 for pacemaker by
1.8.14