#!/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 combobox output.""" from macaroon.playback import * import utils sequence = MacroSequence() sequence.append(KeyComboAction("f")) sequence.append(TypeAction("Combo boxes")) sequence.append(KeyComboAction("Return")) sequence.append(utils.StartRecordingAction()) sequence.append(TypeAction(" ")) sequence.append(utils.AssertPresentationAction( "1. Warning combo box item", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Some stock icons panel menu'", " VISIBLE: 'menu', cursor=1", "BRAILLE LINE: 'gtk-demo application Combo boxes frame Some stock icons panel Warning combo box Warning'", " VISIBLE: 'Warning', cursor=1", "SPEECH OUTPUT: 'combo box.'", "SPEECH OUTPUT: 'Warning.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("KP_Enter")) sequence.append(utils.AssertPresentationAction( "2. Warning combo box item Where Am I", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Some stock icons panel Warning combo box Warning'", " VISIBLE: 'Warning', cursor=1", "SPEECH OUTPUT: 'Combo boxes frame'", "SPEECH OUTPUT: 'Some stock icons panel.'", "SPEECH OUTPUT: 'Warning.'", "SPEECH OUTPUT: '1 of 5'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "3. New combo box item", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Some stock icons panel Warning combo box New'", " VISIBLE: 'New', cursor=1", "SPEECH OUTPUT: 'New.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("KP_Enter")) sequence.append(utils.AssertPresentationAction( "4. New combo box item Where Am I", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Some stock icons panel Warning combo box New'", " VISIBLE: 'New', cursor=1", "SPEECH OUTPUT: 'Combo boxes frame'", "SPEECH OUTPUT: 'Some stock icons panel.'", "SPEECH OUTPUT: 'New.'", "SPEECH OUTPUT: '3 of 5'"])) sequence.append(KeyComboAction("Escape")) sequence.append(KeyComboAction("Tab")) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Tab")) sequence.append(utils.AssertPresentationAction( "5. Editable text combo box", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel $l'", " VISIBLE: 'boxes frame Editable panel $l', cursor=28", "SPEECH OUTPUT: 'Editable panel.'", "SPEECH OUTPUT: 'editable combo box.'"])) sequence.append(TypeAction("Fou")) sequence.append(utils.StartRecordingAction()) sequence.append(TypeAction("r")) sequence.append(utils.AssertPresentationAction( "6. Editable text combo box typing", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Fou $l'", " VISIBLE: 'boxes frame Editable panel Fou $', cursor=32", "BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Four $l'", " VISIBLE: 'boxes frame Editable panel Four ', cursor=32"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("KP_Enter")) sequence.append(utils.AssertPresentationAction( "7. Editable text combo box Where Am I", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Four $l'", " VISIBLE: 'boxes frame Editable panel Four ', cursor=32", "SPEECH OUTPUT: 'editable combo box.'", "SPEECH OUTPUT: 'Four.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Tab")) sequence.append(utils.AssertPresentationAction( "8. Editable text combo box open button", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Four $l combo box'", " VISIBLE: 'boxes frame Editable panel Four ', cursor=32", "SPEECH OUTPUT: 'Four editable combo box.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("ISO_Left_Tab")) sequence.append(utils.AssertPresentationAction( "9. Editable text combo box with selected text", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Four $l'", " VISIBLE: 'boxes frame Editable panel Four ', cursor=32", "BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Four $l'", " VISIBLE: 'boxes frame Editable panel Four ', cursor=32", "SPEECH OUTPUT: 'editable combo box.'", "SPEECH OUTPUT: 'Four selected'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("KP_Enter")) sequence.append(utils.AssertPresentationAction( "10. Editable text combo box with selected text Where Am I", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Editable panel Four $l'", " VISIBLE: 'boxes frame Editable panel Four ', cursor=32", "SPEECH OUTPUT: 'editable combo box.'", "SPEECH OUTPUT: 'Four selected.'"])) sequence.append(KeyComboAction("Escape")) sequence.append(KeyComboAction("Tab")) sequence.append(KeyComboAction("Tab")) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Tab")) sequence.append(utils.AssertPresentationAction( "11. Combo box with multiple levels", ["BRAILLE LINE: 'gtk-demo application Combo boxes frame Where are we ? panel Boston combo box'", " VISIBLE: 'Boston combo box', cursor=1", "SPEECH OUTPUT: 'Where are we ? panel.'", "SPEECH OUTPUT: 'Boston combo box.'"])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("Down")) sequence.append(utils.AssertPresentationAction( "12. Down arrow", ["KNOWN ISSUE: Gtk+ has missing events and a broken selection interface in multi-level combo boxes", ""])) sequence.append(utils.StartRecordingAction()) sequence.append(KeyComboAction("KP_Enter")) sequence.append(utils.AssertPresentationAction( "13. Where Am I", ["KNOWN ISSUE: The count is wrong due to a Gtk+ 2 bug which has been fixed in Gtk+ 3", "BRAILLE LINE: 'gtk-demo application Combo boxes frame Where are we ? panel Carson City combo box'", " VISIBLE: 'Carson City combo box', cursor=1", "SPEECH OUTPUT: 'combo box.'", "SPEECH OUTPUT: 'Carson City 1 of 1'"])) sequence.append(KeyComboAction("F4")) sequence.append(utils.AssertionSummaryAction()) sequence.start()