pacemaker  2.1.4-dc6eb4362
Scalable High-Availability cluster resource manager
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 Lesser General Public License
7  * version 2.1 or later (LGPLv2.1+) WITHOUT ANY WARRANTY.
8  */
9 
10 #include <crm_internal.h>
11 
12 #include <stdarg.h>
13 #include <stddef.h>
14 #include <stdint.h>
15 #include <stdlib.h>
16 #include <setjmp.h>
17 #include <cmocka.h>
18 
19 static void
20 is_probe_test(void **state)
21 {
22  assert_false(pcmk_is_probe(NULL, 0));
23  assert_false(pcmk_is_probe("", 0));
24  assert_false(pcmk_is_probe("blahblah", 0));
25  assert_false(pcmk_is_probe("monitor", 1));
26  assert_true(pcmk_is_probe("monitor", 0));
27 }
28 
29 int main(int argc, char **argv)
30 {
31  const struct CMUnitTest tests[] = {
32  cmocka_unit_test(is_probe_test),
33  };
34 
35  cmocka_set_message_output(CM_OUTPUT_TAP);
36  return cmocka_run_group_tests(tests, NULL, NULL);
37 }
bool pcmk_is_probe(const char *task, guint interval)
Definition: operations.c:542
int main(int argc, char **argv)