Make sure all files that should be present are present.

This commit is contained in:
Storm Dragon
2024-10-17 16:33:13 -04:00
parent 9d78a3fbee
commit c615709602
1395 changed files with 1344591 additions and 0 deletions

View File

@ -0,0 +1,58 @@
#!/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 fraction test cases'",
" VISIBLE: 'MathML fraction test cases', cursor=1",
"SPEECH OUTPUT: 'MathML fraction 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: 'fraction start.'",
"SPEECH OUTPUT: 'a over b.'",
"SPEECH OUTPUT: 'fraction end.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"3. Line Down",
["BRAILLE LINE: 'math'",
" VISIBLE: 'math', cursor=0",
"SPEECH OUTPUT: 'fraction start.'",
"SPEECH OUTPUT: 'a over b.'",
"SPEECH OUTPUT: 'fraction end.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Down"))
sequence.append(utils.AssertPresentationAction(
"4. Line Down",
["BRAILLE LINE: 'math'",
" VISIBLE: 'math', cursor=0",
"SPEECH OUTPUT: 'fraction without bar, start.'",
"SPEECH OUTPUT: 'a over b.'",
"SPEECH OUTPUT: 'fraction end.'"]))
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()