229 lines
10 KiB
Python
229 lines
10 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 HTML list 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("<Control>Home"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"1. Top of file",
|
|
["BRAILLE LINE: 'Welcome to a List of Lists h1'",
|
|
" VISIBLE: 'Welcome to a List of Lists h1', cursor=1",
|
|
"SPEECH OUTPUT: 'Welcome to a List of Lists heading level 1'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"2. Line Down",
|
|
["BRAILLE LINE: 'Lists are not only fun to make, they are fun to use. They help us:'",
|
|
" VISIBLE: 'Lists are not only fun to make, ', cursor=1",
|
|
"SPEECH OUTPUT: 'Lists are not only fun to make, they are fun to use. They help us:'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"3. Line Down",
|
|
["BRAILLE LINE: '1. remember what the heck we are doing each day'",
|
|
" VISIBLE: '1. remember what the heck we are', cursor=1",
|
|
"SPEECH OUTPUT: '1. remember what the heck we are doing each day.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"4. Line Down",
|
|
["BRAILLE LINE: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of'",
|
|
" VISIBLE: '2. arrange long and arbitrary li', cursor=1",
|
|
"SPEECH OUTPUT: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"5. Line Down",
|
|
["BRAILLE LINE: 'priority, even if it is artificial'",
|
|
" VISIBLE: 'priority, even if it is artifici', cursor=1",
|
|
"SPEECH OUTPUT: 'priority, even if it is artificial.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"6. Line Down",
|
|
["BRAILLE LINE: '3. look really cool when we carry them around on yellow Post-Itstm.'",
|
|
" VISIBLE: '3. look really cool when we carr', cursor=1",
|
|
"SPEECH OUTPUT: '3. look really cool when we carry them around on yellow Post-Itstm.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"7. Line Down",
|
|
["BRAILLE LINE: '4. and that other thing I keep forgetting.'",
|
|
" VISIBLE: '4. and that other thing I keep f', cursor=1",
|
|
"SPEECH OUTPUT: '4. and that other thing I keep forgetting.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"8. Line Down",
|
|
["BRAILLE LINE: 'Your ordered lists can start at a strange number, like:'",
|
|
" VISIBLE: 'Your ordered lists can start at ', cursor=1",
|
|
"SPEECH OUTPUT: 'Your ordered lists can start at a strange number, like:'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"9. Line Down",
|
|
["KNOWN ISSUE: Gecko is not exposing this as a roman numeral.",
|
|
"BRAILLE LINE: '6. And use roman numerals,'",
|
|
" VISIBLE: '6. And use roman numerals,', cursor=1",
|
|
"SPEECH OUTPUT: '6. And use roman numerals,.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"10. Line Down",
|
|
["BRAILLE LINE: 'g. You might try using letters as well,'",
|
|
" VISIBLE: 'g. You might try using letters a', cursor=1",
|
|
"SPEECH OUTPUT: 'g. You might try using letters as well,.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"11. Line Down",
|
|
["BRAILLE LINE: 'H. Maybe you prefer Big Letters,'",
|
|
" VISIBLE: 'H. Maybe you prefer Big Letters,', cursor=1",
|
|
"SPEECH OUTPUT: 'H. Maybe you prefer Big Letters,.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"12. Line Down",
|
|
["KNOWN ISSUE: Gecko is not exposing this as a roman numeral.",
|
|
"BRAILLE LINE: '9. or small roman numerals'",
|
|
" VISIBLE: '9. or small roman numerals', cursor=1",
|
|
"SPEECH OUTPUT: '9. or small roman numerals.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"13. Line Up",
|
|
["BRAILLE LINE: 'H. Maybe you prefer Big Letters,'",
|
|
" VISIBLE: 'H. Maybe you prefer Big Letters,', cursor=1",
|
|
"SPEECH OUTPUT: 'H. Maybe you prefer Big Letters,.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"14. Line Up",
|
|
["BRAILLE LINE: 'g. You might try using letters as well,'",
|
|
" VISIBLE: 'g. You might try using letters a', cursor=1",
|
|
"SPEECH OUTPUT: 'g. You might try using letters as well,.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"15. Line Up",
|
|
["KNOWN ISSUE: Gecko is not exposing this as a roman numeral.",
|
|
"BRAILLE LINE: '6. And use roman numerals,'",
|
|
" VISIBLE: '6. And use roman numerals,', cursor=1",
|
|
"SPEECH OUTPUT: '6. And use roman numerals,.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"16. Line Up",
|
|
["BRAILLE LINE: 'Your ordered lists can start at a strange number, like:'",
|
|
" VISIBLE: 'Your ordered lists can start at ', cursor=1",
|
|
"SPEECH OUTPUT: 'Your ordered lists can start at a strange number, like:'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"17. Line Up",
|
|
["BRAILLE LINE: '4. and that other thing I keep forgetting.'",
|
|
" VISIBLE: '4. and that other thing I keep f', cursor=1",
|
|
"SPEECH OUTPUT: '4. and that other thing I keep forgetting.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"18. Line Up",
|
|
["BRAILLE LINE: '3. look really cool when we carry them around on yellow Post-Itstm.'",
|
|
" VISIBLE: '3. look really cool when we carr', cursor=1",
|
|
"SPEECH OUTPUT: '3. look really cool when we carry them around on yellow Post-Itstm.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"19. Line Up",
|
|
["BRAILLE LINE: 'priority, even if it is artificial'",
|
|
" VISIBLE: 'priority, even if it is artifici', cursor=1",
|
|
"SPEECH OUTPUT: 'priority, even if it is artificial.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"20. Line Up",
|
|
["BRAILLE LINE: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of'",
|
|
" VISIBLE: '2. arrange long and arbitrary li', cursor=1",
|
|
"SPEECH OUTPUT: '2. arrange long and arbitrary lines of text into ordered lists that are pleasing to the eye and suggest some sense of.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"21. Line Up",
|
|
["BRAILLE LINE: '1. remember what the heck we are doing each day'",
|
|
" VISIBLE: '1. remember what the heck we are', cursor=1",
|
|
"SPEECH OUTPUT: '1. remember what the heck we are doing each day.'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"22. Line Up",
|
|
["BRAILLE LINE: 'Lists are not only fun to make, they are fun to use. They help us:'",
|
|
" VISIBLE: 'Lists are not only fun to make, ', cursor=1",
|
|
"SPEECH OUTPUT: 'Lists are not only fun to make, they are fun to use. They help us:'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Up"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"23. Line Up",
|
|
["BRAILLE LINE: 'Welcome to a List of Lists h1'",
|
|
" VISIBLE: 'Welcome to a List of Lists h1', cursor=1",
|
|
"SPEECH OUTPUT: 'Welcome to a List of Lists heading level 1'"]))
|
|
|
|
sequence.append(utils.AssertionSummaryAction())
|
|
sequence.start()
|