gtk/testsuite/a11y/inscription.c
Matthias Clasen 7a6fb09179 inscription: Add tests for gtk_accessible_text_get_offset
Test that we get the expected values on an inscription.
2024-04-04 01:05:38 +02:00

117 lines
4.0 KiB
C

#include <gtk/gtk.h>
#include "gtk/gtkaccessibletextprivate.h"
static void
inscription_text_interface (void)
{
GtkWidget *inscription = gtk_inscription_new ("");
GBytes *bytes;
gsize len;
gboolean res;
gsize n_ranges;
GtkAccessibleTextRange *ranges = NULL;
char **attr_names, **attr_values;
const char *string;
unsigned int start, end;
g_object_ref_sink (inscription);
gtk_inscription_set_markup (GTK_INSCRIPTION (inscription), "<markup>a<span overline='single'>b</span>c</markup> def");
bytes = gtk_accessible_text_get_contents (GTK_ACCESSIBLE_TEXT (inscription), 0, G_MAXINT);
string = g_bytes_get_data (bytes, &len);
g_assert_cmpint (len, ==, 8);
g_assert_cmpstr (string, ==, "abc def");
g_bytes_unref (bytes);
bytes = gtk_accessible_text_get_contents_at (GTK_ACCESSIBLE_TEXT (inscription), 1, GTK_ACCESSIBLE_TEXT_GRANULARITY_WORD, &start, &end);
string = g_bytes_get_data (bytes, &len);
g_assert_cmpint (len, ==, 5);
g_assert_cmpint (start, ==, 0);
g_assert_cmpint (end, ==, 4);
g_assert_cmpstr (string, ==, "abc ");
g_bytes_unref (bytes);
g_assert_cmpint (gtk_accessible_text_get_caret_position (GTK_ACCESSIBLE_TEXT (inscription)), ==, 0);
res = gtk_accessible_text_get_selection (GTK_ACCESSIBLE_TEXT (inscription), &n_ranges, &ranges);
g_assert_false (res);
res = gtk_accessible_text_get_attributes (GTK_ACCESSIBLE_TEXT (inscription), 1, &n_ranges, &ranges, &attr_names, &attr_values);
g_assert_true (res);
g_assert_cmpint (n_ranges, ==, 1);
g_assert_cmpuint (ranges[0].start, ==, 1);
g_assert_cmpuint (ranges[0].length, ==, 1);
g_assert_cmpstr (attr_names[0], ==, GTK_ACCESSIBLE_ATTRIBUTE_OVERLINE);
g_assert_cmpstr (attr_values[0], ==, GTK_ACCESSIBLE_ATTRIBUTE_OVERLINE_SINGLE);
g_free (ranges);
g_strfreev (attr_names);
g_strfreev (attr_values);
g_object_unref (inscription);
}
/* Some of the text interface functions require an allocated widget */
static void
more_inscription_text_interface (void)
{
GtkWidget *window, *inscription;
int width, height;
gboolean res;
unsigned int offset;
window = gtk_window_new ();
inscription = gtk_inscription_new ("AAA");
gtk_widget_set_halign (inscription, GTK_ALIGN_CENTER);
gtk_widget_set_valign (inscription, GTK_ALIGN_CENTER);
gtk_window_set_child (GTK_WINDOW (window), inscription);
gtk_window_present (GTK_WINDOW (window));
while (gtk_widget_get_width (inscription) == 0)
g_main_context_iteration (NULL, TRUE);
width = gtk_widget_get_width (inscription);
height = gtk_widget_get_height (inscription);
g_assert_true (width > 0);
g_assert_true (height > 0);
res = gtk_accessible_text_get_offset (GTK_ACCESSIBLE_TEXT (inscription),
&GRAPHENE_POINT_INIT (width / 12, height / 2),
&offset);
g_assert_true (res);
g_assert_cmpuint (offset, ==, 0);
res = gtk_accessible_text_get_offset (GTK_ACCESSIBLE_TEXT (inscription),
&GRAPHENE_POINT_INIT (width / 2, height / 2),
&offset);
g_assert_true (res);
g_assert_cmpuint (offset, ==, 1);
res = gtk_accessible_text_get_offset (GTK_ACCESSIBLE_TEXT (inscription),
&GRAPHENE_POINT_INIT (width - width / 4, height / 2),
&offset);
g_assert_true (res);
g_assert_cmpuint (offset, ==, 2);
res = gtk_accessible_text_get_offset (GTK_ACCESSIBLE_TEXT (inscription),
&GRAPHENE_POINT_INIT (width, height / 2),
&offset);
g_assert_true (res);
g_assert_cmpuint (offset, ==, 3);
gtk_window_destroy (GTK_WINDOW (window));
}
int
main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv, NULL);
g_test_add_func ("/a11y/inscription/text-interface", inscription_text_interface);
g_test_add_func ("/a11y/inscription/more-text-interface", more_inscription_text_interface);
return g_test_run ();
}