summaryrefslogtreecommitdiff
path: root/tests/registryd/test_root_accessible.py
blob: 930ecd1166f401170d1324976d4fb86396c32aac (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
# Pytest will pick up this module automatically when running just "pytest".
#
# Each test_*() function gets passed test fixtures, which are defined
# in conftest.py.  So, a function "def test_foo(bar)" will get a bar()
# fixture created for it.

import pytest
import dbus

from utils import get_property, check_unknown_property_yields_error

ACCESSIBLE_IFACE = 'org.a11y.atspi.Accessible'

ATSPI_ROLE_DESKTOP_FRAME = 14 # see atspi-constants.h

def test_accessible_iface_properties(registry_root, session_manager):
    values = [
        ('Name',        'main'),
        ('Description', ''),
        ('Parent',      ('', '/org/a11y/atspi/null')),
        ('ChildCount',  0),
    ]

    for prop_name, expected in values:
        assert get_property(registry_root, ACCESSIBLE_IFACE, prop_name) == expected

def test_unknown_property_yields_error(registry_root, session_manager):
    check_unknown_property_yields_error(registry_root, ACCESSIBLE_IFACE)

def test_get_child_at_index_for_empty_registry(registry_root, session_manager):
    # FIXME: Shouldn't this return an error, rather than a null reference?
    (name, path) = registry_root.GetChildAtIndex(0, dbus_interface=ACCESSIBLE_IFACE)
    assert path == '/org/a11y/atspi/null'

def test_get_children_for_empty_registry(registry_root, session_manager):
    assert len(registry_root.GetChildren(dbus_interface=ACCESSIBLE_IFACE)) == 0

def test_root_get_index_in_parent(registry_root, session_manager):
    # The registry root is always index 0
    assert registry_root.GetIndexInParent(dbus_interface=ACCESSIBLE_IFACE) == 0

def test_root_get_relation_set(registry_root, session_manager):
    # The registry root has an empty relation set
    assert len(registry_root.GetRelationSet(dbus_interface=ACCESSIBLE_IFACE)) == 0

def test_root_get_role(registry_root, session_manager):
    # Hardcoded to ATSPI_ROLE_DESKTOP_FRAME
    assert registry_root.GetRole(dbus_interface=ACCESSIBLE_IFACE) == ATSPI_ROLE_DESKTOP_FRAME

def test_root_get_role_name(registry_root, session_manager):
    assert registry_root.GetRoleName(dbus_interface=ACCESSIBLE_IFACE) == "desktop frame"

def test_root_get_localized_role_name(registry_root, session_manager):
    # FIXME: see the corresponding FIXME in registry.c, to actually localize this
    assert registry_root.GetLocalizedRoleName(dbus_interface=ACCESSIBLE_IFACE) == "desktop frame"

def test_root_get_state(registry_root, session_manager):
    assert registry_root.GetState(dbus_interface=ACCESSIBLE_IFACE) == [0, 0]

def test_root_get_attributes(registry_root, session_manager):
    assert len(registry_root.GetAttributes(dbus_interface=ACCESSIBLE_IFACE)) == 0

def test_root_get_application(registry_root, session_manager):
    (name, path) = registry_root.GetApplication(dbus_interface=ACCESSIBLE_IFACE)
    assert path == '/org/a11y/atspi/null'
    
def test_root_get_interfaces(registry_root, session_manager):
    ifaces = registry_root.GetInterfaces(dbus_interface=ACCESSIBLE_IFACE)
    assert ifaces.signature == 's'
    assert 'org.a11y.atspi.Accessible' in ifaces
    assert 'org.a11y.atspi.Application' in ifaces
    assert 'org.a11y.atspi.Component' in ifaces
    assert 'org.a11y.atspi.Socket' in ifaces