186 lines
6.5 KiB
Python
186 lines
6.5 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 menu and menu item output."""
|
|
|
|
from macaroon.playback import *
|
|
import utils
|
|
|
|
sequence = MacroSequence()
|
|
|
|
sequence.append(PauseAction(3000))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("<Alt>v"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"1. Initial menu and menu item",
|
|
["BRAILLE LINE: 'Firefox application Firefox Nightly frame Menu Bar tool bar Application menu bar Toolbars menu'",
|
|
" VISIBLE: 'Toolbars menu', cursor=1",
|
|
"SPEECH OUTPUT: 'View menu'",
|
|
"SPEECH OUTPUT: 'Toolbars menu.'"]))
|
|
|
|
sequence.append(PauseAction(3000))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Down"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"2. Down",
|
|
["BRAILLE LINE: 'Firefox application Firefox Nightly frame Menu Bar tool bar Application menu bar Sidebar menu'",
|
|
" VISIBLE: 'Sidebar menu', cursor=1",
|
|
"SPEECH OUTPUT: 'Sidebar menu.'"]))
|
|
|
|
sequence.append(PauseAction(3000))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_8"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"3. Review currernt line",
|
|
["BRAILLE LINE: 'Sidebar $l'",
|
|
" VISIBLE: 'Sidebar $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Sidebar'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_9"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"4. Review next line",
|
|
["BRAILLE LINE: 'separator $l'",
|
|
" VISIBLE: 'separator $l', cursor=1",
|
|
"SPEECH OUTPUT: 'separator'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_9"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"5. Review next line",
|
|
["BRAILLE LINE: 'Zoom $l'",
|
|
" VISIBLE: 'Zoom $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Zoom'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_9"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"6. Review next line",
|
|
["BRAILLE LINE: 'Page Style $l'",
|
|
" VISIBLE: 'Page Style $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Page Style'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_9"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"7. Review next line",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Text Encoding'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_5"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"8. Review current word",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Text '"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_6"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"9. Review next word",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=6",
|
|
"SPEECH OUTPUT: 'Encoding'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_2"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"10. Review current char",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=6",
|
|
"SPEECH OUTPUT: 'E'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_3"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"11. Review next char",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=7",
|
|
"SPEECH OUTPUT: 'n'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_6"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"12. Review next word",
|
|
["BRAILLE LINE: 'separator $l'",
|
|
" VISIBLE: 'separator $l', cursor=1",
|
|
"SPEECH OUTPUT: 'separator'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_2"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"13. Review current char",
|
|
["BRAILLE LINE: 'separator $l'",
|
|
" VISIBLE: 'separator $l', cursor=1",
|
|
"SPEECH OUTPUT: 'separator'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_3"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"14. Review next char",
|
|
["BRAILLE LINE: '< > Full Screen $l'",
|
|
" VISIBLE: '< > Full Screen $l', cursor=1",
|
|
"SPEECH OUTPUT: 'not checked'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_1"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"15. Review previous char",
|
|
["BRAILLE LINE: 'separator $l'",
|
|
" VISIBLE: 'separator $l', cursor=1",
|
|
"SPEECH OUTPUT: 'separator'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_1"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"16. Review previous char",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=13",
|
|
"SPEECH OUTPUT: 'g'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_4"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"17. Review previous word",
|
|
["BRAILLE LINE: 'Text Encoding $l'",
|
|
" VISIBLE: 'Text Encoding $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Text '"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_7"))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"18. Review previous line",
|
|
["BRAILLE LINE: 'Page Style $l'",
|
|
" VISIBLE: 'Page Style $l', cursor=1",
|
|
"SPEECH OUTPUT: 'Page Style'"]))
|
|
|
|
sequence.append(utils.AssertionSummaryAction())
|
|
sequence.start()
|