1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
import unittest
import os
from asciimatics.renderers import AnsiArtPlayer, AsciinemaPlayer
class TestRendererPlayers(unittest.TestCase):
def test_ansi_art(self):
"""
Check that ansi art player works.
"""
with AnsiArtPlayer(os.path.join(os.path.dirname(__file__), "test.ans"), height=5, width=20) as renderer:
self.assertEqual(
str(renderer),
"This is a test file \n" +
"with ansi codes... \n" +
" \n" +
" \n" +
" ")
self.assertEqual(
str(renderer),
"This is a test file \n" +
"with ansi codes... \n" +
"Check \n" +
"here 2nd \n" +
" ")
self.assertEqual(
str(renderer),
"This is a test file \n" +
" abab c \n" +
"dheck \n" +
"here 2nd \n" +
"cbdeefghab ")
self.assertEqual(
str(renderer),
" \n" +
" \n" +
" \n" +
"123 \n" +
" ")
def test_asciinema(self):
"""
Check that asciinema player works.
"""
with AsciinemaPlayer(os.path.join(os.path.dirname(__file__), "test.rec"), max_delay=0.1) as renderer:
self.assertEqual(renderer.max_height, 18)
self.assertEqual(renderer.max_width, 134)
# Check can play the file to the end.
for _ in range(700):
a = str(renderer)
self.assertEqual(a,
"~/asciimatics/samples $ ls \n" +
"256colour.py colour_globe.gif fireworks.py images.py mapscache plasma.py rendering.py test2.rec \n" +
"bars.py contact_list.py forms.log interactive.py noise.py player.py simple.py tests.py \n" +
"basics.py credits.py forms.py julia.py pacman.png python.png tab_demo.py top.py \n" +
"bg_colours.py experimental.py globe.gif kaleidoscope.py pacman.py quick_model.py terminal.py treeview.py \n" +
"cogs.py fire.py grumpy_cat.jpg maps.py particles.py ray_casting.py test.rec xmas.py \n" +
"~/asciimatics/samples $ \n" +
"exit \n" +
" \n" +
" \n" +
" \n" +
" \n" +
" \n" +
" \n" +
" \n" +
" \n" +
" \n" +
" ")
if __name__ == '__main__':
unittest.main()
|