cthulhu/test/keystrokes/firefox/math_line_nav_mrow.py

54 lines
1.8 KiB
Python

#!/usr/bin/python
from macaroon.playback import *
import utils
sequence = MacroSequence()
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("<Control>Home"))
sequence.append(utils.AssertPresentationAction(
"1. Top of file",
["BRAILLE LINE: 'MathML mrow test cases'",
" VISIBLE: 'MathML mrow test cases', cursor=1",
"SPEECH OUTPUT: 'MathML mrow test cases'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"2. Line Down",
["BRAILLE LINE: 'math'",
" VISIBLE: 'math', cursor=0",
"SPEECH OUTPUT: 'x plus 2'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"3. Line Down",
["BRAILLE LINE: 'End of first case'",
" VISIBLE: 'End of first case', cursor=1",
"SPEECH OUTPUT: 'End of first case'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"4. Line Down",
["KNOWN ISSUE: We probably should convert the multi-char symbols into explicitly-spoken strings",
"BRAILLE LINE: 'math'",
" VISIBLE: 'math', cursor=0",
"SPEECH OUTPUT: 'left paren x ≪̸ y right paren logical and left paren X ⊂⃒ Y right paren'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"5. Line Down",
["BRAILLE LINE: 'End of test'",
" VISIBLE: 'End of test', cursor=1",
"SPEECH OUTPUT: 'End of test'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()