root/lib/common/tests/iso8601/pcmk__readable_interval_test.c

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

DEFINITIONS

This source file includes following definitions.
  1. readable_interval

   1 /*
   2  * Copyright 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 
  14 #include <limits.h>
  15 
  16 static void
  17 readable_interval(void **state)
     /* [previous][next][first][last][top][bottom][index][help] */
  18 {
  19     assert_string_equal(pcmk__readable_interval(0), "0s");
  20     assert_string_equal(pcmk__readable_interval(30000), "30s");
  21     assert_string_equal(pcmk__readable_interval(150000), "2m30s");
  22     assert_string_equal(pcmk__readable_interval(3333), "3.333s");
  23     assert_string_equal(pcmk__readable_interval(UINT_MAX), "49d17h2m47.295s");
  24 }
  25 
  26 PCMK__UNIT_TEST(NULL, NULL,
  27                 cmocka_unit_test(readable_interval))

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