cthulhu/test/keystrokes/firefox/line_nav_nested_tables.py
2024-12-18 10:05:44 -05:00

250 lines
9.3 KiB
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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 line navigation on a page with nested layout tables. """
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("<Control>Home"))
sequence.append(utils.AssertPresentationAction(
"1. Top of file",
["BRAILLE LINE: 'nested-tables image'",
" VISIBLE: 'nested-tables image', cursor=1",
"SPEECH OUTPUT: 'nested-tables image visited link'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"2. line Down",
["BRAILLE LINE: 'Campus  .  Classroom  .  Communicate  .  Reports'",
" VISIBLE: 'Campus  .  Classroom  .  Communi', cursor=1",
"SPEECH OUTPUT: 'Campus'",
"SPEECH OUTPUT: 'link.'",
"SPEECH OUTPUT: '.'",
"SPEECH OUTPUT: 'Classroom'",
"SPEECH OUTPUT: 'link.'",
"SPEECH OUTPUT: '.'",
"SPEECH OUTPUT: 'Communicate'",
"SPEECH OUTPUT: 'link.'",
"SPEECH OUTPUT: '.'",
"SPEECH OUTPUT: 'Reports'",
"SPEECH OUTPUT: 'link.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"3. line Down",
["BRAILLE LINE: 'Your Learning Plan'",
" VISIBLE: 'Your Learning Plan', cursor=1",
"SPEECH OUTPUT: 'Your Learning Plan'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"4. line Down",
["BRAILLE LINE: 'Below is a list of the courses that make up your learning plan.'",
" VISIBLE: 'Below is a list of the courses t', cursor=1",
"SPEECH OUTPUT: 'Below is a list of the courses that make up your learning plan.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"5. line Down",
["BRAILLE LINE: 'UNIX 2007'",
" VISIBLE: 'UNIX 2007', cursor=1",
"SPEECH OUTPUT: 'UNIX 2007.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"6. line Down",
["BRAILLE LINE: 'Take Course'",
" VISIBLE: 'Take Course', cursor=1",
"SPEECH OUTPUT: 'Take Course'",
"SPEECH OUTPUT: 'link.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"7. line Down",
["BRAILLE LINE: 'You have completed 87 of the 87 modules in this course.'",
" VISIBLE: 'You have completed 87 of the 87 ', cursor=1",
"SPEECH OUTPUT: 'You have completed 87 of the 87 modules in this course.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"8. line Down",
["BRAILLE LINE: 'separator'",
" VISIBLE: 'separator', cursor=1",
"SPEECH OUTPUT: 'separator'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"9. line Down",
["BRAILLE LINE: 'SQL Plus'",
" VISIBLE: 'SQL Plus', cursor=1",
"SPEECH OUTPUT: 'SQL Plus.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"10. line Down",
["BRAILLE LINE: 'Take Course'",
" VISIBLE: 'Take Course', cursor=1",
"SPEECH OUTPUT: 'Take Course'",
"SPEECH OUTPUT: 'link.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"11. line Down",
["BRAILLE LINE: 'You have completed 59 of the 184 modules in this course.'",
" VISIBLE: 'You have completed 59 of the 184', cursor=1",
"SPEECH OUTPUT: 'You have completed 59 of the 184 modules in this course.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"12. line Down",
["BRAILLE LINE: 'separator'",
" VISIBLE: 'separator', cursor=1",
"SPEECH OUTPUT: 'separator'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"13. line Up",
["BRAILLE LINE: 'You have completed 59 of the 184 modules in this course.'",
" VISIBLE: 'You have completed 59 of the 184', cursor=1",
"SPEECH OUTPUT: 'You have completed 59 of the 184 modules in this course.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"14. line Up",
["BRAILLE LINE: 'Take Course'",
" VISIBLE: 'Take Course', cursor=1",
"SPEECH OUTPUT: 'Take Course'",
"SPEECH OUTPUT: 'link.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"15. line Up",
["BRAILLE LINE: 'SQL Plus'",
" VISIBLE: 'SQL Plus', cursor=1",
"SPEECH OUTPUT: 'SQL Plus.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"16. line Up",
["BRAILLE LINE: 'separator'",
" VISIBLE: 'separator', cursor=1",
"SPEECH OUTPUT: 'separator'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"17. line Up",
["BRAILLE LINE: 'You have completed 87 of the 87 modules in this course.'",
" VISIBLE: 'You have completed 87 of the 87 ', cursor=1",
"SPEECH OUTPUT: 'You have completed 87 of the 87 modules in this course.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"18. line Up",
["BRAILLE LINE: 'Take Course'",
" VISIBLE: 'Take Course', cursor=1",
"SPEECH OUTPUT: 'Take Course'",
"SPEECH OUTPUT: 'link.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"19. line Up",
["BRAILLE LINE: 'UNIX 2007'",
" VISIBLE: 'UNIX 2007', cursor=1",
"SPEECH OUTPUT: 'UNIX 2007.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"20. line Up",
["BRAILLE LINE: 'Below is a list of the courses that make up your learning plan.'",
" VISIBLE: 'Below is a list of the courses t', cursor=1",
"SPEECH OUTPUT: 'Below is a list of the courses that make up your learning plan.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"21. line Up",
["BRAILLE LINE: 'Your Learning Plan'",
" VISIBLE: 'Your Learning Plan', cursor=1",
"SPEECH OUTPUT: 'Your Learning Plan'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"22. line Up",
["BRAILLE LINE: 'Campus  .  Classroom  .  Communicate  .  Reports'",
" VISIBLE: 'Campus  .  Classroom  .  Communi', cursor=1",
"SPEECH OUTPUT: 'Campus'",
"SPEECH OUTPUT: 'link.'",
"SPEECH OUTPUT: '.'",
"SPEECH OUTPUT: 'Classroom'",
"SPEECH OUTPUT: 'link.'",
"SPEECH OUTPUT: '.'",
"SPEECH OUTPUT: 'Communicate'",
"SPEECH OUTPUT: 'link.'",
"SPEECH OUTPUT: '.'",
"SPEECH OUTPUT: 'Reports'",
"SPEECH OUTPUT: 'link.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Up"))
sequence.append(utils.AssertPresentationAction(
"23. line Up",
["BRAILLE LINE: 'nested-tables image'",
" VISIBLE: 'nested-tables image', cursor=1",
"SPEECH OUTPUT: 'nested-tables image visited link'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()