pacemaker  2.1.4-dc6eb4362
Scalable High-Availability cluster resource manager
pcmk_acl_required_test.c
Go to the documentation of this file.
1 /*
2  * Copyright 2020-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 #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 }
Low-level API for XML Access Control Lists (ACLs)
#define CRM_DAEMON_USER
Definition: config.h:30
int main(int argc, char **argv)
bool pcmk_acl_required(const char *user)
Check whether ACLs are required for a given user.
Definition: acl.c:683