openlp/tests/functional/openlp_core_lib/test_image_manager.py

57 lines
1.8 KiB
Python
Raw Normal View History

2013-02-13 19:10:41 +00:00
"""
Package to test the openlp.core.ui package.
"""
import os
from unittest import TestCase
from PyQt4 import QtCore, QtGui
2013-02-13 19:10:41 +00:00
2013-02-16 06:51:25 +00:00
from openlp.core.lib import Registry, ImageManager, ScreenList
2013-02-13 19:10:41 +00:00
TEST_PATH = os.path.abspath(os.path.join(os.path.dirname(__file__), u'..', u'..', u'resources'))
2013-02-13 19:22:43 +00:00
2013-02-13 19:10:41 +00:00
class TestImageManager(TestCase):
def setUp(self):
"""
Create the UI
"""
Registry.create()
2013-02-16 15:02:19 +00:00
self.app = QtGui.QApplication.instance()
2013-02-13 19:10:41 +00:00
ScreenList.create(self.app.desktop())
self.image_manager = ImageManager()
2013-02-16 15:02:19 +00:00
def tearDown(self):
"""
Delete all the C++ objects at the end so that we don't have a segfault
"""
del self.app
2013-02-13 19:10:41 +00:00
def basic_image_manager_test(self):
"""
Test the Image Manager setup basic functionality
"""
# GIVEN: the an image add to the image manager
self.image_manager.add_image(TEST_PATH, u'church.jpg', None)
# WHEN the image is retrieved
image = self.image_manager.get_image(TEST_PATH, u'church.jpg')
# THEN returned record is a type of image
2013-02-16 10:15:49 +00:00
self.assertEqual(isinstance(image, QtGui.QImage), True, u'The returned object should be a QImage')
2013-02-13 19:10:41 +00:00
# WHEN: The image bytes are requested.
byte_array = self.image_manager.get_image_bytes(TEST_PATH, u'church.jpg')
2013-04-20 18:05:01 +00:00
# THEN: Type should be a str.
self.assertEqual(isinstance(byte_array, str), True, u'The returned object should be a str')
2013-02-13 19:10:41 +00:00
# WHEN the image is retrieved has not been loaded
# THEN a KeyError is thrown
with self.assertRaises(KeyError) as context:
self.image_manager.get_image(TEST_PATH, u'church1.jpg')
2013-07-17 14:32:29 +00:00
self.assertNotEquals(context.exception, u'', u'KeyError exception should have been thrown for missing image')