root/lib/common/tests/utils/pcmk__lastfailure_name_test.c

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

DEFINITIONS

This source file includes following definitions.
  1. null_arguments
  2. standard_usage

   1 /*
   2  * Copyright 2023 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 General Public License version 2
   7  * or later (GPLv2+) WITHOUT ANY WARRANTY.
   8  */
   9 
  10 #include <crm_internal.h>
  11 
  12 #include <crm/common/unittest_internal.h>
  13 
  14 static void
  15 null_arguments(void **state)
     /* [previous][next][first][last][top][bottom][index][help] */
  16 {
  17     assert_null(pcmk__lastfailure_name(NULL, NULL, 30000));
  18     assert_null(pcmk__lastfailure_name("myrsc", NULL, 30000));
  19     assert_null(pcmk__lastfailure_name(NULL, "monitor", 30000));
  20 }
  21 
  22 static void
  23 standard_usage(void **state)
     /* [previous][next][first][last][top][bottom][index][help] */
  24 {
  25     char *s = NULL;
  26 
  27     assert_string_equal(pcmk__lastfailure_name("myrsc", "monitor", 30000),
  28                         "last-failure-myrsc#monitor_30000");
  29 
  30     free(s);
  31 }
  32 
  33 PCMK__UNIT_TEST(NULL, NULL,
  34                 cmocka_unit_test(null_arguments),
  35                 cmocka_unit_test(standard_usage))

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