root/lib/common/tests/flags/pcmk__clear_flags_as_test.c

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

DEFINITIONS

This source file includes following definitions.
  1. clear_none
  2. clear_some
  3. clear_all
  4. main

   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 <stdarg.h>
  13 #include <stddef.h>
  14 #include <stdint.h>
  15 #include <setjmp.h>
  16 #include <cmocka.h>
  17 
  18 static void
  19 clear_none(void **state) {
     /* [previous][next][first][last][top][bottom][index][help] */
  20     assert_int_equal(pcmk__clear_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
  21                                           "test", 0x0f0, 0x00f, NULL), 0x0f0);
  22     assert_int_equal(pcmk__clear_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
  23                                           "test", 0x0f0, 0xf0f, NULL), 0x0f0);
  24 }
  25 
  26 static void
  27 clear_some(void **state) {
     /* [previous][next][first][last][top][bottom][index][help] */
  28     assert_int_equal(pcmk__clear_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
  29                                           "test", 0x0f0, 0x020, NULL), 0x0d0);
  30     assert_int_equal(pcmk__clear_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
  31                                           "test", 0x0f0, 0x030, NULL), 0x0c0);
  32 }
  33 
  34 static void
  35 clear_all(void **state) {
     /* [previous][next][first][last][top][bottom][index][help] */
  36     assert_int_equal(pcmk__clear_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
  37                                           "test", 0x0f0, 0x0f0, NULL), 0x000);
  38     assert_int_equal(pcmk__clear_flags_as(__func__, __LINE__, LOG_TRACE, "Test",
  39                                           "test", 0x0f0, 0xfff, NULL), 0x000);
  40 }
  41 
  42 int
  43 main(int argc, char **argv)
     /* [previous][next][first][last][top][bottom][index][help] */
  44 {
  45     const struct CMUnitTest tests[] = {
  46         cmocka_unit_test(clear_none),
  47         cmocka_unit_test(clear_some),
  48         cmocka_unit_test(clear_all),
  49     };
  50 
  51     cmocka_set_message_output(CM_OUTPUT_TAP);
  52     return cmocka_run_group_tests(tests, NULL, NULL);
  53 }

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