This source file includes following definitions.
- is_pcmk_acl_required
- main
1
2
3
4
5
6
7
8
9
10 #include <crm_internal.h>
11 #include <crm/common/acl.h>
12
13 #include <stdarg.h>
14 #include <stddef.h>
15 #include <stdint.h>
16 #include <setjmp.h>
17 #include <cmocka.h>
18
19 static void
20 is_pcmk_acl_required(void **state)
21 {
22 assert_false(pcmk_acl_required(NULL));
23 assert_false(pcmk_acl_required(""));
24 assert_true(pcmk_acl_required("123"));
25 assert_false(pcmk_acl_required(CRM_DAEMON_USER));
26 assert_false(pcmk_acl_required("root"));
27 }
28
29 int
30 main(int argc, char **argv)
31 {
32 const struct CMUnitTest tests[] = {
33 cmocka_unit_test(is_pcmk_acl_required),
34 };
35
36 cmocka_set_message_output(CM_OUTPUT_TAP);
37 return cmocka_run_group_tests(tests, NULL, NULL);
38 }