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
|
/*
* Copyright (c) 2015 Balabit
* Copyright (c) 2015 Balázs Scheidler
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* As an additional exemption you are allowed to compile & link against the
* OpenSSL libraries as published by the OpenSSL project. See the file
* COPYING for details.
*
*/
#include "string-list.h"
#include "testutils.h"
static void
test_string_array_to_list_converts_to_an_equivalent_glist(void)
{
const gchar *arr[] = {
"foo",
"bar",
"baz",
NULL
};
GList *l;
l = string_array_to_list(arr);
assert_gint(g_list_length(l), 3, "converted list is not the expected length");
assert_string(l->data, "foo", "first element is expected to be foo");
assert_string(l->next->data, "bar", "second element is expected to be bar");
assert_string(l->next->next->data, "baz", "third element is expected to be baz");
string_list_free(l);
}
static void
test_clone_string_array_duplicates_elements_while_leaving_token_values_intact(void)
{
const gchar *arr[] = {
"foo",
"bar",
"baz",
NULL
};
GList *l, *l2;
l = string_array_to_list(arr);
l = g_list_append(l, GUINT_TO_POINTER(1));
l = g_list_append(l, GUINT_TO_POINTER(2));
l2 = string_list_clone(l);
string_list_free(l);
assert_gint(g_list_length(l2), 5, "converted list is not the expected length");
assert_string(l2->data, "foo", "first element is expected to be foo");
assert_string(l2->next->data, "bar", "second element is expected to be bar");
assert_string(l2->next->next->data, "baz", "third element is expected to be baz");
assert_gint(GPOINTER_TO_UINT(l2->next->next->next->data), 1, "fourth element is expected to be a token, with a value of 1");
assert_gint(GPOINTER_TO_UINT(l2->next->next->next->next->data), 2, "fifth element is expected to be a token, with a value of 2");
string_list_free(l2);
}
int
main(int argc, char *argv[])
{
test_string_array_to_list_converts_to_an_equivalent_glist();
test_clone_string_array_duplicates_elements_while_leaving_token_values_intact();
}
|