cthulhu/test/keystrokes/gnome-clocks/stop_watch_flat_review.py
2024-12-18 10:05:44 -05:00

123 lines
4.7 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.

This file contains Unicode characters that might be confused with other characters. 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
from macaroon.playback import *
import utils
sequence = MacroSequence()
sequence.append(PauseAction(3000))
sequence.append(KeyComboAction("F10"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("Tab"))
sequence.append(KeyComboAction("space"))
sequence.append(PauseAction(3000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_8"))
sequence.append(utils.AssertPresentationAction(
"1. Review current line",
["BRAILLE LINE: 'Start Reset $l'",
" VISIBLE: 'Start Reset $l', cursor=1",
"SPEECH OUTPUT: 'Start Reset'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("space"))
sequence.append(utils.AssertPresentationAction(
"2. Activate stop watch",
["BRAILLE LINE: 'gnome-clocks application Clocks frame Stop push button'",
" VISIBLE: 'Stop push button', cursor=1"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_8"))
sequence.append(utils.AssertPresentationAction(
"3. Review current line",
["BRAILLE LINE: 'Start Reset $l'",
" VISIBLE: 'Start Reset $l', cursor=1",
"SPEECH OUTPUT: 'Start Reset'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_7"))
sequence.append(utils.AssertPresentationAction(
"4. Review previous line",
["BRAILLE LINE: '0004\\.[0-9] \\$l'",
" VISIBLE: '0004\\.[0-9] \\$l', cursor=1",
"SPEECH OUTPUT: '0004\\.[0-9]'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_7"))
sequence.append(utils.AssertPresentationAction(
"5. Review previous line",
["BRAILLE LINE: '& y World & y Alarm &=y Stopwatch & y Timer $l'",
" VISIBLE: '& y World & y Alarm &=y Stopwatc', cursor=1",
"SPEECH OUTPUT: 'not selected World not selected Alarm selected Stopwatch not selected Timer'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_9"))
sequence.append(utils.AssertPresentationAction(
"6. Review next line",
["BRAILLE LINE: '000(8|9)\\.[0-9] \\$l'",
" VISIBLE: '000(8|9)\\.[0-9] \\$l', cursor=1",
"SPEECH OUTPUT: '000(8|9)\\.[0-9]'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_Subtract"))
sequence.append(KeyComboAction("KP_Subtract"))
sequence.append(utils.AssertPresentationAction(
"7. Toggle flat review",
["BRAILLE LINE: 'Leaving flat review.'",
" VISIBLE: 'Leaving flat review.', cursor=0",
"BRAILLE LINE: 'gnome-clocks application Clocks frame Stop push button'",
" VISIBLE: 'Stop push button', cursor=1",
"BRAILLE LINE: 'Entering flat review.'",
" VISIBLE: 'Entering flat review.', cursor=0",
"BRAILLE LINE: 'Stop Lap $l'",
" VISIBLE: 'Stop Lap $l', cursor=1",
"SPEECH OUTPUT: 'Leaving flat review.' voice=system",
"SPEECH OUTPUT: 'Entering flat review.' voice=system",
"SPEECH OUTPUT: 'Stop'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_7"))
sequence.append(utils.AssertPresentationAction(
"8. Review previous line",
["BRAILLE LINE: '00(13|14)\\.[0-9] \\$l'",
" VISIBLE: '00(13|14)\\.[0-9] \\$l', cursor=1",
"SPEECH OUTPUT: '00(13|14)\\.[0-9]'"]))
sequence.append(PauseAction(3000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_8"))
sequence.append(utils.AssertPresentationAction(
"9. Review current line",
["BRAILLE LINE: '00(19|20)\\.[0-9] \\$l'",
" VISIBLE: '00(19|20)\\.[0-9] \\$l', cursor=1",
"SPEECH OUTPUT: '00(19|20)\\.[0-9]'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()