root/lib/common/tests/acl/pcmk_acl_required_test.c

/* [previous][next][first][last][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. is_pcmk_acl_required

   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 
  12 #include <crm/common/unittest_internal.h>
  13 #include <crm/common/acl.h>
  14 
  15 static void
  16 is_pcmk_acl_required(void **state)
     /* [previous][next][first][last][top][bottom][index][help] */
  17 {
  18     assert_false(pcmk_acl_required(NULL));
  19     assert_false(pcmk_acl_required(""));
  20     assert_true(pcmk_acl_required("123"));
  21     assert_false(pcmk_acl_required(CRM_DAEMON_USER));
  22     assert_false(pcmk_acl_required("root"));
  23 }
  24 
  25 PCMK__UNIT_TEST(NULL, NULL,
  26                 cmocka_unit_test(is_pcmk_acl_required))

/* [previous][next][first][last][top][bottom][index][help] */