/*
* Copyright ( C ) 2022 , Red Hat , Inc .
*
* 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 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 , see < http : //www.gnu.org/licenses/>.
*/
#include <locale.h>
#include <gtk/gtk.h>
static GQuark changes_quark;
static void
items_changed_cb (GListModel *model,
guint position,
guint removed,
guint added)
{
GString *changes;
g_assert_true (removed != 0 || added != 0 );
changes = g_object_get_qdata (G_OBJECT (model), changes_quark);
if (changes->len)
g_string_append (changes, ", " );
if (removed == 1 && added == 0 )
{
g_string_append_printf (changes, "-%u" , position);
}
else if (removed == 0 && added == 1 )
{
g_string_append_printf (changes, "+%u" , position);
}
else
{
g_string_append_printf (changes, "%u" , position);
if (removed > 0 )
g_string_append_printf (changes, "-%u" , removed);
if (added > 0 )
g_string_append_printf (changes, "+%u" , added);
}
}
#define assert_changes(model, expected) G_STMT_START{ \
GString *changes = g_object_get_qdata (G_OBJECT (model), changes_quark); \
if (!g_str_equal (changes->str, expected)) \
g_assertion_message_cmpstr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \
#model " == " #expected , changes->str, "==" , expected); \
g_string_set_size (changes, 0 ); \
}G_STMT_END
static void
free_changes (gpointer data)
{
GString *s = data;
g_string_free (s, TRUE );
}
static void
test_change (void )
{
GtkWidget *box;
GListModel *model;
GtkWidget *a, *b;
GObject *item;
guint n_items;
box = g_object_ref_sink (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0 ));
model = gtk_widget_observe_children (box);
g_assert_true (g_list_model_get_item_type (model) == G_TYPE_OBJECT);
g_assert_true (g_list_model_get_n_items (model) == 0 );
g_assert_true (g_list_model_get_item (model, 0 ) == NULL);
g_object_set_qdata_full (G_OBJECT (model), changes_quark, g_string_new ("" ), free_changes);
g_signal_connect (model, "items-changed" , G_CALLBACK (items_changed_cb), NULL);
a = gtk_label_new ("a" );
b = gtk_label_new ("b" );
gtk_box_append (GTK_BOX (box), a);
gtk_box_append (GTK_BOX (box), b);
item = g_list_model_get_item (model, 0 );
g_assert_true (GTK_WIDGET (item) == a);
g_object_unref (item);
item = g_list_model_get_item (model, 1 );
g_assert_true (GTK_WIDGET (item) == b);
g_object_unref (item);
assert_changes (model, "+0, +1" );
g_object_get (model, "n-items" , &n_items, NULL);
g_assert_true (n_items == 2 );
g_object_unref (model);
g_object_unref (box);
}
static void
test_exhaustive (void )
{
GtkBox *box;
GListModel *model, *compare;
guint i;
box = GTK_BOX (gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0 ));
g_object_ref_sink (box);
model = gtk_widget_observe_children (GTK_WIDGET (box));
compare = G_LIST_MODEL (g_list_store_new (GTK_TYPE_WIDGET));
for (i = 0 ; i < 500 ; i++)
{
switch (g_test_rand_int_range (0 , 4 ))
{
case 0 :
/* compare */
g_assert_cmpint (g_list_model_get_n_items (model), ==, g_list_model_get_n_items (compare));
if (g_list_model_get_n_items (compare) > 0 )
{
guint n = g_list_model_get_n_items (compare);
guint step = n == 1 ? 1 : g_test_rand_int_range (1 , n);
guint j = 0 ;
do
{
gpointer o1 = g_list_model_get_item (model, j);
gpointer o2 = g_list_model_get_item (compare, j);
g_assert_cmphex (GPOINTER_TO_SIZE (o1), ==, GPOINTER_TO_SIZE (o2));
g_object_unref (o1);
g_object_unref (o2);
j = (j + step) % n;
}
while (j != 0 );
}
break ;
case 1 :
/* remove a widget */
if (g_list_model_get_n_items (compare) > 0 )
{
guint position = g_test_rand_int_range (0 , g_list_model_get_n_items (compare));
GtkWidget *child = g_list_model_get_item (compare, position);
gtk_box_remove (box, child);
g_list_store_remove (G_LIST_STORE (compare), position);
g_object_unref (child);
}
break ;
case 2 :
/* add a widget */
{
guint position = g_test_rand_int_range (0 , g_list_model_get_n_items (compare) + 1 );
GtkWidget *child = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0 );
GtkWidget *sibling;
if (position == 0 )
sibling = NULL;
else
sibling = g_list_model_get_item (compare, position - 1 );
gtk_box_insert_child_after (box, child, sibling);
g_list_store_insert (G_LIST_STORE (compare), position, child);
g_clear_object (&sibling);
}
break ;
case 3 :
/* move a widget (FIXME) */
break ;
default :
g_assert_not_reached ();
break ;
}
}
g_object_unref (compare);
g_object_unref (box);
g_object_unref (model);
}
int
main (int argc, char *argv[])
{
(g_test_init) (&argc, &argv, NULL);
gtk_init ();
setlocale (LC_ALL, "C" );
changes_quark = g_quark_from_static_string ("What did I see? Can I believe what I saw?" );
g_test_add_func ("/listlistmodel/change" , test_change);
g_test_add_func ("/listlistmodel/exhaustive" , test_exhaustive);
return g_test_run ();
}
Messung V0.5 in Prozent C=99 H=90 G=94
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-07-02)
¤
*© Formatika GbR, Deutschland