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
|
/*
* 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_to_null(void **state)
{
pcmk__assert_asserts(pcmk__g_strcat(NULL, NULL));
pcmk__assert_asserts(pcmk__g_strcat(NULL, "hello", NULL));
}
static void
add_nothing(void **state)
{
GString *buf = g_string_new(NULL);
// Start with empty string
pcmk__g_strcat(buf, NULL);
assert_string_equal((const char *) buf->str, "");
pcmk__g_strcat(buf, "", NULL);
assert_string_equal((const char *) buf->str, "");
// Start with populated string
g_string_append(buf, "hello");
pcmk__g_strcat(buf, NULL);
assert_string_equal((const char *) buf->str, "hello");
pcmk__g_strcat(buf, "", NULL);
assert_string_equal((const char *) buf->str, "hello");
g_string_free(buf, TRUE);
}
static void
add_words(void **state)
{
GString *buf = g_string_new(NULL);
// Verify a call with multiple words
pcmk__g_strcat(buf, "hello", " ", NULL);
assert_string_equal((const char *) buf->str, "hello ");
// Verify that a second call doesn't overwrite the first one
pcmk__g_strcat(buf, "world", NULL);
assert_string_equal((const char *) buf->str, "hello world");
g_string_free(buf, TRUE);
}
static void
stop_early(void **state)
{
GString *buf = g_string_new(NULL);
// NULL anywhere after buf in the arg list should cause a return
pcmk__g_strcat(buf, "hello", NULL, " world", NULL);
assert_string_equal((const char *) buf->str, "hello");
g_string_free(buf, TRUE);
}
PCMK__UNIT_TEST(NULL, NULL,
cmocka_unit_test(add_to_null),
cmocka_unit_test(add_nothing),
cmocka_unit_test(add_words),
cmocka_unit_test(stop_early))
|