1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* Copyright 2020-2022 the Pacemaker project contributors
*
* The version control history for this file may have further details.
*
* This source code is licensed under the GNU General Public License version 2
* or later (GPLv2+) WITHOUT ANY WARRANTY.
*/
#include <crm_internal.h>
#include <crm/common/unittest_internal.h>
static void
add_words(void **state)
{
GString *list = NULL;
pcmk__add_word(&list, 16, "hello");
pcmk__add_word(&list, 16, "world");
assert_int_equal(strcmp((const char *) list->str, "hello world"), 0);
g_string_free(list, TRUE);
}
static void
add_with_no_len(void **state)
{
GString *list = NULL;
pcmk__add_word(&list, 0, "hello");
pcmk__add_word(&list, 0, "world");
assert_int_equal(strcmp((const char *) list->str, "hello world"), 0);
g_string_free(list, TRUE);
}
static void
add_nothing(void **state)
{
GString *list = NULL;
pcmk__add_word(&list, 0, "hello");
pcmk__add_word(&list, 0, NULL);
pcmk__add_word(&list, 0, "");
assert_int_equal(strcmp((const char *) list->str, "hello"), 0);
g_string_free(list, TRUE);
}
static void
add_with_null(void **state)
{
GString *list = NULL;
pcmk__add_separated_word(&list, 32, "hello", NULL);
pcmk__add_separated_word(&list, 32, "world", NULL);
pcmk__add_separated_word(&list, 32, "I am a unit test", NULL);
assert_int_equal(strcmp((const char *) list->str,
"hello world I am a unit test"), 0);
g_string_free(list, TRUE);
}
static void
add_with_comma(void **state)
{
GString *list = NULL;
pcmk__add_separated_word(&list, 32, "hello", ",");
pcmk__add_separated_word(&list, 32, "world", ",");
pcmk__add_separated_word(&list, 32, "I am a unit test", ",");
assert_int_equal(strcmp((const char *) list->str,
"hello,world,I am a unit test"), 0);
g_string_free(list, TRUE);
}
static void
add_with_comma_and_space(void **state)
{
GString *list = NULL;
pcmk__add_separated_word(&list, 32, "hello", ", ");
pcmk__add_separated_word(&list, 32, "world", ", ");
pcmk__add_separated_word(&list, 32, "I am a unit test", ", ");
assert_int_equal(strcmp((const char *) list->str,
"hello, world, I am a unit test"), 0);
g_string_free(list, TRUE);
}
PCMK__UNIT_TEST(NULL, NULL,
cmocka_unit_test(add_words),
cmocka_unit_test(add_with_no_len),
cmocka_unit_test(add_nothing),
cmocka_unit_test(add_with_null),
cmocka_unit_test(add_with_comma),
cmocka_unit_test(add_with_comma_and_space))
|