summaryrefslogtreecommitdiff
path: root/tests/testrole.c
blob: 2c7724e1fb09a23da9bc39339519d2ed56a116ef (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* ATK -  Accessibility Toolkit
 * Copyright (C) 2013 Igalia, S.L.
 *
 * Author: Alejandro PiƱeiro Iglesias <apinheiro@igalia.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */
#include <atk/atk.h>
#include <string.h>

static gboolean
test_role (void)
{
  AtkRole role1, role2;
  const gchar *name;
  gboolean result = TRUE;

  name = atk_role_get_name (ATK_ROLE_PAGE_TAB);
  if (!name || strcmp (name, "page tab") != 0)
    {
      g_print ("Unexpected name for ATK_ROLE_PAGE_TAB."
               " Expected 'page tab', received '%s'\n", name);
      result = FALSE;
    }

  name = atk_role_get_name (ATK_ROLE_LAYERED_PANE);
  if (!name || strcmp (name, "layered pane") != 0)
    {
      g_print ("Unexpected name for ATK_ROLE_LAYERED_PANE."
               " Expected 'layered pane', received '%s'\n", name);
      result = FALSE;
    }

  role1 = atk_role_for_name ("list item");
  if (role1 != ATK_ROLE_LIST_ITEM)
    {
      g_print ("Unexpected role for list item."
               " Expected %i, received %i\n", ATK_ROLE_LIST_ITEM, role1);
      result = FALSE;
    }

  role2 = atk_role_for_name ("TEST_ROLE");
  if (role2 != ATK_ROLE_INVALID)
    {
      g_print ("Unexpected role for TEST_ROLE. Expected %i, received %i\n", ATK_ROLE_INVALID, role2);
      result = FALSE;
    }
  /*
   * Check that a non-existent role returns NULL
   */
  name = atk_role_get_name (ATK_ROLE_LAST_DEFINED + 2);
  if (name)
    {
      g_print ("Unexpected name for undefined role %s\n", name);
      result = FALSE;
    }

  return result;
}

static void
print_roles()
{
  AtkRole role;

  g_print("(Role, name, localized name) defined by the ATK library:\n");

  for (role = ATK_ROLE_INVALID; role < ATK_ROLE_LAST_DEFINED; role++)
    g_print ("(%i, %s, %s)\n", role,
             atk_role_get_name(role), atk_role_get_localized_name(role));

  g_print("(Role, name, localized name) for the extra roles:\n");
  for (;atk_role_get_name(role) != NULL; role++)
    g_print ("(%i, %s, %s)\n", role,
             atk_role_get_name(role), atk_role_get_localized_name(role));

}

int
main (int argc, char **argv)
{
  gboolean b_ret;

  g_print ("Starting Role test suite\n");

  b_ret = test_role ();

  print_roles();

  if (b_ret)
    g_print ("Role tests succeeded\n");
  else
    g_print ("Role tests failed\n");

  return 0;
}