2019-08-13 15:49:19 +02:00
|
|
|
# Functional test that boots a VM and run OCR on the framebuffer
|
|
|
|
#
|
2020-10-21 12:33:25 +02:00
|
|
|
# Copyright (c) 2019 Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2019-08-13 15:49:19 +02:00
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
# later. See the COPYING file in the top-level directory.
|
|
|
|
|
|
|
|
import os
|
|
|
|
import time
|
|
|
|
|
2021-09-27 18:14:33 +02:00
|
|
|
from avocado_qemu import QemuSystemTest
|
2019-08-13 15:49:19 +02:00
|
|
|
from avocado import skipUnless
|
2020-10-21 12:33:25 +02:00
|
|
|
|
2020-10-21 12:35:30 +02:00
|
|
|
from tesseract_utils import tesseract_available, tesseract_ocr
|
2019-08-13 15:49:19 +02:00
|
|
|
|
|
|
|
PIL_AVAILABLE = True
|
|
|
|
try:
|
|
|
|
from PIL import Image
|
|
|
|
except ImportError:
|
|
|
|
PIL_AVAILABLE = False
|
|
|
|
|
|
|
|
|
2021-09-27 18:14:33 +02:00
|
|
|
class NextCubeMachine(QemuSystemTest):
|
2019-11-04 16:13:18 +01:00
|
|
|
"""
|
|
|
|
:avocado: tags=arch:m68k
|
|
|
|
:avocado: tags=machine:next-cube
|
|
|
|
:avocado: tags=device:framebuffer
|
|
|
|
"""
|
2019-08-13 15:49:19 +02:00
|
|
|
|
|
|
|
timeout = 15
|
|
|
|
|
|
|
|
def check_bootrom_framebuffer(self, screenshot_path):
|
2023-11-01 21:19:34 +01:00
|
|
|
rom_url = ('https://sourceforge.net/p/previous/code/1350/tree/'
|
|
|
|
'trunk/src/Rev_2.5_v66.BIN?format=raw')
|
2019-08-13 15:49:19 +02:00
|
|
|
rom_hash = 'b3534796abae238a0111299fc406a9349f7fee24'
|
|
|
|
rom_path = self.fetch_asset(rom_url, asset_hash=rom_hash)
|
|
|
|
|
|
|
|
self.vm.add_args('-bios', rom_path)
|
|
|
|
self.vm.launch()
|
|
|
|
|
|
|
|
self.log.info('VM launched, waiting for display')
|
|
|
|
# TODO: Use avocado.utils.wait.wait_for to catch the
|
|
|
|
# 'displaysurface_create 1120x832' trace-event.
|
|
|
|
time.sleep(2)
|
|
|
|
|
2023-10-06 17:41:15 +02:00
|
|
|
self.vm.cmd('human-monitor-command',
|
|
|
|
command_line='screendump %s' % screenshot_path)
|
2019-08-13 15:49:19 +02:00
|
|
|
|
|
|
|
@skipUnless(PIL_AVAILABLE, 'Python PIL not installed')
|
|
|
|
def test_bootrom_framebuffer_size(self):
|
2020-10-21 12:50:31 +02:00
|
|
|
screenshot_path = os.path.join(self.workdir, "dump.ppm")
|
2019-08-13 15:49:19 +02:00
|
|
|
self.check_bootrom_framebuffer(screenshot_path)
|
|
|
|
|
|
|
|
width, height = Image.open(screenshot_path).size
|
|
|
|
self.assertEqual(width, 1120)
|
|
|
|
self.assertEqual(height, 832)
|
|
|
|
|
|
|
|
# Tesseract 4 adds a new OCR engine based on LSTM neural networks. The
|
|
|
|
# new version is faster and more accurate than version 3. The drawback is
|
|
|
|
# that it is still alpha-level software.
|
2023-11-01 21:43:22 +01:00
|
|
|
@skipUnless(tesseract_available(4), 'tesseract OCR tool not available')
|
|
|
|
def test_bootrom_framebuffer_ocr_with_tesseract(self):
|
2020-10-21 12:50:31 +02:00
|
|
|
screenshot_path = os.path.join(self.workdir, "dump.ppm")
|
2019-08-13 15:49:19 +02:00
|
|
|
self.check_bootrom_framebuffer(screenshot_path)
|
2020-10-21 12:35:30 +02:00
|
|
|
lines = tesseract_ocr(screenshot_path, tesseract_version=4)
|
|
|
|
text = '\n'.join(lines)
|
2023-11-01 21:43:22 +01:00
|
|
|
self.assertIn('Testing the FPU', text)
|
2019-09-19 18:14:00 +02:00
|
|
|
self.assertIn('System test failed. Error code', text)
|
2019-08-13 15:49:19 +02:00
|
|
|
self.assertIn('Boot command', text)
|
|
|
|
self.assertIn('Next>', text)
|