a11y: Add a simple test case for GtkButton's accessible state

This commit is contained in:
Emmanuele Bassi
2020-07-26 20:30:35 +01:00
parent 3d642460e7
commit ac0fcc55a6
2 changed files with 38 additions and 0 deletions

37
testsuite/a11y/button.c Normal file
View File

@@ -0,0 +1,37 @@
#include <gtk/gtk.h>
static void
button_role (void)
{
GtkWidget *button = gtk_button_new ();
g_object_ref_sink (button);
gtk_test_accessible_assert_role (button, GTK_ACCESSIBLE_ROLE_BUTTON);
/* Simple command buttons have a "pressed" state set to "undefined" */
gtk_test_accessible_assert_state (button, GTK_ACCESSIBLE_STATE_PRESSED, GTK_ACCESSIBLE_VALUE_UNDEFINED);
g_object_unref (button);
}
static void
button_label (void)
{
GtkWidget *button = gtk_button_new_with_label ("Hello");
g_object_ref_sink (button);
gtk_test_accessible_assert_property (button, GTK_ACCESSIBLE_PROPERTY_LABEL, "Hello");
g_object_unref (button);
}
int
main (int argc, char *argv[])
{
gtk_test_init (&argc, &argv, NULL);
g_test_add_func ("/a11y/button/role", button_role);
g_test_add_func ("/a11y/button/label", button_label);
return g_test_run ();
}

View File

@@ -10,6 +10,7 @@ testdatadir = join_paths(installed_test_datadir, 'gtk')
# - 'link_args': (array): additional linker arguments
# - 'suites': (array): additional test suites
tests = [
{ 'name': 'button' },
]