101 lines
3.7 KiB
Python
101 lines
3.7 KiB
Python
#!/usr/bin/env python3
|
|
#
|
|
# Copyright (c) 2024 Stormux
|
|
# Copyright (c) 2010-2012 The Orca Team
|
|
# Copyright (c) 2012 Igalia, S.L.
|
|
# Copyright (c) 2005-2010 Sun Microsystems 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.1 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, write to the
|
|
# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
|
|
# Boston MA 02110-1301 USA.
|
|
#
|
|
# Fork of Orca Screen Reader (GNOME)
|
|
# Original source: https://gitlab.gnome.org/GNOME/orca
|
|
|
|
"""Test of ARIA tabpanel presentation."""
|
|
|
|
from macaroon.playback import *
|
|
import utils
|
|
|
|
sequence = MacroSequence()
|
|
|
|
#sequence.append(WaitForDocLoad())
|
|
sequence.append(PauseAction(5000))
|
|
|
|
# Work around some new quirk in Gecko that causes this test to fail if
|
|
# run via the test harness rather than manually.
|
|
sequence.append(KeyComboAction("<Control>r"))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_Enter"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"1. Basic whereAmI",
|
|
["BRAILLE LINE: 'Tab Zero page tab'",
|
|
" VISIBLE: 'Tab Zero page tab', cursor=1",
|
|
"SPEECH OUTPUT: 'page tab list.'",
|
|
"SPEECH OUTPUT: 'Tab Zero.'",
|
|
"SPEECH OUTPUT: '1 of 5'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"2. Right arrow to next tab",
|
|
["BRAILLE LINE: 'Tab One page tab'",
|
|
" VISIBLE: 'Tab One page tab', cursor=1",
|
|
"SPEECH OUTPUT: 'Tab One page tab.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"3. Right arrow to next tab",
|
|
["BRAILLE LINE: 'Tab Two page tab'",
|
|
" VISIBLE: 'Tab Two page tab', cursor=1",
|
|
"SPEECH OUTPUT: 'Tab Two page tab.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"4. Tab to contents",
|
|
["BRAILLE LINE: '&=y Internal Portal Bookmark radio button'",
|
|
" VISIBLE: '&=y Internal Portal Bookmark rad', cursor=1",
|
|
"SPEECH OUTPUT: 'Internal Portal Bookmark.'",
|
|
"SPEECH OUTPUT: 'selected radio button'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("<Shift>Tab"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"5. Shift+Tab out of contents",
|
|
["BRAILLE LINE: 'Tab Two page tab'",
|
|
" VISIBLE: 'Tab Two page tab', cursor=1",
|
|
"SPEECH OUTPUT: 'Tab Two page tab.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"6. Right arrow to next tab",
|
|
["BRAILLE LINE: 'Tab Three page tab'",
|
|
" VISIBLE: 'Tab Three page tab', cursor=1",
|
|
"SPEECH OUTPUT: 'Tab Three page tab.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"7. Right arrow to next tab",
|
|
["BRAILLE LINE: 'Tab Four page tab'",
|
|
" VISIBLE: 'Tab Four page tab', cursor=1",
|
|
"SPEECH OUTPUT: 'Tab Four page tab.'"]))
|
|
|
|
sequence.append(utils.AssertionSummaryAction())
|
|
sequence.start()
|