Make sure all files that should be present are present.
This commit is contained in:
148
test/keystrokes/gtk3-demo/role_combo_box.py
Normal file
148
test/keystrokes/gtk3-demo/role_combo_box.py
Normal file
@ -0,0 +1,148 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
"""Test of combobox output."""
|
||||
|
||||
from macaroon.playback import *
|
||||
import utils
|
||||
|
||||
sequence = MacroSequence()
|
||||
|
||||
sequence.append(KeyComboAction("<Control>f"))
|
||||
sequence.append(TypeAction("Combo Boxes"))
|
||||
sequence.append(KeyComboAction("Return"))
|
||||
sequence.append(PauseAction(3000))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(TypeAction(" "))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"1. Warning combo box item",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame'",
|
||||
" VISIBLE: 'Combo Boxes frame', cursor=1",
|
||||
"BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Items with icons panel Warning combo box'",
|
||||
" VISIBLE: 'Warning combo box', cursor=1",
|
||||
"SPEECH OUTPUT: 'Combo Boxes frame'",
|
||||
"SPEECH OUTPUT: 'Items with icons panel.'",
|
||||
"SPEECH OUTPUT: 'Warning combo box.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("KP_Enter"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"2. Warning combo box item Where Am I",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Items with icons panel Warning combo box'",
|
||||
" VISIBLE: 'Warning combo box', cursor=1",
|
||||
"SPEECH OUTPUT: 'combo box.'",
|
||||
"SPEECH OUTPUT: 'Warning 1 of 5'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Down"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"3. New combo box item",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Items with icons panel New 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: 'gtk3-demo application Combo Boxes frame Items with icons panel New combo box New'",
|
||||
" VISIBLE: 'New', cursor=1",
|
||||
"SPEECH OUTPUT: 'Combo Boxes frame'",
|
||||
"SPEECH OUTPUT: 'Items with icons panel.'",
|
||||
"SPEECH OUTPUT: 'New.'",
|
||||
"SPEECH OUTPUT: '3 of 5'"]))
|
||||
|
||||
sequence.append(KeyComboAction("Tab"))
|
||||
sequence.append(KeyComboAction("Tab"))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("Tab"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"5. Editable text combo box",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Editable panel $l'",
|
||||
" VISIBLE: 'Boxes frame Editable panel $l', cursor=28",
|
||||
"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: 'gtk3-demo application Combo Boxes frame Editable panel Four $l'",
|
||||
" VISIBLE: 'Boxes frame Editable panel Four ', cursor=32",
|
||||
"BRAILLE LINE: 'gtk3-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: 'gtk3-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: 'gtk3-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("<Shift>ISO_Left_Tab"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"9. Editable text combo box with selected text",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Editable panel Four $l'",
|
||||
" VISIBLE: 'Boxes frame Editable panel Four ', cursor=32",
|
||||
"BRAILLE LINE: 'gtk3-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: 'gtk3-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("<Shift>ISO_Left_Tab"))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("<Shift>ISO_Left_Tab"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"11. Combo box with multiple levels",
|
||||
["BRAILLE LINE: 'gtk3-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",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Where are we ? panel Carson City combo box Carson City'",
|
||||
" VISIBLE: 'Carson City', cursor=1",
|
||||
"SPEECH OUTPUT: 'C - D menu'",
|
||||
"SPEECH OUTPUT: 'Carson City.'"]))
|
||||
|
||||
sequence.append(utils.StartRecordingAction())
|
||||
sequence.append(KeyComboAction("KP_Enter"))
|
||||
sequence.append(utils.AssertPresentationAction(
|
||||
"13. Where Am I",
|
||||
["BRAILLE LINE: 'gtk3-demo application Combo Boxes frame Where are we ? panel Carson City combo box Carson City'",
|
||||
" VISIBLE: 'Carson City', cursor=1",
|
||||
"SPEECH OUTPUT: 'Combo Boxes frame'",
|
||||
"SPEECH OUTPUT: 'Where are we ? panel.'",
|
||||
"SPEECH OUTPUT: 'C - D menu'",
|
||||
"SPEECH OUTPUT: 'Carson City.'",
|
||||
"SPEECH OUTPUT: '1 of 9'"]))
|
||||
|
||||
sequence.append(KeyComboAction("<Alt>F4"))
|
||||
|
||||
sequence.append(utils.AssertionSummaryAction())
|
||||
sequence.start()
|
Reference in New Issue
Block a user