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
  2. main

   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 <limits.h>
  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 readable_interval(void **state)
     /* [previous][next][first][last][top][bottom][index][help] */
  21 {
  22     assert_string_equal(pcmk__readable_interval(0), "0s");
  23     assert_string_equal(pcmk__readable_interval(30000), "30s");
  24     assert_string_equal(pcmk__readable_interval(150000), "2m30s");
  25     assert_string_equal(pcmk__readable_interval(3333), "3.333s");
  26     assert_string_equal(pcmk__readable_interval(UINT_MAX), "49d17h2m47.295s");
  27 }
  28 
  29 int
  30 main(int argc, char **argv)
     /* [previous][next][first][last][top][bottom][index][help] */
  31 {
  32     const struct CMUnitTest tests[] = {
  33         cmocka_unit_test(readable_interval),
  34     };
  35 
  36     cmocka_set_message_output(CM_OUTPUT_TAP);
  37     return cmocka_run_group_tests(tests, NULL, NULL);
  38 }

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