228 lines
10 KiB
Python
228 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 page tabs in Java's SwingSet2."""
|
|
|
|
from macaroon.playback import *
|
|
import utils
|
|
|
|
sequence = MacroSequence()
|
|
|
|
##########################################################################
|
|
# We wait for the demo to come up and for focus to be on the toggle button
|
|
#
|
|
#sequence.append(WaitForWindowActivate("SwingSet2",None))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
|
|
# Wait for entire window to get populated.
|
|
sequence.append(PauseAction(5000))
|
|
|
|
##########################################################################
|
|
# Tab over to the JTabbedPane demo, and activate it.
|
|
#
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(TypeAction(" "))
|
|
##########################################################################
|
|
# Tab all the way down to the demo.
|
|
#
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TOGGLE_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
|
|
sequence.append(WaitForFocus("TabbedPane Demo", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("Top", acc_role=pyatspi.ROLE_RADIO_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("Left", acc_role=pyatspi.ROLE_RADIO_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("Bottom", acc_role=pyatspi.ROLE_RADIO_BUTTON))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("Right", acc_role=pyatspi.ROLE_RADIO_BUTTON))
|
|
|
|
########################################################################
|
|
# Expected output when "Laine" tab gets focus.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("Laine", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"1. Move to Laine tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Laine Page'",
|
|
" VISIBLE: 'Laine Page', cursor=1",
|
|
"SPEECH OUTPUT: 'Laine tab list Laine page'"]))
|
|
|
|
########################################################################
|
|
# Expected output when "Ewan" tab gets focus.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(WaitForFocus("Ewan", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"2. Move to Ewan tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Ewan Page'",
|
|
" VISIBLE: 'Ewan Page', cursor=1",
|
|
"SPEECH OUTPUT: 'Ewan page'"]))
|
|
|
|
########################################################################
|
|
# Expected output when "Hania" tab gets focus.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(WaitForFocus("Hania", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"3. Move to Hania tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Hania Page'",
|
|
" VISIBLE: 'Hania Page', cursor=1",
|
|
"SPEECH OUTPUT: 'Hania page'"]))
|
|
|
|
########################################################################
|
|
# Expected output when "Bouncing Babies!" tab gets focus.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Right"))
|
|
sequence.append(WaitForFocus("<html><font color=blue><bold><center>Bouncing Babies!</center></bold></font></html>", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"4. Move to Bouncing Babies! tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page <html><font color=blue><bold><center>Bouncing Babies!</center></bold></font></html> Page'",
|
|
" VISIBLE: '<html><font color=blue><bold><ce', cursor=1",
|
|
"SPEECH OUTPUT: '<html><font color=blue><bold><center>Bouncing Babies!</center></bold></font></html> page'"]))
|
|
|
|
########################################################################
|
|
# Do a basic "Where Am I" via KP_Enter.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_Enter"))
|
|
sequence.append(PauseAction(3000))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"5. Basic Where Am I",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page <html><font color=blue><bold><center>Bouncing Babies!</center></bold></font></html> Page'",
|
|
" VISIBLE: '<html><font color=blue><bold><ce', cursor=1",
|
|
"SPEECH OUTPUT: 'tab list <html><font color=blue><bold><center>Bouncing Babies!</center></bold></font></html> page 4 of 4'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Left"))
|
|
sequence.append(WaitForFocus("Hania", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"6. Back to Hania tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Hania Page'",
|
|
" VISIBLE: 'Hania Page', cursor=1",
|
|
"SPEECH OUTPUT: 'Hania page'"]))
|
|
|
|
########################################################################
|
|
# Do a basic "Where Am I" via KP_Enter.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_Enter"))
|
|
sequence.append(PauseAction(3000))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"7. Basic Where Am I",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Hania Page'",
|
|
" VISIBLE: 'Hania Page', cursor=1",
|
|
"SPEECH OUTPUT: 'tab list Hania page 3 of 4'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Left"))
|
|
sequence.append(WaitForFocus("Ewan", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"8. Back to Ewan tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Ewan Page'",
|
|
" VISIBLE: 'Ewan Page', cursor=1",
|
|
"SPEECH OUTPUT: 'Ewan page'"]))
|
|
|
|
########################################################################
|
|
# Do a basic "Where Am I" via KP_Enter.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_Enter"))
|
|
sequence.append(PauseAction(3000))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"9. Basic Where Am I",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Ewan Page'",
|
|
" VISIBLE: 'Ewan Page', cursor=1",
|
|
"SPEECH OUTPUT: 'tab list Ewan page 2 of 4'"]))
|
|
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("Left"))
|
|
sequence.append(WaitForFocus("Laine", acc_role=pyatspi.ROLE_PAGE_TAB))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"10. Back to Laine tab",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Laine Page'",
|
|
" VISIBLE: 'Laine Page', cursor=1",
|
|
"SPEECH OUTPUT: 'Laine page'"]))
|
|
|
|
########################################################################
|
|
# Do a basic "Where Am I" via KP_Enter.
|
|
#
|
|
sequence.append(utils.StartRecordingAction())
|
|
sequence.append(KeyComboAction("KP_Enter"))
|
|
sequence.append(PauseAction(3000))
|
|
sequence.append(utils.AssertPresentationAction(
|
|
"11. Basic Where Am I",
|
|
["BRAILLE LINE: 'SwingSet2 Application SwingSet2 Frame RootPane LayeredPane TabbedPane Demo TabList TabbedPane Demo Page Laine Page'",
|
|
" VISIBLE: 'Laine Page', cursor=1",
|
|
"SPEECH OUTPUT: 'tab list Laine page 1 of 4'"]))
|
|
|
|
sequence.append(KeyComboAction("Tab"))
|
|
sequence.append(WaitForFocus("", acc_role=pyatspi.ROLE_TEXT))
|
|
sequence.append(KeyComboAction("Tab"))
|
|
|
|
# Toggle the top left button, to return to normal state.
|
|
sequence.append(TypeAction (" "))
|
|
|
|
# Just a little extra wait to let some events get through.
|
|
#
|
|
sequence.append(PauseAction(3000))
|
|
|
|
sequence.append(utils.AssertionSummaryAction())
|
|
|
|
sequence.start()
|